Advertisement
Guest User

Untitled

a guest
May 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. example project
  2. ==============================
  3.  
  4. contains an example data science project and setup guide
  5.  
  6. Project Organization
  7. ------------
  8.  
  9. ├── LICENSE
  10. ├── Makefile <- Makefile with commands like `make data` or `make train`
  11. ├── README.md <- The top-level README for developers using this project.
  12. ├── data
  13. │ ├── external <- Data from third party sources.
  14. │ ├── interim <- Intermediate data that has been transformed.
  15. │ ├── processed <- The final, canonical data sets for modeling.
  16. │ └── raw <- The original, immutable data dump.
  17. ├── docs <- A default Sphinx project; see sphinx-doc.org for details
  18. ├── models <- Trained and serialized models, model predictions, or model summaries
  19. ├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering),
  20. │ the creator's initials, and a short `-` delimited description, e.g.
  21. │ `1.0-jqp-initial-data-exploration`.
  22. ├── references <- Data dictionaries, manuals, and all other explanatory materials.
  23. ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
  24. │ └── figures <- Generated graphics and figures to be used in reporting
  25. ├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g.
  26. │ generated with `pip freeze > requirements.txt`
  27. ├── setup.py <- makes project pip installable (pip install -e .) so src can be imported
  28. ├── src <- Source code for use in this project.
  29. │ ├── __init__.py <- Makes src a Python module
  30. │ │
  31. │ ├── data <- Scripts to download or generate data
  32. │ │ └── make_dataset.py
  33. │ │
  34. │ ├── features <- Scripts to turn raw data into features for modeling
  35. │ │ └── build_features.py
  36. │ │
  37. │ ├── models <- Scripts to train models and then use trained models to make
  38. │ │ │ predictions
  39. │ │ ├── predict_model.py
  40. │ │ └── train_model.py
  41. │ │
  42. │ └── visualization <- Scripts to create exploratory and results oriented visualizations
  43. │ └── visualize.py
  44. └── tox.ini <- tox file with settings for running tox; see tox.testrun.org
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement