Align label mapping with conll2003 dataset
#1
by
lewtun
HF staff
- opened
- config.json +19 -19
config.json
CHANGED
@@ -9,27 +9,27 @@
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "
|
14 |
-
"2": "
|
15 |
-
"3": "
|
16 |
-
"4": "
|
17 |
-
"5": "
|
18 |
-
"6": "
|
19 |
-
"7": "
|
20 |
-
"8": "
|
21 |
},
|
22 |
"initializer_range": 0.02,
|
23 |
"label2id": {
|
24 |
-
"
|
25 |
-
"
|
26 |
-
"
|
27 |
-
"
|
28 |
-
"
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"
|
33 |
},
|
34 |
"max_position_embeddings": 512,
|
35 |
"model_type": "distilbert",
|
@@ -43,4 +43,4 @@
|
|
43 |
"torch_dtype": "float32",
|
44 |
"transformers_version": "4.15.0",
|
45 |
"vocab_size": 30522
|
46 |
-
}
|
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
+
"0": "O",
|
13 |
+
"1": "B-PER",
|
14 |
+
"2": "I-PER",
|
15 |
+
"3": "B-ORG",
|
16 |
+
"4": "I-ORG",
|
17 |
+
"5": "B-LOC",
|
18 |
+
"6": "I-LOC",
|
19 |
+
"7": "B-MISC",
|
20 |
+
"8": "I-MISC"
|
21 |
},
|
22 |
"initializer_range": 0.02,
|
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 |
"max_position_embeddings": 512,
|
35 |
"model_type": "distilbert",
|
|
|
43 |
"torch_dtype": "float32",
|
44 |
"transformers_version": "4.15.0",
|
45 |
"vocab_size": 30522
|
46 |
+
}
|