CLApr 10, 2020

Longformer: The Long-Document Transformer

arXiv:2004.05150v25517 citations
AI Analysis

This addresses the limitation of processing long documents for NLP applications, though it builds on prior work on long-sequence transformers.

The authors tackled the problem of Transformer models being unable to process long sequences due to quadratic self-attention scaling by introducing the Longformer, which uses an attention mechanism scaling linearly with sequence length, achieving state-of-the-art results on tasks like text8, enwik8, WikiHop, and TriviaQA.

Transformer-based models are unable to process long sequences due to their self-attention operation, which scales quadratically with the sequence length. To address this limitation, we introduce the Longformer with an attention mechanism that scales linearly with sequence length, making it easy to process documents of thousands of tokens or longer. Longformer's attention mechanism is a drop-in replacement for the standard self-attention and combines a local windowed attention with a task motivated global attention. Following prior work on long-sequence transformers, we evaluate Longformer on character-level language modeling and achieve state-of-the-art results on text8 and enwik8. In contrast to most prior work, we also pretrain Longformer and finetune it on a variety of downstream tasks. Our pretrained Longformer consistently outperforms RoBERTa on long document tasks and sets new state-of-the-art results on WikiHop and TriviaQA. We finally introduce the Longformer-Encoder-Decoder (LED), a Longformer variant for supporting long document generative sequence-to-sequence tasks, and demonstrate its effectiveness on the arXiv summarization dataset.

Code Implementations22 repos

Data from Papers with Code (CC-BY-SA-4.0)

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes