Create config.json
Browse files- config.json +16 -0
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "anomaly-detection",
|
| 3 |
+
"architecture": "metric-pattern-classifier",
|
| 4 |
+
"input_features": [
|
| 5 |
+
"motor_temperature",
|
| 6 |
+
"battery_drain_rate",
|
| 7 |
+
"motion_stability_score"
|
| 8 |
+
],
|
| 9 |
+
"output_labels": [
|
| 10 |
+
"normal",
|
| 11 |
+
"temperature-spike",
|
| 12 |
+
"power-instability",
|
| 13 |
+
"motion-anomaly"
|
| 14 |
+
],
|
| 15 |
+
"version": "1.0.0"
|
| 16 |
+
}
|