|
|
il y a 6 ans | |
|---|---|---|
| .. | ||
| app | il y a 6 ans | |
| data | il y a 6 ans | |
| docs | il y a 6 ans | |
| logs | il y a 6 ans | |
| models | il y a 6 ans | |
| nets | il y a 6 ans | |
| notebooks | il y a 6 ans | |
| references | il y a 6 ans | |
| reports | il y a 6 ans | |
| .gitignore | il y a 6 ans | |
| .pre-commit-config.yaml | il y a 6 ans | |
| LICENSE | il y a 6 ans | |
| Makefile | il y a 6 ans | |
| README.md | il y a 6 ans | |
| __init__.py | il y a 6 ans | |
| requirements.txt | il y a 6 ans | |
| setup.py | il y a 6 ans | |
| test_environment.py | il y a 6 ans | |
| tox.ini | il y a 6 ans | |
{{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.
│ ├── features <- Features may be stored here
│ ├── inference <- Inference stages may be stored here
│ └── 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
│
├── .pre-commit-config.yaml <- Stores pre-commit settings
│
├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g.
│ generated with `pip freeze > requirements.txt`
│
├── __init__.py
│
└── {{cookiecutter.repo_name}} <- Source code for use in this project.
├── __init__.py <- Makes {{cookiecutter.repo_name}} a Python module
│
├── settings.py <- illustrates how to use .env file
│
├── data <- Scripts to download or generate data
│ └── make_dataset.py
│
├── features <- Scripts to turn raw data into features for modeling
│ └── featurize.py
│
└── models <- Scripts to train models and then use trained models to make
│ predictions
└── train.py