KaiquanMah commited on
Commit
c0c9939
·
verified ·
1 Parent(s): 2292b0b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -11
README.md CHANGED
@@ -1,11 +1,23 @@
1
- ---
2
- title: DSIP
3
- emoji: 🐠
4
- colorFrom: red
5
- colorTo: blue
6
- sdk: static
7
- pinned: false
8
- short_description: dsip
9
- ---
10
-
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # {{DSIP.project}}
2
+
3
+ Inspired by Serj Smorod DS in Production lecture on project structure and best practices for data science.
4
+
5
+ ## Project Structure
6
+
7
+ - `app/`: Helper scripts and utilities.
8
+ - `models/`: Trained models for the current experiment.
9
+ - `archived_experiments/`: Archived experiments and their outputs.
10
+ - `data/`: Input datasets and preprocessed data.
11
+ - `results/`: Outputs like predictions, charts, and analysis results.
12
+ - `notebooks/`: Jupyter notebooks for exploration and experimentation.
13
+ - `tests/`: Unit tests to ensure code quality.
14
+
15
+ Core scripts include:
16
+ - `preprocess.py`: Handles data preprocessing tasks.
17
+ - `train.py`: A script to train machine learning models.
18
+ - `predict.py`: Generates predictions using trained models.
19
+ - `result.py`: Analyzes results and generates metrics/charts.
20
+ - `tasks.py`: Automates workflows using `invoke`.
21
+
22
+
23
+