Create locomotion_stability_model_config.json
Browse files
locomotion_stability_model_config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "han-locomotion-stability-classifier-v1",
|
| 3 |
+
"model_type": "binary_classification",
|
| 4 |
+
"input_features": [
|
| 5 |
+
"step_length_cm",
|
| 6 |
+
"stride_frequency_hz",
|
| 7 |
+
"center_of_mass_shift_cm",
|
| 8 |
+
"ground_reaction_force_n",
|
| 9 |
+
"terrain_type_index",
|
| 10 |
+
"imu_balance_variance"
|
| 11 |
+
],
|
| 12 |
+
"output": "stability_status",
|
| 13 |
+
"architecture": [
|
| 14 |
+
{"type": "dense", "units": 128, "activation": "relu"},
|
| 15 |
+
{"type": "dense", "units": 64, "activation": "relu"},
|
| 16 |
+
{"type": "dropout", "rate": 0.3},
|
| 17 |
+
{"type": "dense", "units": 1, "activation": "sigmoid"}
|
| 18 |
+
],
|
| 19 |
+
"loss": "binary_crossentropy",
|
| 20 |
+
"optimizer": "adam",
|
| 21 |
+
"metrics": ["accuracy", "precision", "recall", "f1"]
|
| 22 |
+
}
|