tarekziade
commited on
more tweaking
Browse files- config.json +19 -18
config.json
CHANGED
@@ -8,29 +8,30 @@
|
|
8 |
"dim": 768,
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
|
|
11 |
"id2label": {
|
12 |
"0": "O",
|
13 |
-
"1": "B-
|
14 |
-
"2": "I-
|
15 |
-
"3": "B-
|
16 |
-
"4": "I-
|
17 |
-
"5": "B-
|
18 |
-
"6": "I-
|
19 |
-
"7": "B-
|
20 |
-
"8": "I-
|
21 |
},
|
22 |
-
"initializer_range": 0.02,
|
23 |
"label2id": {
|
24 |
-
"
|
25 |
-
"B-
|
26 |
-
"
|
27 |
-
"B-
|
28 |
-
"I-
|
29 |
-
"
|
30 |
-
"I-
|
31 |
-
"
|
32 |
-
"
|
33 |
},
|
|
|
34 |
"max_position_embeddings": 512,
|
35 |
"model_type": "distilbert",
|
36 |
"n_heads": 12,
|
|
|
8 |
"dim": 768,
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
+
},
|
12 |
"id2label": {
|
13 |
"0": "O",
|
14 |
+
"1": "B-PER",
|
15 |
+
"2": "I-PER",
|
16 |
+
"3": "B-ORG",
|
17 |
+
"4": "I-ORG",
|
18 |
+
"5": "B-LOC",
|
19 |
+
"6": "I-LOC",
|
20 |
+
"7": "B-MISC",
|
21 |
+
"8": "I-MISC"
|
22 |
},
|
|
|
23 |
"label2id": {
|
24 |
+
"O": 0,
|
25 |
+
"B-PER": 1,
|
26 |
+
"I-PER": 2,
|
27 |
+
"B-ORG": 3,
|
28 |
+
"I-ORG": 4,
|
29 |
+
"B-LOC": 5,
|
30 |
+
"I-LOC": 6,
|
31 |
+
"B-MISC": 7,
|
32 |
+
"I-MISC": 8
|
33 |
},
|
34 |
+
"initializer_range": 0.02,
|
35 |
"max_position_embeddings": 512,
|
36 |
"model_type": "distilbert",
|
37 |
"n_heads": 12,
|