Update config.json
Browse files- config.json +24 -0
config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"attn_type": "bi",
|
| 3 |
+
"bi_data": false,
|
| 4 |
+
"clamp_len": -1,
|
| 5 |
+
"d_head": 64,
|
| 6 |
+
"d_inner": 4096,
|
| 7 |
+
"d_model": 1024,
|
| 8 |
+
"dropatt": 0.1,
|
| 9 |
+
"dropout": 0.1,
|
| 10 |
+
"ff_activation": "gelu",
|
| 11 |
+
"init": "normal",
|
| 12 |
+
"init_range": 0.1,
|
| 13 |
+
"init_std": 0.02,
|
| 14 |
+
"initializer_range": 0.02,
|
| 15 |
+
"layer_norm_eps": 1e-12,
|
| 16 |
+
"max_position_embeddings": 512,
|
| 17 |
+
"mem_len": null,
|
| 18 |
+
"n_head": 16,
|
| 19 |
+
"n_layer": 24,
|
| 20 |
+
"n_token": 32000,
|
| 21 |
+
"reuse_len": null,
|
| 22 |
+
"same_length": false,
|
| 23 |
+
"untie_r": true
|
| 24 |
+
}
|