2015-10-30 12:47:00 -07:00
{{cookiecutter.project_name}}
==============================
{{cookiecutter.description}}
2016-03-19 13:49:01 -07:00
Project Organization
2015-10-30 12:47:00 -07:00
------------
2016-03-19 13:49:01 -07:00
├── LICENSE
├── Makefile < - Makefile with commands like `make data` or `make train`
├── README.md < - The top-level README for developers using this project .
2015-10-30 12:47:00 -07:00
├── data
│ ├── external < - Data from third party sources .
2016-03-19 13:49:01 -07:00
│ ├── interim < - Intermediate data that has been transformed .
2015-10-30 12:47:00 -07:00
│ ├── processed < - The final , canonical data sets for modeling .
│ └── raw < - The original , immutable data dump .
2016-03-19 15:18:31 -07:00
│
2016-03-19 13:49:01 -07:00
├── docs < - A default Sphinx project ; see sphinx-doc . org for details
2016-03-19 15:18:31 -07:00
│
2016-04-26 21:25:27 -07:00
├── models < - Trained and serialized models , model predictions , or model summaries
2015-10-30 12:47:00 -07:00
│
2016-03-19 13:49:01 -07:00
├── notebooks < - Jupyter notebooks . Naming convention is a number ( for ordering ) ,
2015-10-30 12:47:00 -07:00
│ the creator's initials, and a short `-` delimited description, e.g.
│ `1.0-jqp-initial-data-exploration` .
2016-03-19 15:18:31 -07:00
│
2016-03-19 13:49:01 -07:00
├── references < - Data dictionaries , manuals , and all other explanatory materials .
2016-03-19 15:18:31 -07:00
│
2016-03-19 13:49:01 -07:00
├── reports < - Generated analysis as HTML , PDF , LaTeX , etc .
│ └── figures < - Generated graphics and figures to be used in reporting
2016-03-19 15:18:31 -07:00
│
2016-03-19 13:49:01 -07:00
├── requirements.txt < - The requirements file for reproducing the analysis environment , e . g .
2016-03-19 15:18:31 -07:00
│ generated with `pip freeze > requirements.txt`
│
2018-04-13 16:24:03 -07:00
├── setup.py < - makes project pip installable ( pip install -e . ) so src can be imported
2016-03-19 13:49:01 -07:00
├── src < - Source code for use in this project .
│ ├── __init__ .py < - Makes src a Python module
2016-03-19 15:18:31 -07:00
│ │
2016-03-19 13:49:01 -07:00
│ ├── data < - Scripts to download or generate data
│ │ └── make_dataset.py
2016-03-19 15:18:31 -07:00
│ │
2016-03-19 13:49:01 -07:00
│ ├── features < - Scripts to turn raw data into features for modeling
│ │ └── build_features.py
2016-03-19 15:18:31 -07:00
│ │
2016-04-26 21:25:27 -07:00
│ ├── models < - Scripts to train models and then use trained models to make
│ │ │ predictions
│ │ ├── predict_model.py
│ │ └── train_model.py
│ │
│ └── visualization < - Scripts to create exploratory and results oriented visualizations
│ └── visualize.py
2016-03-19 15:18:31 -07:00
│
2020-04-22 22:14:31 -07:00
└── tox.ini < - tox file with settings for running tox ; see tox . readthedocs . io
2016-09-05 16:33:23 -07:00
--------
< p >< small > Project based on the < a target = "_blank" href = "https://drivendata.github.io/cookiecutter-data-science/" > cookiecutter data science project template</ a > . #cookiecutterdatascience </ small ></ p >