Upload config.json with huggingface_hub
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"BERT_Arch"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "distilbert",
|
| 6 |
+
"num_labels": 3,
|
| 7 |
+
"id2label": {
|
| 8 |
+
"0": "label1",
|
| 9 |
+
"1": "label2",
|
| 10 |
+
"2": "label3"
|
| 11 |
+
},
|
| 12 |
+
"label2id": {
|
| 13 |
+
"label1": 0,
|
| 14 |
+
"label2": 1,
|
| 15 |
+
"label3": 2
|
| 16 |
+
}
|
| 17 |
+
}
|