INQUIRING LINE

Ask an AI about something that happened last week, and is its confident answer memory, or a convincing guess?

How much do LLMs rely on recent training data when events are days old?

This explores what an LLM has to work with when asked about something that happened days ago: how much it draws on its training data, and what happens when that data doesn't cover the event.


This explores what an LLM has to work with when asked about something that happened days ago, and how much it leans on recently seen training data versus something else. The corpus has no note that tests days-old events directly. It does have evidence on both ends of the question. Models lean heavily on what they've seen, and on material they haven't seen they're much weaker than they look.

The clearest evidence is about the cutoff itself. LLMs perform better on datasets released before their training cutoff than on ones released after, and on tasks that couldn't have been in training they rarely beat simple baselines. That suggests much of what looks like skill is memory of seen examples (How much of LLM few-shot ability comes from training data?). For a days-old event, the model has no examples to fall back on, so a fluent answer is not recall.

Seen data is also weighted toward the recent. A Supreme Court overruling benchmark found models do worse on historical cases than modern ones, because recent cases are over-represented in the training corpus and older precedent gets shallower representation (Why do language models struggle with historical legal cases?). That recency tilt is measured in years, not days. My extension, which the corpus doesn't test, is that events from just before the cutoff are probably thin too, since the world hasn't finished writing about them yet.

When the model can't supply fresh facts, the fixes in the corpus all keep the model frozen and put the new material somewhere else. One system pairs a timestamped knowledge base with structured self-dialogue, so it can notice when a new fact contradicts an old one. It still needs a human to resolve the conflict, because the right answer depends on context outside the system (Can LLMs learn reliably at test time without human oversight?). An agent built on episodic memory reached 87.88% on GAIA validation without changing any model weights (Can agents learn continuously from experience without updating weights?). A separate memory model can inject new knowledge into a frozen proprietary LLM, at the cost of up-front training and limited capacity (Can a separate memory model inject knowledge without touching the LLM?). A third approach folds in-context knowledge into the weights during an offline "sleep" phase, though that is consolidation, not instant freshness (Can models consolidate memories during offline sleep phases?).

So for days-old events the answer is close to "not at all", and freshness has to come from outside the model. One caution comes from my reading of the notes, not from a test. Some work has LLMs stand in for a search engine using only internal knowledge, which is cheap for agent training (Can LLMs replace search engines during agent training?). Because those results come from what the model already knows, they can't carry news it hasn't seen.


Sources 7 notes

How much of LLM few-shot ability comes from training data?

LLMs perform better on datasets released before their training cutoff than after, confirmed by membership inference and data inspection. On truly uncontaminated tasks, LLMs rarely beat simple baselines, suggesting few-shot learning may be largely an illusion from having seen training examples during pretraining.

Why do language models struggle with historical legal cases?

Supreme Court overruling benchmark (236 pairs) reveals era sensitivity: models perform worse on historical cases than modern ones. Root cause is training corpus over-representation of recent cases, creating shallower representations of older precedent.

Can LLMs learn reliably at test time without human oversight?

ARIA demonstrates that LLMs can adapt during inference through three integrated components: structured self-dialogue for uncertainty assessment, timestamped knowledge bases for conflict detection, and human-mediated resolution queries. Autonomous systems fail at reconciling contradictory rules because the correct choice depends on context outside the system.

Can agents learn continuously from experience without updating weights?

AgentFly formalizes agent learning as a Memory-augmented MDP with three memory modules (case, subtask, tool) that enable credit assignment and policy improvement entirely through memory operations. The approach achieved 87.88% on GAIA validation without modifying LLM parameters.

Can a separate memory model inject knowledge without touching the LLM?

MeMo trains a dedicated memory model to encode new knowledge, eliminating inference-time search costs that scale with corpus size. It avoids fine-tuning risks and works with frozen proprietary models, but trades this for up-front training cost and capacity limits.

Show all 7 sources
Can models consolidate memories during offline sleep phases?

The Sleep paradigm uses Knowledge Seeding (distilling smaller networks into larger ones) and Dreaming (RL-generated rehearsal) to consolidate in-context knowledge into weights without forgetting. Gains appear in long-context understanding, few-shot reasoning, and continual learning.

Can LLMs replace search engines during agent training?

ZeroSearch and SSRL demonstrate that LLMs can generate relevant documents and search results from internal knowledge, with 14B simulators matching or exceeding real search engines. Curriculum degradation and test-time scaling optimize this approach for training without API costs.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.