cookiecutter-data-science/{{ cookiecutter.repo_name }}
Natrave Drova 78e001f742
Tox reference (#211)
* Use a better link to the tox project

* Use a better link to the tox project

* Use a better link to the tox project
2020-04-22 22:14:31 -07:00
..
data Force add data directories 2015-10-30 15:22:43 -04:00
docs Fix typo in getting-started.rst 2016-08-24 13:09:43 -04:00
models Add models and reports directories 2015-10-30 17:37:47 -04:00
notebooks Add other directories 📁 2015-10-30 15:23:59 -04:00
references Add other directories 📁 2015-10-30 15:23:59 -04:00
reports Update to structure 2016-03-19 16:49:01 -04:00
src Use pathlib instead of os.path where applicable (#112) 2018-04-16 11:58:45 -07:00
.env Add python-dotenv and default .env file 2015-11-02 09:25:23 -05:00
.gitignore Add .mypy_cache/ to .gitignore (#157) 2019-01-17 13:52:14 -08:00
LICENSE Offer accurate, open-ended licensing suggestions. (#103) 2018-03-15 08:54:10 -06:00
Makefile Fixed: Typo in Makefile (#184) 2019-09-23 08:49:26 -07:00
README.md Tox reference (#211) 2020-04-22 22:14:31 -07:00
requirements.txt Use pathlib instead of os.path where applicable (#112) 2018-04-16 11:58:45 -07:00
setup.py Changed initial version in setup.py to 0.1.0 (#129) 2018-07-19 08:07:08 -07:00
test_environment.py Improve code, so make lint passes 2018-02-05 17:38:53 +02:00
tox.ini Add flake8 linting 2015-11-02 09:02:49 -05:00

README.md

{{cookiecutter.project_name}}

{{cookiecutter.description}}

Project Organization

├── LICENSE
├── Makefile           <- Makefile with commands like `make data` or `make train`
├── README.md          <- The top-level README for developers using this project.
├── data
│   ├── external       <- Data from third party sources.
│   ├── interim        <- Intermediate data that has been transformed.
│   ├── processed      <- The final, canonical data sets for modeling.
│   └── raw            <- The original, immutable data dump.
│
├── docs               <- A default Sphinx project; see sphinx-doc.org for details
│
├── models             <- Trained and serialized models, model predictions, or model summaries
│
├── notebooks          <- Jupyter notebooks. Naming convention is a number (for ordering),
│                         the creator's initials, and a short `-` delimited description, e.g.
│                         `1.0-jqp-initial-data-exploration`.
│
├── 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`
│
├── setup.py           <- makes project pip installable (pip install -e .) so src can be imported
├── 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
│   │
│   └── visualization  <- Scripts to create exploratory and results oriented visualizations
│       └── visualize.py
│
└── tox.ini            <- tox file with settings for running tox; see tox.readthedocs.io

Project based on the cookiecutter data science project template. #cookiecutterdatascience