t5-base/config.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-12-12 10:37:43 +00:00
{
2020-01-31 23:00:30 +00:00
"architectures": [
"T5WithLMHeadModel"
],
2019-12-12 10:37:43 +00:00
"d_ff": 3072,
"d_kv": 64,
"d_model": 768,
2020-03-26 08:18:33 +00:00
"decoder_start_token_id": 0,
2019-12-12 10:37:43 +00:00
"dropout_rate": 0.1,
2020-04-24 16:06:15 +00:00
"eos_token_id": 1,
2019-12-12 10:37:43 +00:00
"initializer_factor": 1.0,
2020-04-24 16:06:15 +00:00
"is_encoder_decoder": true,
2019-12-12 10:37:43 +00:00
"layer_norm_epsilon": 1e-06,
2020-04-24 16:06:15 +00:00
"model_type": "t5",
2019-12-12 10:37:43 +00:00
"n_positions": 512,
"num_heads": 12,
"num_layers": 12,
"output_past": true,
2020-04-24 16:06:15 +00:00
"pad_token_id": 0,
2019-12-12 10:37:43 +00:00
"relative_attention_num_buckets": 32,
2020-03-26 08:18:33 +00:00
"task_specific_params": {
"summarization": {
"early_stopping": true,
"length_penalty": 2.0,
"max_length": 200,
"min_length": 30,
"no_repeat_ngram_size": 3,
"num_beams": 4,
"prefix": "summarize: "
},
"translation_en_to_de": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to German: "
},
"translation_en_to_fr": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to French: "
},
"translation_en_to_ro": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to Romanian: "
}
},
2019-12-12 10:37:43 +00:00
"vocab_size": 32128
2020-04-24 16:06:15 +00:00
}