On Difficulties of Attention Factorization through Shared Memory
Uladzislau Yorsh, Martin Holeňa, Ondřej Bojar, David Herel
TL;DR
The paper addresses the quadratic $O(L^2)$ complexity of Transformer attention for long sequences and evaluates external-memory–based architectures that attempt to linearize computation. It uncovers memory degradation, where memory vectors collapse during training and reduce effective memory utilization. It proposes ConvLuna with input filtering via convolution or pooling on the packing keys/values and a learnable softmax temperature to improve information transfer between input and memory. Empirically, ConvLuna achieves improvements on Long Range Arena tasks, including cases where a single memory cell surpasses the vanilla Transformer, indicating that pre-filtering inputs before memory interaction is a promising direction for scalable long-sequence models.
Abstract
Transformers have revolutionized deep learning in numerous fields, including natural language processing, computer vision, and audio processing. Their strength lies in their attention mechanism, which allows for the discovering of complex input relationships. However, this mechanism's quadratic time and memory complexity pose challenges for larger inputs. Researchers are now investigating models like Linear Unified Nested Attention (Luna) or Memory Augmented Transformer, which leverage external learnable memory to either reduce the attention computation complexity down to linear, or to propagate information between chunks in chunk-wise processing. Our findings challenge the conventional thinking on these models, revealing that interfacing with the memory directly through an attention operation is suboptimal, and that the performance may be considerably improved by filtering the input signal before communicating with memory.
