beomi lewtun HF staff commited on
Commit
252a1d1
1 Parent(s): c292e13

Align label mapping with cola config of glue dataset (#1)

Browse files

- Align label mapping with cola config of glue dataset (cae5f4e032e0a2d4d1eed0fb8af0df5cc2f1d253)


Co-authored-by: Lewis Tunstall <lewtun@users.noreply.huggingface.co>

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