SYNTHESIS NOTE
TopicsRAGthis note

When should language models retrieve external knowledge versus use internal knowledge?

Can we model retrieval as a per-step decision problem rather than an always-on strategy? This matters because unnecessary retrieval adds noise and latency without improving accuracy.

Synthesis note · 2026-02-22 · sourced from RAG
RAG How do you navigate synthesis across fragmented research topics?

Retrieval augmentation is not always helpful. Some queries require external knowledge that the LLM does not have. Others require reasoning over knowledge the LLM already contains. For the second type, retrieval adds noise: potentially irrelevant retrieved documents compete with the model's correct internal representations, increasing latency without improving accuracy.

DeepRAG formalizes this as a Markov Decision Process. At each reasoning step, the model makes a binary decision: retrieve external knowledge or rely on parametric knowledge. The state is the current question and available information; the action is the decision; the reward is downstream answer accuracy. The model learns a policy for when to retrieve.

The MDP framing makes explicit what standard RAG leaves implicit: retrieval is a resource with a cost, not a free improvement. Always-retrieve is a degenerate policy that ignores the cost. Never-retrieve is a degenerate policy that ignores the benefit. Optimal policy adapts to step-level information needs.

The 21.99% accuracy improvement comes from two sources: better answers when retrieval is used (because the model retrieves more targeted subqueries), and reduced noise when retrieval is not used (because the model stops disrupting correct parametric reasoning with irrelevant retrieved content).

The connection to Does reasoning fine-tuning make models worse at declining to answer?: both findings highlight that LLMs trained with outcome rewards learn to always engage (always answer, always retrieve) rather than calibrating engagement to actual knowledge state. The MDP explicitly rewires this — abstention (use parametric knowledge) becomes an active and rewarded choice.

Inquiring lines that read this note 67

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 should dialogue systems represent uncertainty from noisy speech input? What memory architectures best support persistent reasoning across extended interactions? When should retrieval-augmented systems decide to fetch new information? How should inference compute be adaptively allocated based on prompt difficulty? How should retrieval systems optimize for multi-step reasoning during inference? How should iterative research systems allocate reasoning per search step? How do training priors constrain what context information can override? How does memorization interact with learning and generalization? Do language models learn genuine linguistic structure or just surface patterns? How do transformer attention mechanisms implement memory and algorithmic functions? Why do semantic similarity and task relevance diverge in vector embeddings? How do neural networks separate factual knowledge from reasoning abilities? Why do continual learning scenarios trigger catastrophic forgetting and interference? What makes specific clarifying questions more effective than generic ones? Why do reasoning models fail at systematic problem-solving and search? How does sequence length affect sparsity tolerance in models? Can next-token prediction alone produce genuine language understanding? Does parallel reasoning outperform sequential thinking under fixed compute budgets? How do knowledge injection methods compare across cost and effectiveness? Why does self-revision increase model confidence while degrading accuracy? Why do readers trust citations and complexity regardless of accuracy? Why does finetuning cause catastrophic forgetting of model capabilities? Does externalizing cognitive work and state improve agent reliability?

Related concepts in this collection 8

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

Concept map
18 direct connections · 174 in 2-hop network ·dense 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

retrieval-augmented reasoning as Markov Decision Process enables per-step parametric versus external knowledge switching