lewtun HF staff commited on
Commit
9213b65
1 Parent(s): fb5d3ed

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
@@ -23,5 +23,13 @@
23
  "transformers_version": "4.16.2",
24
  "type_vocab_size": 2,
25
  "use_cache": true,
26
- "vocab_size": 30522
27
- }
 
 
 
 
 
 
 
 
 
23
  "transformers_version": "4.16.2",
24
  "type_vocab_size": 2,
25
  "use_cache": true,
26
+ "vocab_size": 30522,
27
+ "label2id": {
28
+ "unacceptable": 0,
29
+ "acceptable": 1
30
+ },
31
+ "id2label": {
32
+ "0": "unacceptable",
33
+ "1": "acceptable"
34
+ }
35
+ }