DarkSting commited on
Commit
162c8f2
·
verified ·
1 Parent(s): 2c928b3

Upload 11 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ model/tea_mobilenet_v2.keras filter=lfs diff=lfs merge=lfs -text
artifacts_tea_hybrid/arima_models_by_segment.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af267a423f60bc4a485911815d0ecf95e431707bee064d5a8f3ab782d756af85
3
+ size 44388510
artifacts_tea_hybrid/hybrid_arima_rf_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8fe5e7155f5e16444afd4c0659c97eb281a01d4dc04668c5e4762afbbd5db8a
3
+ size 566702883
artifacts_tea_hybrid/hybrid_config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "DATA_PATH": "tea_auction_advanced_dataset.csv",
3
+ "TARGET_COL": "auction_price_rs_per_kg",
4
+ "DATE_COL": "date_week",
5
+ "cat_cols": [
6
+ "elevation",
7
+ "grade",
8
+ "season"
9
+ ],
10
+ "num_cols": [
11
+ "year",
12
+ "month",
13
+ "week_in_month",
14
+ "fx_lkr_per_usd",
15
+ "rainfall_mm",
16
+ "temperature_c",
17
+ "production_kg",
18
+ "exports_kg",
19
+ "fuel_index",
20
+ "inflation_yoy_pct",
21
+ "holiday_newyear_april",
22
+ "covid_dummy_2020",
23
+ "economic_crisis_dummy_2022",
24
+ "price_lag_1w_rs",
25
+ "price_lag_4w_rs",
26
+ "price_lag_12w_rs",
27
+ "price_lag_48w_rs",
28
+ "price_rollmean_4w_rs",
29
+ "price_rollmean_12w_rs",
30
+ "price_rollmean_48w_rs",
31
+ "month_sin",
32
+ "month_cos",
33
+ "sold_quantity_kg",
34
+ "quality_score"
35
+ ],
36
+ "arima_order": [
37
+ 2,
38
+ 1,
39
+ 2
40
+ ],
41
+ "group_cols": [
42
+ "elevation",
43
+ "grade"
44
+ ],
45
+ "fallback_col": "price_lag_1w_rs",
46
+ "created_at_utc": "2026-02-25 16:01:42.116381+00:00"
47
+ }
model/labels.json ADDED
@@ -0,0 +1 @@
 
 
1
+ ["brown_blight", "gray_blight", "healthy"]
model/model_metadata.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "target": "auction_price_rs_per_kg",
3
+ "cat_cols": [
4
+ "grade",
5
+ "season"
6
+ ],
7
+ "num_cols": [
8
+ "rainfall_mm",
9
+ "temperature_c",
10
+ "production_kg",
11
+ "exports_kg",
12
+ "fuel_index",
13
+ "inflation_yoy_pct",
14
+ "price_lag_1w_rs",
15
+ "price_lag_4w_rs",
16
+ "price_lag_12w_rs",
17
+ "price_lag_48w_rs",
18
+ "price_rollmean_4w_rs",
19
+ "price_rollmean_12w_rs",
20
+ "price_rollmean_48w_rs",
21
+ "month_sin",
22
+ "month_cos",
23
+ "week_in_month",
24
+ "month",
25
+ "year"
26
+ ],
27
+ "report_user_inputs": {
28
+ "required": [
29
+ "grade"
30
+ ],
31
+ "optional_overrides": [
32
+ "rainfall_mm",
33
+ "temperature_c",
34
+ "production_kg",
35
+ "exports_kg",
36
+ "fuel_index",
37
+ "inflation_yoy_pct"
38
+ ],
39
+ "seasonality": "season (auto from date, can override)"
40
+ },
41
+ "internal_auto_features": [
42
+ "price_lag_1w_rs",
43
+ "price_lag_4w_rs",
44
+ "price_lag_12w_rs",
45
+ "price_lag_48w_rs",
46
+ "price_rollmean_4w_rs",
47
+ "price_rollmean_12w_rs",
48
+ "price_rollmean_48w_rs",
49
+ "month_sin",
50
+ "month_cos",
51
+ "week_in_month",
52
+ "month",
53
+ "year"
54
+ ],
55
+ "validation_metrics": {
56
+ "MAE": 236.42255651770014,
57
+ "RMSE": 264.914076185626,
58
+ "R2": -1.446572736879666,
59
+ "MAPE_%": 14.561939423976408
60
+ },
61
+ "test_metrics": {
62
+ "MAE": 235.94937865586834,
63
+ "RMSE": 270.28251148948794,
64
+ "R2": -0.43772939567736135,
65
+ "MAPE_%": 17.654617690880166
66
+ }
67
+ }
model/random_forest_report_inputs_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1223731007c140d5d5b1126180fae4b2e2e0195c1a386908b017ad01f50b06f
3
+ size 320715488
model/smarttea_yield_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6f235de3f8925f82f086169101759fdbeb7f84269746591fe24577dbf5a27c5
3
+ size 1339830
model/tea_mobilenet_v2.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b773f1b3ba5f8013ec33414adc082ddf615b2c02f443f6d464619d08777413b0
3
+ size 9448432
model/tea_mobilenet_v2.keras ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4d2571194b4d5ea123524ca3bc2d8737855789429ca581ba003e9a877125814
3
+ size 9677936
model/tea_mobilenet_v2.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d441460f1c03200ba8e5f21a5128fccc0d97696e3b40639d8ae75ced8172718d
3
+ size 2511056
model/tea_mobilenet_v2.weights.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43bad527fcaed851ecb637b233d108465805374ad7c5f24f26807271472d666b
3
+ size 9519904