Yang Liu, Mirella Lapata
Bidirectional Encoder Representations from Transformers (BERT) represents the latest incarnation of pretrained language models which have recently advanced a wide range of natural language processing tasks. In this paper, we showcase how BERT can be usefully applied in text summarization and propose a general framework for both extractive and abstractive models. We introduce a novel document-level encoder based on BERT which is able to express the semantics of a document and obtain representations for its sentences. Our extractive model is built on top of this encoder by stacking several inter-sentence Transformer layers. For abstractive summarization, we propose a new fine-tuning schedule which adopts different optimizers for the encoder and the decoder as a means of alleviating the mismatch between the two (the former is pretrained while the latter is not). We also demonstrate that a two-staged fine-tuning approach can further boost the quality of the generated summaries. Experiments on three datasets show that our model achieves state-of-the-art results across the board in both extractive and abstractive settings. Our code is available at https://github.com/nlpyang/PreSumm
| Task | Dataset | Metric | Value | Model |
|---|---|---|---|---|
| Text Summarization | X-Sum | ROUGE-1 | 38.81 | BertSumExtAbs |
| Text Summarization | X-Sum | ROUGE-2 | 16.5 | BertSumExtAbs |
| Text Summarization | X-Sum | ROUGE-3 | 31.27 | BertSumExtAbs |
| Text Summarization | CNN / Daily Mail | ROUGE-1 | 42.13 | BertSumExtAbs |
| Text Summarization | CNN / Daily Mail | ROUGE-2 | 19.6 | BertSumExtAbs |
| Text Summarization | CNN / Daily Mail | ROUGE-L | 39.18 | BertSumExtAbs |
| Text Summarization | CNN / Daily Mail | ROUGE-1 | 43.85 | BertSumExt |
| Text Summarization | CNN / Daily Mail | ROUGE-2 | 20.34 | BertSumExt |
| Text Summarization | CNN / Daily Mail | ROUGE-L | 39.9 | BertSumExt |
| Abstractive Text Summarization | CNN / Daily Mail | ROUGE-1 | 42.13 | BertSumExtAbs |
| Abstractive Text Summarization | CNN / Daily Mail | ROUGE-2 | 19.6 | BertSumExtAbs |
| Abstractive Text Summarization | CNN / Daily Mail | ROUGE-L | 39.18 | BertSumExtAbs |
| Document Summarization | CNN / Daily Mail | ROUGE-1 | 43.85 | BertSumExt |
| Document Summarization | CNN / Daily Mail | ROUGE-2 | 20.34 | BertSumExt |
| Document Summarization | CNN / Daily Mail | ROUGE-L | 39.9 | BertSumExt |