Commit ·
e3e29b5
1
Parent(s): 98cd4e9
add config
Browse files- config.json +14 -0
config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"activation_function": "gelu",
|
| 3 |
+
"attention_heads": 8,
|
| 4 |
+
"decoder_layers": 1,
|
| 5 |
+
"dropout": 0.1,
|
| 6 |
+
"emb_size": 512,
|
| 7 |
+
"encoder_layers": 12,
|
| 8 |
+
"ffn_hid_dim": 2048,
|
| 9 |
+
"max_position_embeddings": 64,
|
| 10 |
+
"model_type": "transformer",
|
| 11 |
+
"src_vocab_size": 10000,
|
| 12 |
+
"tgt_vocab_size": 10000,
|
| 13 |
+
"transformers_version": "4.17.0"
|
| 14 |
+
}
|