lewtun HF staff commited on
Commit
5b8ca2e
1 Parent(s): 3106d5b

Align label mapping with mrpc 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 `mrpc` 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
@@ -21,5 +21,13 @@
21
  "tie_weights_": true,
22
  "torch_dtype": "float32",
23
  "transformers_version": "4.15.0",
24
- "vocab_size": 30522
25
- }
 
 
 
 
 
 
 
 
 
21
  "tie_weights_": true,
22
  "torch_dtype": "float32",
23
  "transformers_version": "4.15.0",
24
+ "vocab_size": 30522,
25
+ "label2id": {
26
+ "not_equivalent": 0,
27
+ "equivalent": 1
28
+ },
29
+ "id2label": {
30
+ "0": "not_equivalent",
31
+ "1": "equivalent"
32
+ }
33
+ }