When an AI's benchmark score improves, how much is it actually getting smarter — and how much is it just memorizing the test?
How much improvement comes from caching versus actual capability gain?
This explores a recurring measurement problem: when a system looks like it got better, how much of that is real capability versus cheaper reuse (cached reads, memorized answers, stored context) that only mimics improvement.
This explores a recurring measurement problem: when a system looks like it got better, how much of the gain is genuine capability versus something cheaper that only resembles it — cached reads, memorized answers, or stored context. The corpus treats 'caching' in two distinct senses, and the honest answer is that they have to be measured separately or you'll mistake one for the other.
The cleanest cut comes from RLVR benchmarks. On contaminated math sets, a model can reconstruct half the test from partial prompts and still score zero on a clean post-release benchmark — the 'gain' was memorization, not reasoning Does RLVR success on math benchmarks reflect genuine reasoning improvement?. But the sharpest note argues these are two different phenomena at two different measurement levels: RL training can genuinely activate reasoning behavior *while* the benchmark number is simultaneously inflated by memorized data — both true at once, without contradiction Can genuine reasoning activation coexist with contaminated benchmarks?. So the answer to 'how much is caching vs capability' isn't a single ratio; it's that you need one instrument for the behavior and a different, uncontaminated one for the score, or you conflate them.
In the cost sense, 'caching' dominates far more than intuition suggests. A 115-day agent study found 82.9% of all tokens were cache reads — which sounds like the system is doing almost no real work, until you notice the right denominator has changed Do persistent agents really cost less per token?. When context persists and reuses, the meaningful unit stops being tokens and becomes completed artifacts. The high cache ratio isn't fake capability; it's the same capability measured against the wrong yardstick. Similarly, on mobile hardware, recomputing a transformer block twice beats fetching separate weights — a 'no new capability' trick that still buys accuracy because the bottleneck was memory movement, not compute Does recomputing weights cost less than moving them on mobile?.
The deeper lesson from the memory-systems work is that more stored/cached material is not the same as more capability, and can actively subtract from it. Piling up stored context without curation increases staleness and contamination, making performance worse, not better — the real constraint is deciding what to discard What makes agent memory quality better than storage capacity?. Adaptive memory that prunes and rewires based on execution feedback outperforms fixed retrieval precisely because raw accumulation interferes Should agent memory adapt dynamically based on execution feedback?. So 'caching' can even be negative-capability if it's hoarding.
The thing you didn't know you wanted to know: the most reliable way to convert reuse *into* genuine capability is to bake it into training rather than leave it as runtime cache. Thinking-augmented pretraining takes reasoning traces — the kind of thing you might otherwise cache and replay — and folds them into the data, yielding 3x data efficiency and durable benchmark gains rather than a lookup shortcut Can training data augmentation match test-time compute scaling benefits?. The difference between 'caching' and 'capability' often comes down to whether the reused signal lives in a store you query or in weights you've actually changed.
Sources 7 notes
Qwen2.5-Math-7B reconstructs 54.6% of MATH-500 from partial prompts but scores 0.0% on post-release LiveMathBench, revealing dataset contamination. On clean benchmarks, only correct rewards improve performance; random and inverse rewards fail or degrade reasoning ability.
RLVR activates genuine reasoning patterns through RL training while benchmark improvements may reflect data memorization on contaminated datasets. These operate at different measurement levels and can coexist without contradiction.
A 115-day case study found 82.9% of tokens were cache reads. When context persists and reuses, the meaningful cost denominator becomes completed artifacts, not individual tokens.
MobileLLM shows that on memory-bound mobile hardware, sharing weights between adjacent transformer blocks by recomputing one block twice uses less latency than fetching separate weights, gaining accuracy with no parameter increase.
Research shows memory's real constraint is deciding what to store and discard, not capacity. More stored material without curation increases staleness, contamination, and over-generalization—making performance worse, not better.
Show all 7 sources
FluxMem demonstrates that adaptive memory topology—where links form, refine, and consolidate based on closed-loop execution feedback—consistently reaches state-of-the-art across three distinct benchmarks. Dynamic connectivity outperforms fixed retrieval by aligning abstraction and eliminating interference.
Augmenting pretraining data with LLM-generated reasoning traces improves data efficiency 3x and reasoning benchmark performance 10%+ for 3B models. Harder tokens automatically receive longer traces, creating a natural compute-allocation mechanism analogous to test-time scaling.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- From Model Scaling to System Scaling: Scaling the Harness in Agentic AI
- GateMem: Benchmarking Memory Governance in Multi-Principal Shared-Memory Agents
- Spurious Rewards: Rethinking Training Signals in RLVR
- The Invisible Leash: Why RLVR May Not Escape Its Origin
- Local Coherence or Global Validity? Investigating RLVR Traces in Math Domains
- Are We Ready For An Agent-Native Memory System?
- Useful Memories Become Faulty When Continuously Updated by LLMs
- The Landscape of Agentic Reinforcement Learning for LLMs: A Survey