Update config.json
Browse files- config.json +34 -0
config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"attn_type": "bi",
|
3 |
+
"bi_data": false,
|
4 |
+
"clamp_len": -1,
|
5 |
+
"d_head": 64,
|
6 |
+
"d_inner": 3072,
|
7 |
+
"d_model": 768,
|
8 |
+
"dropout": 0.1,
|
9 |
+
"end_n_top": 5,
|
10 |
+
"ff_activation": "relu",
|
11 |
+
"finetuning_task": null,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"is_decoder": false,
|
14 |
+
"layer_norm_eps": 1e-12,
|
15 |
+
"mem_len": null,
|
16 |
+
"n_head": 12,
|
17 |
+
"n_layer": 24,
|
18 |
+
"n_token": 32000,
|
19 |
+
"num_labels": 2,
|
20 |
+
"output_attentions": false,
|
21 |
+
"output_hidden_states": false,
|
22 |
+
"output_past": true,
|
23 |
+
"pruned_heads": {},
|
24 |
+
"reuse_len": null,
|
25 |
+
"same_length": false,
|
26 |
+
"start_n_top": 5,
|
27 |
+
"summary_activation": "tanh",
|
28 |
+
"summary_last_dropout": 0.1,
|
29 |
+
"summary_type": "last",
|
30 |
+
"summary_use_proj": true,
|
31 |
+
"torchscript": false,
|
32 |
+
"untie_r": true,
|
33 |
+
"use_bfloat16": false
|
34 |
+
}
|