SYNTHESIS NOTE
TopicsLLM Architecturethis note

Can neural memory modules scale language models beyond attention limits?

Can separating short-term attention from adaptive long-term memory allow models to efficiently handle context windows exceeding 2M tokens while maintaining competitive performance?

Synthesis note · 2026-02-22 · sourced from LLM Architecture
How should we spend compute at inference time? What kind of thing is an LLM really? How do you navigate synthesis across fragmented research topics?

Titans (2501.00663) introduces a neural long-term memory module that addresses a fundamental contradiction in linear recurrent models: they are designed for efficiency on long contexts, but long contexts cannot be properly compressed into small fixed-size states.

The architectural insight is that attention and memory serve fundamentally different functions. Attention operates as short-term memory — accurate direct dependency modeling within the current context window, but quadratic cost limits its reach. Neural memory operates as long-term memory — compressed and persistent, memorizing data that is surprising or close to surprising tokens. The memory update mechanism considers the proportion of memory size to data surprise, resulting in adaptive memory management.

Three integration variants are proposed: memory as context (attending to memory alongside current context), memory as gating (memory modulates attention output), and memory as a layer (memory replaces some attention layers). Each variant trades off between integration depth and computational overhead.

The results establish that Titans outperform both standard Transformers (with the same context window) and modern linear recurrent models across language modeling, common-sense reasoning, genomics, and time series. Critically, Titans scale to context windows larger than 2M tokens while showing competitive performance with Transformers that use the entire context — the long-context problem is addressed without the quadratic penalty. The persistent nature of the memory module makes it a natural substrate for Can models precompute answers before users ask questions? — the memory can store precomputed inferences between interactions, and sleep-time processing can populate the memory with anticipated query-relevant information.

Since Can models reason without generating visible thinking tokens?, the Titans architecture offers a complementary path: rather than scaling reasoning depth through recurrent computation, it scales memory breadth through adaptive memorization. Both bypass the limitations of standard attention but along different architectural dimensions.

Miras unifying framework (2504.13173): The "It's All Connected" paper reconceptualizes Transformers, Titans, and modern linear recurrent models as associative memory modules that learn a mapping of keys to values using an internal objective — termed "attentional bias." The paper observes that most existing sequence models use either dot-product similarity or ℓ2 regression objectives as their attentional bias. Miras provides a general framework with four design choices: (i) associative memory architecture, (ii) attentional bias objective, (iii) retention gate, and (iv) memory learning algorithm. Forgetting mechanisms are reinterpreted as retention regularization — providing a principled basis for forget gates across architectures. Three novel sequence models — Moneta, Yaad, and Memora — go beyond existing linear RNNs while maintaining fast parallelizable training. Different Miras configurations yield models with varying strengths: some excel at language modeling, others at commonsense reasoning or recall-intensive tasks. This generalizes the Titans insight: the attention-as-short-term/memory-as-long-term distinction is one instance of a broader design space where attentional bias objective and retention mechanism can be independently varied.

Inquiring lines that read this note 133

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How do interface design choices shape consciousness attribution? How can language models sustain linguistic synchrony and intersubjectivity during dialogue? How do transformer attention mechanisms implement memory and algorithmic functions? Do language models understand semantics or rely on pattern matching? What role does compression play in language model capability and generalization? What memory architectures best support persistent reasoning across extended interactions? Why do language models reinforce false assumptions instead of correcting them? What structural advantages do diffusion language models offer over autoregressive methods? What articulatory information do speech signals carry that text cannot? What structural biases does transformer attention create in language model outputs? How does memorization interact with learning and generalization? Does recurrence enable reasoning capabilities that fixed-depth transformers cannot achieve? How should retrieval systems optimize for multi-step reasoning during inference? Why do continual learning scenarios trigger catastrophic forgetting and interference? How should inference compute be adaptively allocated based on prompt difficulty? Do language models learn genuine linguistic structure or just surface patterns? Can next-token prediction alone produce genuine language understanding? How do training priors constrain what context information can override? When does architectural design matter more than raw model capacity? Do language model representations contain causally steerable task-specific features? How does sequence length affect sparsity tolerance in models? Why do benchmark improvements fail to reflect actual reasoning quality? What critical LLM failures do standard benchmarks hide? Why does consolidated memory sometimes degrade agent performance? Why does finetuning cause catastrophic forgetting of model capabilities? Why do reasoning models fail at systematic problem-solving and search? Can inference-time compute substitute for scaling up model parameters? Do autonomous architecture discoveries follow predictable scaling laws? How should personalization be implemented to improve AI assistant effectiveness? Can prompting inject entirely new knowledge into language models? What pretraining choices and baseline capability constrain reinforcement learning gains? How should dialogue recommender systems manage conversation history and state? How should agents balance memory condensation to optimize context efficiency? How do knowledge injection methods compare across cost and effectiveness?

Related concepts in this collection 6

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 108 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

neural memory modules that adaptively memorize surprising tokens complement attention as long-term vs short-term memory — scaling to 2M+ context