Update config.json
Browse files- config.json +19 -0
config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"FSMTForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"model_type": "fsmt",
|
6 |
+
"activation_dropout": 0.0,
|
7 |
+
"activation_function": "relu",
|
8 |
+
"attention_dropout": 0.1,
|
9 |
+
"init_std": 0.02,
|
10 |
+
"src_vocab_size": 50264,
|
11 |
+
"tgt_vocab_size": 50264,
|
12 |
+
"bos_token_id": 0,
|
13 |
+
"pad_token_id": 1,
|
14 |
+
"eos_token_id": 2,
|
15 |
+
"is_encoder_decoder": true,
|
16 |
+
"num_beams": 5,
|
17 |
+
"early_stopping": false,
|
18 |
+
"length_penalty": 1.0
|
19 |
+
}
|