Eric22333 commited on
Commit
9a5a57d
·
verified ·
1 Parent(s): a030102

Create config.json

Browse files
Files changed (1) hide show
  1. 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
+ }