File tree Expand file tree Collapse file tree 4 files changed +18
-14
lines changed
{{ cookiecutter.repo_name }} Expand file tree Collapse file tree 4 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Starting a new project is as easy as running this command at the command line. N
70
70
│
71
71
├── docs <- A default Sphinx project; see sphinx-doc.org for details
72
72
│
73
- ├── models <- trained and serialized models, model predictions, or model summaries
73
+ ├── models <- Trained and serialized models, model predictions, or model summaries
74
74
│
75
75
├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering),
76
76
│ the creator's initials, and a short `-` delimited description, e.g.
@@ -93,12 +93,15 @@ Starting a new project is as easy as running this command at the command line. N
93
93
│ ├── features <- Scripts to turn raw data into features for modeling
94
94
│ │ └── build_features.py
95
95
│ │
96
- │ └── models <- scripts to train models and then use trained models to make
97
- │ │ predictions
98
- │ ├── predict_model.py
99
- │ └── train_model.py
96
+ │ ├── models <- Scripts to train models and then use trained models to make
97
+ │ │ │ predictions
98
+ │ │ ├── predict_model.py
99
+ │ │ └── train_model.py
100
+ │ │
101
+ │ └── visualization <- Scripts to create exploratory and results oriented visualizations
102
+ │ └── visualize.py
100
103
│
101
- └── tox.ini <- tox file with settings for running tox; see tox.testrun.org
104
+ └── tox.ini <- tox file with settings for running tox; see tox.testrun.org
102
105
```
103
106
104
107
## Opinions
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Project Organization
17
17
│
18
18
├── docs <- A default Sphinx project; see sphinx-doc.org for details
19
19
│
20
- ├── models <- trained and serialized models, model predictions, or model summaries
20
+ ├── models <- Trained and serialized models, model predictions, or model summaries
21
21
│
22
22
├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering),
23
23
│ the creator's initials, and a short `-` delimited description, e.g.
@@ -40,11 +40,12 @@ Project Organization
40
40
│ ├── features <- Scripts to turn raw data into features for modeling
41
41
│ │ └── build_features.py
42
42
│ │
43
- │ └── models <- scripts to train models and then use trained models to make
44
- │ │ predictions
45
- │ ├── predict_model.py
46
- │ └── train_model.py
43
+ │ ├── models <- Scripts to train models and then use trained models to make
44
+ │ │ │ predictions
45
+ │ │ ├── predict_model.py
46
+ │ │ └── train_model.py
47
+ │ │
48
+ │ └── visualization <- Scripts to create exploratory and results oriented visualizations
49
+ │ └── visualize.py
47
50
│
48
- └── tox.ini <- tox file with settings for running tox; see tox.testrun.org
49
-
50
-
51
+ └── tox.ini <- tox file with settings for running tox; see tox.testrun.org
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments