hbanduk commited on
Commit
6e075be
·
verified ·
1 Parent(s): 5f4bc44

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +23 -0
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DistilBertForSequenceClassification"
4
+ ],
5
+ "model_type": "distilbert",
6
+ "hidden_size": 768,
7
+ "num_attention_heads": 12,
8
+ "num_hidden_layers": 6,
9
+ "vocab_size": 30522,
10
+ "dropout": 0.1,
11
+ "attention_dropout": 0.1,
12
+ "max_position_embeddings": 512,
13
+ "initializer_range": 0.02,
14
+ "tie_weights_": true,
15
+ "id2label": {
16
+ "0": "LABEL_0",
17
+ "1": "LABEL_1"
18
+ },
19
+ "label2id": {
20
+ "LABEL_0": 0,
21
+ "LABEL_1": 1
22
+ }
23
+ }