Upload config.json with huggingface_hub
Browse files- config.json +18 -0
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "labin",
|
| 3 |
+
"architecture": "BiLSTM + SeqWeightedAttention (Keras)",
|
| 4 |
+
"vocab_size": 40,
|
| 5 |
+
"embedding_dim": 128,
|
| 6 |
+
"maxlen": 64,
|
| 7 |
+
"lstm_size": 128,
|
| 8 |
+
"dropout": 0.5,
|
| 9 |
+
"padding": "left",
|
| 10 |
+
"num_classes": 2,
|
| 11 |
+
"id2label": {"0": "legit", "1": "dga"},
|
| 12 |
+
"label2id": {"legit": 0, "dga": 1},
|
| 13 |
+
"framework": "keras",
|
| 14 |
+
"weights_file": "LABin_best_model.keras",
|
| 15 |
+
"train_families": 54,
|
| 16 |
+
"train_rows": 845639,
|
| 17 |
+
"dependencies": ["keras", "keras_self_attention"]
|
| 18 |
+
}
|