Configure Git LFS
Browse files- config.json +35 -0
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": ["RobertaForTokenClassification"],
|
3 |
+
"model_type": "roberta",
|
4 |
+
"num_labels": 13,
|
5 |
+
"id2label": {
|
6 |
+
"0": "O",
|
7 |
+
"1": "B-device",
|
8 |
+
"2": "I-device",
|
9 |
+
"3": "B-living_space",
|
10 |
+
"4": "I-living_space",
|
11 |
+
"5": "B-time_at",
|
12 |
+
"6": "I-time_at",
|
13 |
+
"7": "B-duration",
|
14 |
+
"8": "I-duration",
|
15 |
+
"9": "B-target_number",
|
16 |
+
"10": "I-target_number",
|
17 |
+
"11": "B-changing_value",
|
18 |
+
"12": "I-changing_value"
|
19 |
+
},
|
20 |
+
"label2id": {
|
21 |
+
"O": 0,
|
22 |
+
"B-device": 1,
|
23 |
+
"I-device": 2,
|
24 |
+
"B-living_space": 3,
|
25 |
+
"I-living_space": 4,
|
26 |
+
"B-time_at": 5,
|
27 |
+
"I-time_at": 6,
|
28 |
+
"B-duration": 7,
|
29 |
+
"I-duration": 8,
|
30 |
+
"B-target_number": 9,
|
31 |
+
"I-target_number": 10,
|
32 |
+
"B-changing_value": 11,
|
33 |
+
"I-changing_value": 12
|
34 |
+
}
|
35 |
+
}
|