Unveiling and Controlling Anomalous Attention Distribution in Transformers
Ruiqing Yan, Xingbo Du, Haoyu Deng, Linghan Zheng, Qiuzhuang Sun, Jifang Hu, Yuhang Shao, Penghao Jiang, Jinrong Jiang, Lian Zhao
TL;DR
This work investigates the anomalous emphasis on the first element in Transformer attention using a waiver perspective, which posits that some sequence positions reduce their internal contributions in Softmax to absorb excess attention. It identifies two selection strategies—positional-encoding-based and feature-distribution-within-elements-based—and demonstrates how to controllably designate waiver elements via a structured mask or by adjusting positional-encoding distributions. Experiments on Llama3-8B (causal attention) and Bert-Large (global attention) validate that the proposed controls induce targeted attention patterns and can stabilize inference in long sequences. The findings offer a coherent explanation for attention sinks and point to practical gains in KV cache compression and infinite extrapolation, with implications for efficient and robust Transformer deployments.
Abstract
With the advent of large models based on the Transformer architecture, researchers have observed an anomalous phenomenon in the Attention mechanism--there is a very high attention on the first element, which is prevalent across Transformer-based models. It is crucial to understand it for the development of techniques focusing on attention distribution, such as Key-Value (KV) Cache compression and infinite extrapolation; however, the latent cause leaves to be unknown. In this paper, we analyze such a phenomenon from the perspective of waiver phenomenon, which involves reducing the internal values of certain elements in the sequence, allowing them to absorb excess attention without affecting their contribution to information. In specific models, due to differences in positional encoding and attention patterns, we have found that the selection of waiver elements by the model can be categorized into two methods: positional-encoding-based and feature-distribution-within-elements-based.
