Hulyyy commited on
Commit
8f0ce3b
·
verified ·
1 Parent(s): af7568b

Add config_labels.json with label mappings

Browse files
Files changed (1) hide show
  1. config_labels.json +24 -0
config_labels.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id2label": {
3
+ "0": "Subjective",
4
+ "1": "Ambiguous",
5
+ "2": "Nonverifiable",
6
+ "3": "Negative",
7
+ "4": "Vague"
8
+ },
9
+ "label2id": {
10
+ "Subjective": 0,
11
+ "Ambiguous": 1,
12
+ "Nonverifiable": 2,
13
+ "Negative": 3,
14
+ "Vague": 4
15
+ },
16
+ "label_order": [
17
+ "Subjective",
18
+ "Ambiguous",
19
+ "Nonverifiable",
20
+ "Negative",
21
+ "Vague"
22
+ ],
23
+ "thresholds_path": "label_thresholds.npy"
24
+ }