Update config.json
Browse files- config.json +24 -0
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"same_enc_dec": true,
|
3 |
+
"emb_dim": 1024,
|
4 |
+
"n_layers": 6,
|
5 |
+
"n_heads": 8,
|
6 |
+
"dropout": 0.1,
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"gelu_activation": true,
|
9 |
+
"share_inout_emb": true,
|
10 |
+
"sinusoidal_embeddings": false,
|
11 |
+
"asm": false,
|
12 |
+
"max_vocab": -1,
|
13 |
+
"min_count": 0,
|
14 |
+
"id2lang": {
|
15 |
+
"0": "de",
|
16 |
+
"1": "en"
|
17 |
+
},
|
18 |
+
"lang2id": {
|
19 |
+
"de": 0,
|
20 |
+
"en": 1
|
21 |
+
},
|
22 |
+
"n_langs": 2,
|
23 |
+
"n_words": 64699
|
24 |
+
}
|