Memory Caching: RNNs with Growing Memory
Ali Behrouz ⋅ Zeman Li ⋅ Yuan Deng ⋅ Peilin Zhong ⋅ Meisam Razaviyayn ⋅ Vahab Mirrokni
Abstract
Transformers have been established as the de-facto backbones for most recent advances in sequence modeling, mainly due to their growing memory capacity that scales with the context length. While plausible for retrieval tasks, it causes quadratic complexity and so has motivated recent studies to explore viable subquadratic recurrent alternatives. Despite showing promising preliminary results in diverse tasks, such recurrent architectures underperform Transformers in recall-intensive tasks, {often attributed to their fixed-size memory. In this paper, we introduce Memory Caching (MC), a simple yet effective technique that enhances recurrent models by caching checkpoints of their memory states (a.k.a. hidden states). Memory Caching allows the effective memory capacity of RNNs to grow with sequence length, offering a flexible trade-off that interpolates between the fixed memory ( $O(L)$ complexity) of RNNs and the growing memory ( $O(L^2)$ complexity) of Transformers. We propose four variants of MC, including gated aggregation and sparse selective mechanisms, and discuss their implications on both linear and deep memory modules.} Our experimental results on language modeling, and long-context understanding tasks show that MC enhances the performance of recurrent models, supporting its effectiveness. In in-context recall tasks, our results indicate that while Transformers still achieve the best performance, our MC variants show competitive performance, close the gap with Transformers, and performs better than state-of-the-art recurrent models.
Lay Summary
We have designed a new method that allows the memory of Large Language Models (LLMs) growth as their context growth. For more than a decade, machine learning models are either based on architectures that their memory growths linearly proportional to the context, or has fixed size. In this work, we suggest caching the memory of an LLM over different parts of the context and use them to directly retain the memories/information from the long past. Our experiments support the design of our method in enhancing the long-term memory of LLMs.
Successful Page Load