lewtun HF staff commited on
Commit
d5ac84a
1 Parent(s): f8e3466

Align label mapping with amazon_polarity dataset

Browse files

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

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