system HF staff commited on
Commit
4258d8c
1 Parent(s): 7f68648

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "attention_dropout": 0.1,
4
+ "dim": 768,
5
+ "dropout": 0.1,
6
+ "finetuning_task": "snli",
7
+ "hidden_dim": 3072,
8
+ "id2label": {
9
+ "0": "LABEL_0",
10
+ "1": "LABEL_1",
11
+ "2": "LABEL_2"
12
+ },
13
+ "initializer_range": 0.02,
14
+ "label2id": {
15
+ "LABEL_0": 0,
16
+ "LABEL_1": 1,
17
+ "LABEL_2": 2
18
+ },
19
+ "max_position_embeddings": 512,
20
+ "model_type": "distilbert",
21
+ "n_heads": 12,
22
+ "n_layers": 6,
23
+ "output_past": true,
24
+ "pad_token_id": 0,
25
+ "qa_dropout": 0.1,
26
+ "seq_classif_dropout": 0.2,
27
+ "sinusoidal_pos_embds": false,
28
+ "tie_weights_": true,
29
+ "vocab_size": 28996
30
+ }