architectraghu commited on
Commit
160dff8
·
verified ·
1 Parent(s): 2b0ae79

Upload training_config.json

Browse files
Files changed (1) hide show
  1. training_config.json +39 -0
training_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "CBC Retail Demand Forecaster",
3
+ "hf_repo": "careerbytecode/mlops-ref-retail-demand",
4
+ "task": "regression (next-hour demand forecast, hourly time series)",
5
+ "model_type": "XGBoost regressor, 12 past-only lag/rolling/calendar features",
6
+ "framework": "xgboost",
7
+ "serialization": "joblib (full XGBRegressor)",
8
+ "loader": "joblib.load -> XGBRegressor; call .predict(DataFrame[FEATURES]) -> predicted trips",
9
+ "random_state": 42,
10
+ "feature_columns": [
11
+ "lag_1",
12
+ "lag_2",
13
+ "lag_3",
14
+ "lag_24",
15
+ "lag_168",
16
+ "roll_mean_24",
17
+ "roll_mean_168",
18
+ "roll_std_24",
19
+ "hour",
20
+ "day_of_week",
21
+ "is_weekend",
22
+ "day_of_month"
23
+ ],
24
+ "split": {
25
+ "train": 460,
26
+ "test": 116,
27
+ "method": "forward time-ordered 80/20"
28
+ },
29
+ "dataset": "NYC Yellow Taxi Jan-2024 hourly (744h), NYC.gov Terms of Use",
30
+ "python_version": "3.14.4",
31
+ "library_versions": {
32
+ "xgboost": "3.2.0",
33
+ "scikit-learn": "1.8.0",
34
+ "pandas": "2.3.3",
35
+ "numpy": "2.4.6",
36
+ "joblib": "1.5.3"
37
+ },
38
+ "training_date": "2026-06-04T20:25:14.625353+00:00"
39
+ }