-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectory_tree.txt
267 lines (267 loc) · 10.5 KB
/
directory_tree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
./
├── configs/
│ ├── app_config.yaml
│ ├── data_access_config.yaml
│ ├── data_processing_config.yaml
│ ├── feature_engineering_config.yaml
│ ├── hyperparameters/
│ │ ├── catboost/
│ │ │ ├── baseline.json
│ │ │ └── current_best.json
│ │ ├── lightgbm/
│ │ │ ├── baseline.json
│ │ │ └── current_best.json
│ │ ├── sklearn/
│ │ │ ├── histgb/
│ │ │ │ ├── baseline.json
│ │ │ │ └── current_best.json
│ │ │ ├── logistic/
│ │ │ │ ├── baseline.json
│ │ │ │ └── current_best.json
│ │ │ └── randomforest/
│ │ │ ├── baseline.json
│ │ │ └── current_best.json
│ │ └── xgboost/
│ │ ├── baseline.json
│ │ └── current_best.json
│ ├── logging_config.yaml
│ ├── model_testing_config.yaml
│ ├── models/
│ │ ├── catboost_config.yaml
│ │ ├── lightgbm_config.yaml
│ │ ├── sklearn/
│ │ │ ├── histgb_config.yaml
│ │ │ ├── logistic_config.yaml
│ │ │ └── randomforest_config.yaml
│ │ └── xgboost_config.yaml
│ ├── optuna_config.yaml
│ ├── preprocessing_config.yaml
│ ├── visualization_config.yaml
│ └── webscraping_config.yaml
├── data/
│ ├── cumulative_scraped/
│ │ ├── games_advanced.csv
│ │ ├── games_four-factors.csv
│ │ ├── games_misc.csv
│ │ ├── games_scoring.csv
│ │ └── games_traditional.csv
│ ├── engineered/
│ │ └── engineered_features.csv
│ ├── newly_scraped/
│ │ ├── games_advanced.csv
│ │ ├── games_four-factors.csv
│ │ ├── games_misc.csv
│ │ ├── games_scoring.csv
│ │ ├── games_traditional.csv
│ │ ├── todays_games_ids.csv
│ │ └── todays_matchups.csv
│ ├── predictions/
│ │ ├── CatBoost_val_predictions.csv
│ │ ├── LGBM_oof_predictions.csv
│ │ ├── LGBM_val_predictions.csv
│ │ ├── SKLearn_HistGradientBoosting_val_predictions.csv
│ │ ├── SKLearn_RandomForest_val_predictions.csv
│ │ ├── XGBoost_oof_predictions.csv
│ │ └── XGBoost_val_predictions.csv
│ ├── processed/
│ │ ├── column_mapping.json
│ │ ├── games_boxscores.csv
│ │ └── teams_boxscores.csv
│ ├── test_data/
│ │ ├── games_advanced.csv
│ │ ├── games_four-factors.csv
│ │ ├── games_misc.csv
│ │ ├── games_scoring.csv
│ │ └── games_traditional.csv
│ └── training/
│ ├── training_data.csv
│ └── validation_data.csv
├── directory_tree.txt
├── docs/
│ ├── commentary/
│ │ └── Webscraping.md
│ ├── data/
│ │ ├── column_mapping.json
│ │ └── nba-boxscore-data-dictionary.md
│ ├── readme.md
│ └── src/
│ └── readme.md
├── hyperparameter_history/
│ ├── LGBM_history.json
│ └── XGBoost_history.json
├── logs/
│ ├── catboost_info/
│ │ ├── fold_1/
│ │ │ ├── catboost_training.json
│ │ │ ├── learn/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── learn_error.tsv
│ │ │ ├── test/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── test_error.tsv
│ │ │ ├── time_left.tsv
│ │ │ └── tmp/
│ │ ├── fold_2/
│ │ │ ├── catboost_training.json
│ │ │ ├── learn/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── learn_error.tsv
│ │ │ ├── test/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── test_error.tsv
│ │ │ ├── time_left.tsv
│ │ │ └── tmp/
│ │ ├── fold_3/
│ │ │ ├── catboost_training.json
│ │ │ ├── learn/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── learn_error.tsv
│ │ │ ├── test/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── test_error.tsv
│ │ │ ├── time_left.tsv
│ │ │ └── tmp/
│ │ ├── fold_4/
│ │ │ ├── catboost_training.json
│ │ │ ├── learn/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── learn_error.tsv
│ │ │ ├── test/
│ │ │ │ └── events.out.tfevents
│ │ │ ├── test_error.tsv
│ │ │ ├── time_left.tsv
│ │ │ └── tmp/
│ │ └── fold_5/
│ │ ├── catboost_training.json
│ │ ├── learn/
│ │ │ └── events.out.tfevents
│ │ ├── learn_error.tsv
│ │ ├── test/
│ │ │ └── events.out.tfevents
│ │ ├── test_error.tsv
│ │ ├── time_left.tsv
│ │ └── tmp/
│ ├── data_processing.log
│ ├── error_file.log
│ ├── feature_engineering.log
│ ├── model_testing.log
│ ├── model_testing.log.1
│ ├── model_testing.log.2
│ ├── model_testing.log.3
│ └── webscraping.log
├── noteboooks/
│ ├── baseline.ipynb
│ └── eda.ipynb
├── README.md
├── spec-list.txt
├── src/
│ ├── common/
│ │ ├── app_file_handling/
│ │ │ ├── app_file_handler.py
│ │ │ └── base_app_file_handler.py
│ │ ├── app_logging/
│ │ │ ├── app_logger.py
│ │ │ └── base_app_logger.py
│ │ ├── common_di_container.py
│ │ ├── config_management/
│ │ │ ├── base_config_manager.py
│ │ │ ├── config_manager.py
│ │ │ └── config_path.yaml
│ │ ├── data_access/
│ │ │ ├── base_data_access.py
│ │ │ └── csv_data_access.py
│ │ ├── data_classes/
│ │ │ ├── metrics.py
│ │ │ ├── preprocessing.py
│ │ │ └── training.py
│ │ ├── data_validation/
│ │ │ ├── base_data_validator.py
│ │ │ └── data_validator.py
│ │ └── error_handling/
│ │ ├── base_error_handler.py
│ │ ├── error_handler.py
│ │ └── error_handler_factory.py
│ ├── data_processing/
│ │ ├── abstract_data_processing_classes.py
│ │ ├── di_container.py
│ │ ├── main.py
│ │ └── process_scraped_NBA_data.py
│ ├── feature_engineering/
│ │ ├── abstract_feature_engineering.py
│ │ ├── di_container.py
│ │ ├── feature_engineer.py
│ │ ├── feature_selector.py
│ │ └── main.py
│ ├── model_testing/
│ │ ├── base_model_testing.py
│ │ ├── di_container.py
│ │ ├── experiment_loggers/
│ │ │ ├── base_experiment_logger.py
│ │ │ ├── experiment_logger_factory.py
│ │ │ └── mlflow_logger.py
│ │ ├── hyperparams_managers/
│ │ │ ├── base_hyperparams_manager.py
│ │ │ └── hyperparams_manager.py
│ │ ├── hyperparams_optimizers/
│ │ │ ├── base_hyperparams_optimizer.py
│ │ │ ├── hyperparams_optimizer_factory.py
│ │ │ └── optuna_optimizer.py
│ │ ├── main.py
│ │ ├── model_tester.py
│ │ └── trainers/
│ │ ├── base_trainer.py
│ │ ├── catboost_trainer.py
│ │ ├── lightgbm_trainer.py
│ │ ├── sklearn_trainer.py
│ │ ├── trainer_factory.py
│ │ ├── trainer_utils.py
│ │ └── xgboost_trainer.py
│ ├── preprocessing/
│ │ ├── base_preprocessor.py
│ │ └── preprocessor.py
│ ├── uncertainty/
│ │ └── uncertainty_calibrator.py
│ ├── visualization/
│ │ ├── charts/
│ │ │ ├── base_chart.py
│ │ │ ├── chart_factory.py
│ │ │ ├── chart_types.py
│ │ │ ├── chart_utils.py
│ │ │ ├── feature_charts.py
│ │ │ ├── learning_curve_charts.py
│ │ │ ├── metrics_charts.py
│ │ │ ├── model_interpretation_charts.py
│ │ │ └── shap_charts.py
│ │ ├── exploratory/
│ │ │ ├── base_explorer.py
│ │ │ ├── correlation_explorer.py
│ │ │ ├── distribution_explorer.py
│ │ │ ├── team_performance_explorer.py
│ │ │ └── time_series_explorer.py
│ │ └── orchestration/
│ │ ├── base_chart_orchestrator.py
│ │ └── chart_orchestrator.py
│ └── webscraping/
│ ├── abstract_scraper_classes.py
│ ├── boxscore_scraper.py
│ ├── di_container.py
│ ├── main.py
│ ├── matchup_validator.py
│ ├── nba_scraper.py
│ ├── old/
│ │ ├── test_websraping.py
│ │ └── webscraping_old.py
│ ├── page_scraper.py
│ ├── readme.md
│ ├── schedule_scraper.py
│ ├── test.ipynb
│ ├── test_page_scraper.py
│ ├── utils.py
│ └── web_driver.py
└── tests/
└── webscraping/
├── test_boxscore_scraper.py
├── test_integration.py
├── test_nba_scraper.py
├── test_page_scraper.py
└── test_schedule_scraper.py