lewtun HF staff commited on
Commit
10fc996
1 Parent(s): 795b36b

Align label mapping with rte config of glue dataset

Browse files

Hi there, your model is using a default label mapping. Accept this PR to align the label mapping with the `rte` config of the `glue` dataset this model was trained on. This will enable your model to be evaluated by [Hugging Face's automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator?dataset=glue)

Files changed (1) hide show
  1. config.json +10 -2
config.json CHANGED
@@ -22,5 +22,13 @@
22
  "transformers_version": "4.21.0",
23
  "type_vocab_size": 2,
24
  "use_cache": true,
25
- "vocab_size": 30522
26
- }
 
 
 
 
 
 
 
 
 
22
  "transformers_version": "4.21.0",
23
  "type_vocab_size": 2,
24
  "use_cache": true,
25
+ "vocab_size": 30522,
26
+ "label2id": {
27
+ "entailment": 0,
28
+ "not_entailment": 1
29
+ },
30
+ "id2label": {
31
+ "0": "entailment",
32
+ "1": "not_entailment"
33
+ }
34
+ }