Align label mapping with cola config of glue dataset
Browse filesHi 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)
- config.json +10 -2
config.json
CHANGED
@@ -26,5 +26,13 @@
|
|
26 |
"transformers_version": "4.17.0",
|
27 |
"type_vocab_size": 16,
|
28 |
"upsampling_kernel_size": 4,
|
29 |
-
"use_cache": true
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
"transformers_version": "4.17.0",
|
27 |
"type_vocab_size": 16,
|
28 |
"upsampling_kernel_size": 4,
|
29 |
+
"use_cache": true,
|
30 |
+
"label2id": {
|
31 |
+
"unacceptable": 0,
|
32 |
+
"acceptable": 1
|
33 |
+
},
|
34 |
+
"id2label": {
|
35 |
+
"0": "unacceptable",
|
36 |
+
"1": "acceptable"
|
37 |
+
}
|
38 |
+
}
|