lewtun HF staff commited on
Commit
81b7017
1 Parent(s): 27ac771

Align label mapping with imdb dataset

Browse files

Hi there, your model is using a default label mapping. Accept this PR to align the label mapping with the `imdb` 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=imdb)

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.20.1",
24
- "vocab_size": 30522
25
- }
 
 
 
 
 
 
 
 
21
  "tie_weights_": true,
22
  "torch_dtype": "float32",
23
  "transformers_version": "4.20.1",
24
+ "vocab_size": 30522,
25
+ "label2id": {
26
+ "neg": 0,
27
+ "pos": 1
28
+ },
29
+ "id2label": {
30
+ "0": "neg",
31
+ "1": "pos"
32
+ }
33
+ }