Update config.json
Browse files- config.json +50 -0
config.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"same_enc_dec": true,
|
3 |
+
"emb_dim": 1024,
|
4 |
+
"n_layers": 12,
|
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": 95000,
|
13 |
+
"min_count": 0,
|
14 |
+
"id2lang": {
|
15 |
+
"0": "ar",
|
16 |
+
"1": "bg",
|
17 |
+
"2": "de",
|
18 |
+
"3": "el",
|
19 |
+
"4": "en",
|
20 |
+
"5": "es",
|
21 |
+
"6": "fr",
|
22 |
+
"7": "hi",
|
23 |
+
"8": "ru",
|
24 |
+
"9": "sw",
|
25 |
+
"10": "th",
|
26 |
+
"11": "tr",
|
27 |
+
"12": "ur",
|
28 |
+
"13": "vi",
|
29 |
+
"14": "zh"
|
30 |
+
},
|
31 |
+
"lang2id": {
|
32 |
+
"ar": 0,
|
33 |
+
"bg": 1,
|
34 |
+
"de": 2,
|
35 |
+
"el": 3,
|
36 |
+
"en": 4,
|
37 |
+
"es": 5,
|
38 |
+
"fr": 6,
|
39 |
+
"hi": 7,
|
40 |
+
"ru": 8,
|
41 |
+
"sw": 9,
|
42 |
+
"th": 10,
|
43 |
+
"tr": 11,
|
44 |
+
"ur": 12,
|
45 |
+
"vi": 13,
|
46 |
+
"zh": 14
|
47 |
+
},
|
48 |
+
"n_langs": 15,
|
49 |
+
"n_words": 95000
|
50 |
+
}
|