This is a Data Science project template
├── README.md
├── data
│ ├── processed
│ └── raw
├── documents
├── models
├── notebooks
├── src
└── test
- data: Contains temporary data to use during experiment. It includes a raw folder for raw data and a processed folder for processed data.
- documents: Contains any relevant references or resources used to conduct the experiment.
- models: Contains the different models and the associated metadata.
- notebooks: Contains all notebooks, e.g EDA and modeling.
- src: Contains source code (python, R etc), packaging the whole pipeline from data extraction/exploration to training and inference.
- test: Contains unit tests.