Towards Understanding the Word Sensitivity of Attention Layers: A Study via Random Features
Simone Bombari, Marco Mondelli
TL;DR
The paper addresses why attention layers excel in NLP by formalizing word sensitivity (WS) in a random-feature setting. It shows that standard random features have WS scaling as $\mathcal{O}(1/\sqrt{n})$, while random attention features exhibit WS of constant order $\Omega(1)$, driven by the softmax in attention. The authors prove theoretical results establishing low WS and associated negative generalization for RF (and DRF) but high WS enabling generalization for RAF, complemented by experiments on $\text{BERT-Base}$ embeddings of IMDb data. The work highlights softmax-empowered WS as a fundamental property distinguishing attention from fully connected layers, with implications for the design and analysis of transformer-based models.
Abstract
Understanding the reasons behind the exceptional success of transformers requires a better analysis of why attention layers are suitable for NLP tasks. In particular, such tasks require predictive models to capture contextual meaning which often depends on one or few words, even if the sentence is long. Our work studies this key property, dubbed word sensitivity (WS), in the prototypical setting of random features. We show that attention layers enjoy high WS, namely, there exists a vector in the space of embeddings that largely perturbs the random attention features map. The argument critically exploits the role of the softmax in the attention layer, highlighting its benefit compared to other activations (e.g., ReLU). In contrast, the WS of standard random features is of order $1/\sqrt{n}$, $n$ being the number of words in the textual sample, and thus it decays with the length of the context. We then translate these results on the word sensitivity into generalization bounds: due to their low WS, random features provably cannot learn to distinguish between two sentences that differ only in a single word; in contrast, due to their high WS, random attention features have higher generalization capabilities. We validate our theoretical results with experimental evidence over the BERT-Base word embeddings of the imdb review dataset.
