Upload training_config.json
Browse files- training_config.json +44 -0
training_config.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "CBC Manufacturing RUL Regressor",
|
| 3 |
+
"hf_repo": "careerbytecode/mlops-ref-manufacturing-rul",
|
| 4 |
+
"task": "regression (turbofan Remaining Useful Life, in cycles)",
|
| 5 |
+
"model_type": "single-layer LSTM (hidden 64) over a 30-cycle window of 15 normalized sensors",
|
| 6 |
+
"framework": "pytorch",
|
| 7 |
+
"serialization": "torch state_dict (.pt) + joblib meta",
|
| 8 |
+
"loader": "see model.py: load_model() rebuilds LSTMReg + loads state_dict; predict_rul(model, meta, raw_window) normalizes + predicts",
|
| 9 |
+
"is_torch_model": true,
|
| 10 |
+
"requires_class_def": "model.py (LSTMReg)",
|
| 11 |
+
"random_state": 42,
|
| 12 |
+
"window": 30,
|
| 13 |
+
"hidden": 64,
|
| 14 |
+
"rul_cap": 125,
|
| 15 |
+
"sensors": [
|
| 16 |
+
"s2",
|
| 17 |
+
"s3",
|
| 18 |
+
"s4",
|
| 19 |
+
"s6",
|
| 20 |
+
"s7",
|
| 21 |
+
"s8",
|
| 22 |
+
"s9",
|
| 23 |
+
"s11",
|
| 24 |
+
"s12",
|
| 25 |
+
"s13",
|
| 26 |
+
"s14",
|
| 27 |
+
"s15",
|
| 28 |
+
"s17",
|
| 29 |
+
"s20",
|
| 30 |
+
"s21"
|
| 31 |
+
],
|
| 32 |
+
"n_features": 15,
|
| 33 |
+
"dataset": "NASA C-MAPSS FD001 turbofan degradation, NASA Open Data (public domain)",
|
| 34 |
+
"python_version": "3.14.4",
|
| 35 |
+
"library_versions": {
|
| 36 |
+
"torch": "2.12.0+cpu",
|
| 37 |
+
"xgboost": "3.2.0",
|
| 38 |
+
"scikit-learn": "1.8.0",
|
| 39 |
+
"numpy": "2.4.6",
|
| 40 |
+
"pandas": "2.3.3",
|
| 41 |
+
"joblib": "1.5.3"
|
| 42 |
+
},
|
| 43 |
+
"training_date": "2026-06-04T20:27:03.611734+00:00"
|
| 44 |
+
}
|