How do Transformers perform In-Context Autoregressive Learning?
Michael E. Sander, Raja Giryes, Taiji Suzuki, Mathieu Blondel, Gabriel Peyré
TL;DR
By analyzing a linear-attention Transformer trained on an autoregressive process $s_{t+1}=Ws_t$, the paper investigates how context enables in-context autoregressive learning (ICL). It shows that, under token augmentation and commuting context matrices, the in-context mapping $\Gamma_{\theta^*}$ implements a one-step gradient update on the inner objective, while in non-augmented settings, the mapping becomes a geometry-driven operation enabled by orthogonal heads and learnable positional encoding. The authors derive exact minimizers for unitary and orthogonal contexts, reveal head-orthogonality, and study the role of softmax versus linear attention, validating the theory with experiments that extend to non-commuting $W$. These insights shed light on the mechanisms behind Transformers' context-sensitive computation and offer theoretical grounding for in-context learning in linear attention architectures.
Abstract
Transformers have achieved state-of-the-art performance in language modeling tasks. However, the reasons behind their tremendous success are still unclear. In this paper, towards a better understanding, we train a Transformer model on a simple next token prediction task, where sequences are generated as a first-order autoregressive process $s_{t+1} = W s_t$. We show how a trained Transformer predicts the next token by first learning $W$ in-context, then applying a prediction mapping. We call the resulting procedure in-context autoregressive learning. More precisely, focusing on commuting orthogonal matrices $W$, we first show that a trained one-layer linear Transformer implements one step of gradient descent for the minimization of an inner objective function, when considering augmented tokens. When the tokens are not augmented, we characterize the global minima of a one-layer diagonal linear multi-head Transformer. Importantly, we exhibit orthogonality between heads and show that positional encoding captures trigonometric relations in the data. On the experimental side, we consider the general case of non-commuting orthogonal matrices and generalize our theoretical findings.
