CAST: Clustering Self-Attention using Surrogate Tokens for Efficient Transformers
Adjorn van Engelenhoven, Nicola Strisciuglio, Estefanía Talavera
TL;DR
CAST introduces learnable surrogate tokens to form cluster affiliations for self-attention, replacing quadratic $O(N^2)$ computation with a linearized $O(αN)$ approach while preserving information flow through intra-cluster attention and inter-cluster cluster-summaries. The method supports single-head and multi-head variants, two clustering regimes (Top-K and SA Top-K), and a complexity-optimizing relationship among cluster size and count. Empirical results on Long Range Arena show CAST offers substantial speedups and memory savings with competitive accuracy, performing particularly well on image-related tasks and presenting a trade-off on certain tasks like Pathfinder. Overall, CAST represents a practical, efficient transformer variant that maintains core attention capabilities while enabling scalable long-range sequence modeling, with future work including decoder adaptations and further clustering optimizations.
Abstract
The Transformer architecture has shown to be a powerful tool for a wide range of tasks. It is based on the self-attention mechanism, which is an inherently computationally expensive operation with quadratic computational complexity: memory usage and compute time increase quadratically with the length of the input sequences, thus limiting the application of Transformers. In this work, we propose a novel Clustering self-Attention mechanism using Surrogate Tokens (CAST), to optimize the attention computation and achieve efficient transformers. CAST utilizes learnable surrogate tokens to construct a cluster affinity matrix, used to cluster the input sequence and generate novel cluster summaries. The self-attention from within each cluster is then combined with the cluster summaries of other clusters, enabling information flow across the entire input sequence. CAST improves efficiency by reducing the complexity from $O(N^2)$ to $O(αN)$ where N is the sequence length, and α is constant according to the number of clusters and samples per cluster. We show that CAST performs better than or comparable to the baseline Transformers on long-range sequence modeling tasks, while also achieving higher results on time and memory efficiency than other efficient transformers.
