SYNTHESIS NOTE

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

Explores whether training a dedicated memory model alongside a frozen LLM could inject new knowledge while avoiding the retrieval costs of RAG and the catastrophic forgetting risks of fine-tuning.

Synthesis note · 2026-06-27 · sourced from Memory

The standard taxonomy of getting fresh knowledge into a frozen LLM offers three doors: non-parametric retrieval (RAG), parametric fine-tuning, and latent memory. MeMo proposes a fourth — encode the new corpus into a separate, trainable MEMORY model that the frozen LLM queries, with the base LLM untouched. This is not retrieval (no datastore search at inference) and not fine-tuning (the LLM's weights never move), which lets it sidestep the failure modes of each: it captures cross-document relationships RAG's chunk-level retrieval misses, it avoids the catastrophic forgetting parametric updates risk, and because it needs neither weights nor output logits it stays plug-and-play with closed proprietary models.

The load-bearing property is that inference-time retrieval cost is independent of corpus size. RAG's nearest-neighbor search and context budget scale with the store; MeMo amortizes the corpus into the memory model up front, then decomposes complex queries into targeted sub-queries at inference. This places it squarely alongside Can retrieval knowledge compress into a tiny parametric model? — both replace search with a trained decoder — and it extends How do knowledge injection methods trade off flexibility and cost? by populating that taxonomy's high-training-cost / fast-inference quadrant. It is also the document-knowledge analogue of Can a single model replace retrieval for long-term conversation memory?, which makes the same move for conversation rather than corpora.

The honest cost is that the bottleneck is relocated, not removed. The memory model must be trained on a synthesized reflection-QA dataset, so the price is training cost and — the paper concedes — the memory model's own capacity to scale with corpus size. Therefore MeMo is not a universal win over RAG: it trades RAG's per-query latency and weak cross-document reasoning for an up-front training burden and a capacity ceiling, which means it pays off precisely when a corpus is queried many times and demands multi-hop reasoning, and loses when the corpus is large, volatile, or rarely hit.

Inquiring lines that use this note as a source 1

This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.

Related concepts in this collection 3

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

Concept map
13 direct connections · 114 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

training a separate memory model is a fourth knowledge-injection path — it decouples corpus growth from inference cost without touching the LLM's weights or logits