Update config.json
Browse files- config.json +12 -4
config.json
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
{
|
2 |
-
"architectures": [
|
3 |
-
"BertForSequenceClassification"
|
4 |
-
],
|
5 |
"attention_probs_dropout_prob": 0.1,
|
6 |
"classifier_dropout": null,
|
7 |
"directionality": "bidi",
|
@@ -27,5 +25,15 @@
|
|
27 |
"transformers_version": "4.51.3",
|
28 |
"type_vocab_size": 2,
|
29 |
"use_cache": true,
|
30 |
-
"vocab_size": 119547
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
}
|
|
|
1 |
{
|
2 |
+
"architectures": ["BertForSequenceClassification"],
|
|
|
|
|
3 |
"attention_probs_dropout_prob": 0.1,
|
4 |
"classifier_dropout": null,
|
5 |
"directionality": "bidi",
|
|
|
25 |
"transformers_version": "4.51.3",
|
26 |
"type_vocab_size": 2,
|
27 |
"use_cache": true,
|
28 |
+
"vocab_size": 119547,
|
29 |
+
|
30 |
+
"num_labels": 2,
|
31 |
+
"id2label": {
|
32 |
+
"0": "ham",
|
33 |
+
"1": "smishing"
|
34 |
+
},
|
35 |
+
"label2id": {
|
36 |
+
"ham": 0,
|
37 |
+
"smishing": 1
|
38 |
+
}
|
39 |
}
|