Update config.json
Browse files- config.json +30 -11
config.json
CHANGED
@@ -2,19 +2,38 @@
|
|
2 |
"architectures": [
|
3 |
"XLMWithLMHeadModel"
|
4 |
],
|
5 |
-
"emb_dim": 2048,
|
6 |
-
"n_layers": 12,
|
7 |
-
"n_heads": 16,
|
8 |
-
"dropout": 0.1,
|
9 |
-
"attention_dropout": 0.1,
|
10 |
-
"gelu_activation": true,
|
11 |
-
"sinusoidal_embeddings": false,
|
12 |
"asm": false,
|
|
|
13 |
"bos_index": 0,
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
"eos_index": 1,
|
15 |
-
"
|
16 |
-
"
|
|
|
|
|
|
|
17 |
"mask_index": 5,
|
|
|
|
|
|
|
|
|
18 |
"n_langs": 1,
|
19 |
-
"
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"architectures": [
|
3 |
"XLMWithLMHeadModel"
|
4 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
"asm": false,
|
6 |
+
"attention_dropout": 0.1,
|
7 |
"bos_index": 0,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"causal": false,
|
10 |
+
"dropout": 0.1,
|
11 |
+
"emb_dim": 2048,
|
12 |
+
"embed_init_std": 0.02209708691207961,
|
13 |
+
"end_n_top": 5,
|
14 |
"eos_index": 1,
|
15 |
+
"gelu_activation": true,
|
16 |
+
"init_std": 0.02,
|
17 |
+
"is_encoder": true,
|
18 |
+
"lang_id": 0,
|
19 |
+
"layer_norm_eps": 1e-12,
|
20 |
"mask_index": 5,
|
21 |
+
"mask_token_id": 0,
|
22 |
+
"max_position_embeddings": 512,
|
23 |
+
"model_type": "xlm",
|
24 |
+
"n_heads": 16,
|
25 |
"n_langs": 1,
|
26 |
+
"n_layers": 12,
|
27 |
+
"pad_index": 2,
|
28 |
+
"pad_token_id": 2,
|
29 |
+
"sinusoidal_embeddings": false,
|
30 |
+
"start_n_top": 5,
|
31 |
+
"summary_activation": null,
|
32 |
+
"summary_first_dropout": 0.1,
|
33 |
+
"summary_proj_to_labels": true,
|
34 |
+
"summary_type": "first",
|
35 |
+
"summary_use_proj": true,
|
36 |
+
"unk_index": 3,
|
37 |
+
"use_lang_emb": true,
|
38 |
+
"vocab_size": 30145
|
39 |
+
}
|