Upload config.json with huggingface_hub
Browse files- config.json +28 -0
config.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "multimodal_framework",
|
| 3 |
+
"embedding_dim": 64,
|
| 4 |
+
"unified_dim": 128,
|
| 5 |
+
"num_modalities": 3,
|
| 6 |
+
"modalities": [
|
| 7 |
+
"academic",
|
| 8 |
+
"behavioral",
|
| 9 |
+
"activity"
|
| 10 |
+
],
|
| 11 |
+
"input_dims": {
|
| 12 |
+
"academic": 5,
|
| 13 |
+
"behavioral": 5,
|
| 14 |
+
"activity": 5
|
| 15 |
+
},
|
| 16 |
+
"training": {
|
| 17 |
+
"method": "SimCLR contrastive learning",
|
| 18 |
+
"epochs": 184,
|
| 19 |
+
"best_loss": 0.5869,
|
| 20 |
+
"temperature": 0.07,
|
| 21 |
+
"batch_size": 128,
|
| 22 |
+
"hardware": "NVIDIA RTX 3050 4GB"
|
| 23 |
+
},
|
| 24 |
+
"metrics": {
|
| 25 |
+
"silhouette_score": 0.331,
|
| 26 |
+
"adjusted_rand_index": 0.9989
|
| 27 |
+
}
|
| 28 |
+
}
|