cookiecutter-data-science/{{ cookiecutter.repo_name }}/README.md

51 lines
2.3 KiB
Markdown
Raw Normal View History

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 13:49:01 -07:00
|
├── docs <- A default Sphinx project; see sphinx-doc.org for details
|
├── 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 13:49:01 -07:00
|
├── references <- Data dictionaries, manuals, and all other explanatory materials.
|
├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
│   └── figures <- Generated graphics and figures to be used in reporting
|
├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g.
| generated with `pip freeze > requirements.txt`
|
├── src <- Source code for use in this project.
│   ├── __init__.py <- Makes src a Python module
| |
│   ├── data <- Scripts to download or generate data
│   │   └── make_dataset.py
| |
│   ├── features <- Scripts to turn raw data into features for modeling
│   │   └── build_features.py
| |
│   └── models <- scripts to train models and then use trained models to make
| | predictions
│   ├── predict_model.py
│   └── train_model.py
|
└── tox.ini <- tox file with settings for running tox; see tox.testrun.org