Add config.json for HuggingFace download tracking
Browse files- config.json +20 -0
config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "poster-sentry",
|
| 3 |
+
"architecture": "logistic_regression_multimodal",
|
| 4 |
+
"embedding_backbone": "minishlab/potion-base-32M",
|
| 5 |
+
"embedding_dim": 512,
|
| 6 |
+
"visual_features": 15,
|
| 7 |
+
"structural_features": 15,
|
| 8 |
+
"total_features": 542,
|
| 9 |
+
"labels": [
|
| 10 |
+
"non_poster",
|
| 11 |
+
"poster"
|
| 12 |
+
],
|
| 13 |
+
"num_classes": 2,
|
| 14 |
+
"head_file": "models/poster_sentry_head.npz",
|
| 15 |
+
"scaler": "StandardScaler",
|
| 16 |
+
"classifier": "LogisticRegression",
|
| 17 |
+
"accuracy": 0.8725,
|
| 18 |
+
"training_samples": 3606,
|
| 19 |
+
"library_name": "model2vec"
|
| 20 |
+
}
|