lewtun HF staff commited on
Commit
2f2b18d
·
1 Parent(s): d0a1a5d

Align label mapping with cola 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 `cola` 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
@@ -24,5 +24,13 @@
24
  "transformers_version": "4.20.1",
25
  "type_vocab_size": 1,
26
  "use_cache": true,
27
- "vocab_size": 50265
28
- }
 
 
 
 
 
 
 
 
 
24
  "transformers_version": "4.20.1",
25
  "type_vocab_size": 1,
26
  "use_cache": true,
27
+ "vocab_size": 50265,
28
+ "label2id": {
29
+ "unacceptable": 0,
30
+ "acceptable": 1
31
+ },
32
+ "id2label": {
33
+ "0": "unacceptable",
34
+ "1": "acceptable"
35
+ }
36
+ }