Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DrewWham/project_template
https://github.com/DrewWham/project_template
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/DrewWham/project_template
- Owner: DrewWham
- Created: 2019-08-30T15:18:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-30T18:00:12.000Z (over 5 years ago)
- Last Synced: 2024-08-13T07:14:10.713Z (4 months ago)
- Language: R
- Size: 13.7 KB
- Stars: 9
- Watchers: 3
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - DrewWham/project_template - (R)
README
# Data Science Project Template
Template adapted from [Cookiecutter Data Science](https://drivendata.github.io/cookiecutter-data-science/)
## Convention
Following this directory structure
```
|--project_name <- Project root level that is checked into github
|--project <- Project folder
|--README.md <- Top-level README for developers
|--volume
| |--data
| | |--interim <- Intermediate data that has been transformed
| | |--processed <- The final model-ready data
| | |--raw <- The original data dump
| |
| |--models <- Trained model files that can be read into R or Python
|
|--required
| |--requirements.txt <- The required libraries for reproducing the Python environment
| |--requirements.r <- The required libraries for reproducing the R environment
|
|
|--src
| |
| |--features <- Scripts for turning raw and external data into model-ready data
| | |--build_features.r
| |
| |--models <- Scripts for training and saving models
| | |--train_model.r
| |
|
|
|
|--.getignore <- List of files not to sync with github
```