lewtun HF staff commited on
Commit
4541fb7
1 Parent(s): 529530e

Align label mapping with glue dataset

Browse files

Hi there, your model is using a default label mapping. Accept this PR to align the label mapping with 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
@@ -31,5 +31,13 @@
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.9.1",
33
  "type_vocab_size": 2,
34
- "vocab_size": 30000
35
- }
 
 
 
 
 
 
 
 
 
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.9.1",
33
  "type_vocab_size": 2,
34
+ "vocab_size": 30000,
35
+ "label2id": {
36
+ "not_duplicate": 0,
37
+ "duplicate": 1
38
+ },
39
+ "id2label": {
40
+ "0": "not_duplicate",
41
+ "1": "duplicate"
42
+ }
43
+ }