Browse Source
- Expanded the research sections in idea.md to include new innovation points and expected outcomes for noise robustness and feature preservation. - Introduced a Dockerfile for setting up the pre-processing environment with necessary packages. - Added a .gitignore file to exclude training data and raw input directories from version control. - Updated README.md with clearer instructions and code formatting for better usability.main
4 changed files with 76 additions and 21 deletions
@ -0,0 +1,3 @@ |
|||
training_data/ |
|||
raw_input/ |
|||
Bin/ |
@ -0,0 +1,23 @@ |
|||
# 基础版本 |
|||
FROM ubuntu:20.04 |
|||
|
|||
# 基本设置 |
|||
ENV DEBIAN_FRONTEND=noninteractive |
|||
ENV TZ=Asia/Shanghai |
|||
|
|||
# 安装基础包 |
|||
RUN apt-get update && apt-get install -y \ |
|||
build-essential \ |
|||
cmake \ |
|||
python3 \ |
|||
python3-pip \ |
|||
libboost-all-dev \ |
|||
git \ |
|||
vim \ |
|||
&& rm -rf /var/lib/apt/lists/* |
|||
|
|||
# 工作目录 |
|||
WORKDIR /app |
|||
|
|||
# 启动终端 |
|||
CMD ["/bin/bash"] |
Loading…
Reference in new issue