Create config.json
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": ["NewsClassifier"],
|
| 3 |
+
"model_type": "news_classifier",
|
| 4 |
+
"max_length": 41,
|
| 5 |
+
"vocab_size": 74934,
|
| 6 |
+
"embedding_dim": 128,
|
| 7 |
+
"hidden_size": 64,
|
| 8 |
+
"num_labels": 2,
|
| 9 |
+
"id2label": {
|
| 10 |
+
"0": "nbc",
|
| 11 |
+
"1": "foxnews"
|
| 12 |
+
},
|
| 13 |
+
"label2id": {
|
| 14 |
+
"nbc": 0,
|
| 15 |
+
"foxnews": 1
|
| 16 |
+
}
|
| 17 |
+
}
|