Explicit Sparse Transformer: Concentrated Attention Through Explicit Selection
Guangxiang Zhao, Junyang Lin, Zhiyuan Zhang, Xuancheng Ren, Qi Su, Xu Sun
TL;DR
Explicit Sparse Transformer tackles attention dilution by enforcing top-k sparse attention, concentrating information on the most contributive context positions. It replaces dense softmax attention with a top-k masked mechanism that extends to both self- and context-attention, resulting in faster computation and competitive or better accuracy. Across neural machine translation, image captioning, and language modeling, the approach yields BLEU/METEOR/CIDEr gains and clearer alignments in qualitative analyses. The method offers a simple, scalable sparsification that can regularize training and accelerate large-scale Transformer deployments.
Abstract
Self-attention based Transformer has demonstrated the state-of-the-art performances in a number of natural language processing tasks. Self-attention is able to model long-term dependencies, but it may suffer from the extraction of irrelevant information in the context. To tackle the problem, we propose a novel model called \textbf{Explicit Sparse Transformer}. Explicit Sparse Transformer is able to improve the concentration of attention on the global context through an explicit selection of the most relevant segments. Extensive experimental results on a series of natural language processing and computer vision tasks, including neural machine translation, image captioning, and language modeling, all demonstrate the advantages of Explicit Sparse Transformer in model performance. We also show that our proposed sparse attention method achieves comparable or better results than the previous sparse attention method, but significantly reduces training and testing time. For example, the inference speed is twice that of sparsemax in Transformer model. Code will be available at \url{https://github.com/lancopku/Explicit-Sparse-Transformer}
