Update config.json
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"emb_dim": 2048,
|
| 3 |
+
"n_layers": 12,
|
| 4 |
+
"n_heads": 16,
|
| 5 |
+
"dropout": 0.1,
|
| 6 |
+
"attention_dropout": 0.1,
|
| 7 |
+
"gelu_activation": true,
|
| 8 |
+
"sinusoidal_embeddings": false,
|
| 9 |
+
"asm": false,
|
| 10 |
+
"bos_index": 0,
|
| 11 |
+
"eos_index": 1,
|
| 12 |
+
"pad_index": 2,
|
| 13 |
+
"unk_index": 3,
|
| 14 |
+
"mask_index": 5,
|
| 15 |
+
"n_langs": 1,
|
| 16 |
+
"n_words": 30145
|
| 17 |
+
}
|