Chain and Causal Attention for Efficient Entity Tracking
Erwan Fagnou, Paul Caillon, Blaise Delattre, Alexandre Allauzen
TL;DR
This work identifies a fundamental limit for Transformer-based entity tracking: to handle $n$ state changes, a decoder-only Transformer requires at least $L_{\ extmin}$ layers with $L_{\ extmin} = \lceil \log_2(\text{depth}(\mathcal{G}) + 1)\rceil$. It then introduces ChaCAL, an attention variant that treats the attention matrix as an adjacency matrix and uses a fixed-point, closed-form update $\mathbf{Y} = (1-\gamma) \mathbf{A} (I - \gamma \mathbf{A})^{-1} \mathbf{V}$ to capture long-range dependencies within a single layer. Through toy, Boxes, and language-modeling experiments, ChaCAL achieves near-perfect entity-tracking performance with far fewer layers, while maintaining competitive results on standard pre-training tasks. The findings underscore the potential for task-specific attention designs to dramatically reduce computational requirements for structured reasoning while highlighting directions for pre-training and broader-domain evaluation.
Abstract
This paper investigates the limitations of transformers for entity-tracking tasks in large language models. We identify a theoretical constraint, showing that transformers require at least $\log_2 (n+1)$ layers to handle entity tracking with $n$ state changes. To address this issue, we propose an efficient and frugal enhancement to the standard attention mechanism, enabling it to manage long-term dependencies more efficiently. By considering attention as an adjacency matrix, our model can track entity states with a single layer. Empirical results demonstrate significant improvements in entity tracking datasets while keeping competitive performance on standard natural language modeling. Our modified attention allows us to achieve the same performance with drastically fewer layers. Additionally, our enhanced mechanism reveals structured internal representations of attention. Extensive experiments on both toy and complex datasets validate our approach. Our contributions include theoretical insights, an improved attention mechanism, and empirical validation.
