File size: 729 Bytes
31e7e6e ce6acac 31e7e6e 074d1ec 31e7e6e c228ec0 31e7e6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
---
language: en
license: apache-2.0
pipeline_tag: summarization
---
# Model Card
This model is identical to [allenai/led-large-16384](https://huggingface.co/allenai/led-large-16384), except the `generation_config.json` has been updated from:
```json
{
"_from_model_config": true,
"bos_token_id": 0,
"decoder_start_token_id": 2,
"eos_token_id": 2,
"pad_token_id": 1
}
```
to
```json
{
"bos_token_id": 0,
"decoder_start_token_id": 2,
"eos_token_id": 2,
"pad_token_id": 1,
"early_stopping": true,
"length_penalty": 2.0,
"max_length": 512,
"min_length": 100,
"no_repeat_ngram_size": 3,
"num_beams": 4
}
```
which we found to be much more stable when fine-tuning the model for summarization tasks. |