Align label mapping with rte config of glue dataset

#1
by lewtun HF staff - opened
Files changed (1) hide show
  1. config.json +10 -2
config.json CHANGED
@@ -27,5 +27,13 @@
27
  "transformers_version": "4.15.0",
28
  "type_vocab_size": 2,
29
  "use_cache": true,
30
- "vocab_size": 30522
31
- }
 
 
 
 
 
 
 
 
 
27
  "transformers_version": "4.15.0",
28
  "type_vocab_size": 2,
29
  "use_cache": true,
30
+ "vocab_size": 30522,
31
+ "label2id": {
32
+ "entailment": 0,
33
+ "not_entailment": 1
34
+ },
35
+ "id2label": {
36
+ "0": "entailment",
37
+ "1": "not_entailment"
38
+ }
39
+ }