Commit
•
b1e9d28
1
Parent(s):
7525562
Align label mapping with imdb dataset (#1)
Browse files- Align label mapping with imdb dataset (874a3020e60a9af6078b979651142b83a62617fd)
Co-authored-by: Lewis Tunstall <lewtun@users.noreply.huggingface.co>
- config.json +10 -2
config.json
CHANGED
@@ -21,5 +21,13 @@
|
|
21 |
"tie_weights_": true,
|
22 |
"torch_dtype": "float32",
|
23 |
"transformers_version": "4.16.2",
|
24 |
-
"vocab_size": 30522
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
"tie_weights_": true,
|
22 |
"torch_dtype": "float32",
|
23 |
"transformers_version": "4.16.2",
|
24 |
+
"vocab_size": 30522,
|
25 |
+
"label2id": {
|
26 |
+
"neg": 0,
|
27 |
+
"pos": 1
|
28 |
+
},
|
29 |
+
"id2label": {
|
30 |
+
"0": "neg",
|
31 |
+
"1": "pos"
|
32 |
+
}
|
33 |
+
}
|