INQUIRING LINE

What limits the capacity of context-based fast adaptation channels?

This explores the limits of adapting a model on the fly through its context window or prompt — the 'fast' channel of learning that doesn't touch weights — and why that channel can't carry unlimited load.


This reads the question as being about the *fast* half of adaptation: lessons a model absorbs through text it's given at inference (prompts, in-context examples, stored reflections) rather than through weight updates. The corpus frames this as one channel in a two-channel system, and it turns out each channel has a different ceiling. The clearest articulation comes from Fast-Slow Training, which deliberately routes task-specific lessons into optimized prompts while barely touching parameters — and finds this both faster and far less prone to catastrophic forgetting Can splitting adaptation into two channels reduce forgetting?. The implication is that forgetting is a *misallocation* problem: push the wrong kind of learning through the fast channel and you waste it. So the first limit is fit — the fast channel is for situational, textual lessons, not durable skill.

The second limit is the one most people miss: it's not storage, it's compute. One striking result reframes the long-context 'bottleneck' entirely — the constraint isn't how many tokens you can hold in memory, but the compute needed to *consolidate* evicted context into fast weights during an offline 'sleep' phase, and performance keeps improving the more consolidation passes you run Is long-context bottleneck really about memory or compute?. In other words, raw context capacity is cheap; turning context into something the model can actually act on is the expensive, rate-limiting step. That's why simply extending the window — even to millions of tokens, as architectures like Titans do by separating attention from a compressed neural memory that prioritizes surprising tokens — doesn't dissolve the problem; it just moves where the work happens Can neural memory modules scale language models beyond attention limits?.

The third limit is the most humbling: even when the information *is* in the context, the model may ignore it. When parametric knowledge learned in pretraining is strongly held, it overrides whatever the prompt says — and no amount of textual prompting fixes this; you need causal intervention in the model's internal representations Why do language models ignore information in their context?. So the fast channel's bandwidth is throttled by the slow channel it's supposed to complement. Context can suggest, but it can't always overrule what the weights already 'believe.'

What's interesting is what the corpus says *works within* these limits. Reflexion shows the fast channel is most reliable when the feedback is unambiguous — a binary success/failure signal stored as verbal reflection, kept uncompressed, lets agents improve without touching weights, because the clear signal blocks the model from rationalizing Can agents learn from failure without updating their weights?. And uncertainty estimation shows the model's own calibrated self-knowledge is often a better trigger for *when* to reach outside its context than elaborate retrieval heuristics Can simple uncertainty estimates beat complex adaptive retrieval?. The pattern across all of these: the fast channel is bounded by signal clarity and consolidation compute, not by token count.

The thing you didn't know you wanted to know: the field is converging on a division of labor. Fast textual context handles the situational and reversible; slow weights handle the durable. Methods like proxy-tuning even adapt behavior at decoding time precisely to avoid corrupting the knowledge stored in lower layers Can decoding-time tuning preserve knowledge better than weight fine-tuning?. The capacity limit on fast adaptation, then, isn't a flaw to engineer away — it's the price of keeping the two channels from interfering with each other.


Sources 7 notes

Can splitting adaptation into two channels reduce forgetting?

Fast-Slow Training routes task-specific lessons into optimized prompts while keeping parameter updates minimal, reaching equivalent performance 1.4–3x faster with substantially less catastrophic forgetting and plasticity loss, demonstrating that forgetting is a misallocation problem rather than an inherent cost.

Is long-context bottleneck really about memory or compute?

Research shows the bottleneck is not memory capacity but the compute required to consolidate evicted context into fast weights during offline sleep phases. Performance improves with more consolidation passes, following a test-time scaling pattern on harder reasoning tasks.

Can neural memory modules scale language models beyond attention limits?

Titans architecture separates attention (short-term, quadratic) from neural memory (long-term, compressed), prioritizing surprising tokens for storage. The model outperforms standard Transformers and linear RNNs across tasks while scaling to 2M+ token contexts without quadratic penalties.

Why do language models ignore information in their context?

Research demonstrates that LMs generate outputs inconsistent with their context because parametric knowledge from training dominates over in-context information. Textual prompting alone cannot override strong priors; causal intervention in representations is required.

Can agents learn from failure without updating their weights?

Reflexion demonstrates that unambiguous environmental feedback (success/failure) enables agents to write useful self-diagnoses and improve across episodes without parameter updates. The binary signal prevents rationalization, and keeping reflections uncompressed preserves their usability.

Can simple uncertainty estimates beat complex adaptive retrieval?

Calibrated token-probability uncertainty consistently beats multi-call adaptive retrieval on single-hop tasks and matches performance on multi-hop, using a fraction of the LM and retriever calls. The model's self-knowledge proves more reliable than external heuristics for deciding when to retrieve.

Can decoding-time tuning preserve knowledge better than weight fine-tuning?

Proxy-tuning closes 88-91% of the alignment gap while surpassing direct fine-tuning on knowledge tasks by leaving base model weights untouched. Direct fine-tuning corrupts knowledge storage in lower layers, whereas proxy-tuning applies distributional shifts that primarily affect reasoning and style.

Next inquiring lines