Update config.json
Browse files- config.json +11 -9
config.json
CHANGED
@@ -4,26 +4,28 @@
|
|
4 |
"DistilBertForMaskedLM"
|
5 |
],
|
6 |
"attention_dropout": 0.1,
|
|
|
7 |
"dim": 768,
|
8 |
"dropout": 0.1,
|
9 |
-
"
|
10 |
"hidden_dim": 3072,
|
|
|
|
|
11 |
"initializer_range": 0.02,
|
12 |
-
"
|
|
|
13 |
"max_position_embeddings": 512,
|
|
|
14 |
"n_heads": 12,
|
15 |
"n_layers": 3,
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"output_hidden_states": false,
|
19 |
"output_past": true,
|
20 |
"pad_token_id": 1,
|
21 |
-
"pruned_heads": {},
|
22 |
"qa_dropout": 0.1,
|
23 |
"seq_classif_dropout": 0.2,
|
24 |
"sinusoidal_pos_embds": false,
|
25 |
"tie_weights_": true,
|
26 |
-
"
|
27 |
-
"use_bfloat16": false,
|
28 |
"vocab_size": 8002
|
29 |
-
}
|
|
|
4 |
"DistilBertForMaskedLM"
|
5 |
],
|
6 |
"attention_dropout": 0.1,
|
7 |
+
"attention_probs_dropout_prob": 0.1,
|
8 |
"dim": 768,
|
9 |
"dropout": 0.1,
|
10 |
+
"hidden_act": "gelu",
|
11 |
"hidden_dim": 3072,
|
12 |
+
"hidden_dropout_prob": 0.1,
|
13 |
+
"hidden_size": 768,
|
14 |
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 3072,
|
16 |
+
"layer_norm_eps": 1e-12,
|
17 |
"max_position_embeddings": 512,
|
18 |
+
"model_type": "bert",
|
19 |
"n_heads": 12,
|
20 |
"n_layers": 3,
|
21 |
+
"num_attention_heads": 12,
|
22 |
+
"num_hidden_layers": 12,
|
|
|
23 |
"output_past": true,
|
24 |
"pad_token_id": 1,
|
|
|
25 |
"qa_dropout": 0.1,
|
26 |
"seq_classif_dropout": 0.2,
|
27 |
"sinusoidal_pos_embds": false,
|
28 |
"tie_weights_": true,
|
29 |
+
"type_vocab_size": 2,
|
|
|
30 |
"vocab_size": 8002
|
31 |
+
}
|