Gagan Bhatia commited on
Commit
c7647e7
1 Parent(s): 6c7dd33

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -50,3 +50,16 @@ Project Organization
50
  ├── setup.py <- makes project pip installable (pip install -e .) so src can be imported
51
  ├── src <- Source code for use in this project.
52
  │   ├── __init__.py <- Makes src a Python module
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  ├── setup.py <- makes project pip installable (pip install -e .) so src can be imported
51
  ├── src <- Source code for use in this project.
52
  │   ├── __init__.py <- Makes src a Python module
53
+ │ │
54
+ │   ├── data <- Scripts to download or generate data
55
+ │   │   └── make_dataset.py
56
+ │ │
57
+ │   ├── models <- Scripts to train models and then use trained models to make
58
+ │ │ │ predictions
59
+ │   │   ├── predict_model.py
60
+ │   │   └── train_model.py
61
+ │ │
62
+ │   └── visualization <- Scripts to create exploratory and results oriented visualizations
63
+ │   └── visualize.py
64
+
65
+ ├── tox.ini <- tox file with settings for running tox; see tox.testrun.org