BigBirdPegasus model (large)
BigBird, is a sparse-attention based transformer which extends Transformer based models, such as BERT to much longer sequences. Moreover, BigBird comes along with a theoretical understanding of the capabilities of a complete transformer that the sparse model can handle.
BigBird was introduced in this paper and first released in this repository.
Disclaimer: The team releasing BigBird did not write a model card for this model so this model card has been written by the Hugging Face team.
Model description
BigBird relies on block sparse attention instead of normal attention (i.e. BERT's attention) and can handle sequences up to a length of 4096 at a much lower compute cost compared to BERT. It has achieved SOTA on various tasks involving very long sequences such as long documents summarization, question-answering with long contexts.
How to use
Here is how to use this model to get the features of a given text in PyTorch:
from transformers import BigBirdPegasusForConditionalGeneration, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("google/bigbird-pegasus-large-arxiv")
# by default encoder-attention is `block_sparse` with num_random_blocks=3, block_size=64
model = BigBirdPegasusForConditionalGeneration.from_pretrained("google/bigbird-pegasus-large-arxiv")
# decoder attention type can't be changed & will be "original_full"
# you can change `attention_type` (encoder only) to full attention like this:
model = BigBirdPegasusForConditionalGeneration.from_pretrained("google/bigbird-pegasus-large-arxiv", attention_type="original_full")
# you can change `block_size` & `num_random_blocks` like this:
model = BigBirdPegasusForConditionalGeneration.from_pretrained("google/bigbird-pegasus-large-arxiv", block_size=16, num_random_blocks=2)
text = "Replace me by any text you'd like."
inputs = tokenizer(text, return_tensors='pt')
prediction = model.generate(**inputs)
prediction = tokenizer.batch_decode(prediction)
Training Procedure
This checkpoint is obtained after fine-tuning BigBirdPegasusForConditionalGeneration
for summarization on arxiv dataset from scientific_papers.
BibTeX entry and citation info
@misc{zaheer2021big,
title={Big Bird: Transformers for Longer Sequences},
author={Manzil Zaheer and Guru Guruganesh and Avinava Dubey and Joshua Ainslie and Chris Alberti and Santiago Ontanon and Philip Pham and Anirudh Ravula and Qifan Wang and Li Yang and Amr Ahmed},
year={2021},
eprint={2007.14062},
archivePrefix={arXiv},
primaryClass={cs.LG}
}
- Downloads last month
- 4,987
Model tree for google/bigbird-pegasus-large-arxiv
Dataset used to train google/bigbird-pegasus-large-arxiv
Spaces using google/bigbird-pegasus-large-arxiv 7
Evaluation results
- ROUGE-1 on scientific_paperstest set self-reported36.028
- ROUGE-2 on scientific_paperstest set self-reported13.417
- ROUGE-L on scientific_paperstest set self-reported21.961
- ROUGE-LSUM on scientific_paperstest set self-reported29.648
- loss on scientific_paperstest set self-reported2.774
- meteor on scientific_paperstest set self-reported0.282
- gen_len on scientific_paperstest set self-reported209.254
- ROUGE-1 on cnn_dailymailtest set self-reported9.088
- ROUGE-2 on cnn_dailymailtest set self-reported1.032
- ROUGE-L on cnn_dailymailtest set self-reported7.318