Home › Blog › Memory Wars
💾

Memory Wars:
MemOS, Continual Learning, and the Race Nobody's Won

Nine posts in this series have named memory and continual learning as the most underexplored lever on the AGI stack. None of them explained the actual mechanics. This is that post — what catastrophic forgetting really is, three genuinely different research approaches trying to solve it, and what winning would actually look like.

FL
FrontierAGI Team
Research Memory AGI
How to read this post. This is a technical deep dive extending the "underexplored lever" thread running through The Six Levers, The Capability Stack, Mapped, and The Levers Nobody's Pulled Yet. Technical claims are sourced from published research (MemOS, MeMo, and related arXiv papers) gathered the week of September 8, 2026; framing and synthesis are editorial.

1. 🧭 The Lever Everyone Names, Nobody's Pulled

Across the six lab-lineage posts in this series, one column stayed weakest no matter which company we examined: memory and continual learning. Ilya Sutskever built an entire company, valued at $32B with zero shipped products, explicitly betting on it. Demis Hassabis has named it publicly as DeepMind's next real target. And every "1M-token context window" headline from Gemini 1.5 to Claude Fable 5.1 got cited in this series as adjacent to, but not actually solving, this layer. It's time to explain why — what the actual technical obstacle is, what's genuinely being tried against it, and what "solved" would even mean.

6 of 6
Lineages in this series where Memory scored weakest or near-weakest on the capability-stack matrix
26%
Reported performance jump from MeMo's memory-as-a-model approach — teams upgrading an LLM's knowledge without retraining it
MemCubes
MemOS's basic memory unit — encapsulating content and metadata across plaintext, activation, and parameter-level memory types
$32B / $0
SSI's valuation vs. shipped revenue — the market's own pricing of how hard this problem is judged to be

2. 🧱 Why This Layer Is Genuinely Different From "Long Context"

Three things get conflated under "AI memory," and distinguishing them is the whole point of this post:

📏 Long Context
A bigger context window (Gemini 1.5's 1-2M tokens, Claude Fable 5.1's 1M) lets a model attend to more text within a single session — but it's forgotten the moment the session ends, and cost/latency scale with window size. This is the layer every headline "memory" claim from our lab-lineage posts actually refers to.
🔍 Retrieval-Augmented Generation
The model looks up external documents/records at inference time and includes them in its prompt. This persists across sessions, but the model itself never actually learns anything — it's a lookup, not an update. RAG is a real, useful workaround, but it's not continual learning.
🧠 True Continual Learning
The model's own internal state — weights or a persistent structured memory tied to them — durably changes from experience, without a full retrain, and without erasing what it already knew. This is the actually-unsolved layer, and the subject of the rest of this post.

3. 💥 The Core Problem: Catastrophic Forgetting

Catastrophic forgetting is not a new problem invented by LLMs — it's a known obstacle in neural network research for decades: when you update a trained network's weights on new data, the update can overwrite the weight patterns that encoded old knowledge, because there's no built-in mechanism protecting what was already learned. A human who reads a new book doesn't forget how to drive; a naively fine-tuned neural network often does something close to the equivalent. At frontier LLM scale, this has gotten harder rather than easier, because the amount of "old knowledge" packed into a single set of weights is enormous, and the compute cost of any full retrain to safely re-incorporate it is exactly the pre-training-scale expense our Six Levers post flagged as increasingly unsustainable. Full retraining sidesteps forgetting by starting over — but that's not continual learning, it's just periodic re-scaling, and it inherits every cost problem of Lever 1.

The reason this lever has stayed untouched isn't that nobody's thought of it — it's that the obvious fix (just retrain more often) is exactly the expensive, saturating lever the rest of this series has already ruled out as unsustainable.

4. 🗂️ Approach 1: Memory-as-Infrastructure

MemOS: A Memory OS for AI Systems
Structured, Separate Layer
MemOS treats memory as a dedicated operating-system layer sitting outside the model's core weights, rather than trying to bake new knowledge directly into them. Its basic unit, the MemCube, encapsulates both memory content and metadata (provenance, versioning) and unifies three distinct memory types — plaintext, activation-based, and parameter-level — under one system. MemCubes can be composed, migrated, and fused over time, letting memory transition flexibly between "just a retrievable fact" and "something closer to a learned parameter," bridging retrieval-style memory with actual parameter-based learning. Crucially, this sidesteps catastrophic forgetting entirely by never overwriting the base model's weights in the first place — new knowledge lives in the MemOS layer, controllable and auditable, rather than fused irreversibly into the network.
Tradeoff: this is architecturally the safest and most auditable approach (a real advantage for the safety angle in Section 10), but it's an open question whether memory that never truly becomes "part of" the model can produce the same depth of integrated reasoning that weight-level learning theoretically could.
MeMo: Memory as a Model
Plug-and-Play, Model-Agnostic
A related but distinct approach: MeMo encodes new knowledge into a dedicated, separate memory model while keeping the underlying LLM's parameters completely unchanged. Because it never touches the base model's weights or requires access to its output logits, it works as a plug-and-play layer with both open-weight and proprietary closed-source models alike — a meaningful practical advantage. Reported results show performance jumps of roughly 26% for teams upgrading an LLM's effective knowledge this way, and its retrieval cost stays independent of how much has been memorized, unlike RAG approaches that get more expensive as the corpus grows.
Tradeoff: works well for factual/knowledge-style updates; less clear whether it can capture the kind of procedural, "gets better at doing the task" learning that would be needed for genuine skill improvement over time, not just knowledge recall.

5. 🔁 Approach 2: Architectural — Recurrent/Looped Models

A separate research line, referenced in our Six Levers post, scales intelligence by increasing internal computation — recurrent depth or looped transformer layers — rather than generating more output tokens or retrieving more documents. The pitch here is that "thinking time" itself becomes a distinct axis from both pre-training scale and simple test-time compute (longer chain-of-thought), and that this internal-loop architecture is more naturally suited to incorporating new information into a persistent internal state across a deployment's lifetime, rather than treating every session as starting from the same frozen weights. This is the least product-mature of the three approaches covered here — genuinely early-stage research, not close to a shipped system — but it's the one most directly aimed at making continual learning a first-class architectural property rather than a bolt-on layer.

6. 🧪 Approach 3: Weight-Level Continual Learning and Test-Time Training

The hardest and most direct approach: actually updating a model's own weights after deployment, from live experience, without a full retraining run. Our Six Levers post described current research as split into "two silos" — one line rewrites the scaffold/harness while holding weights fixed (Section 4-5 approaches above are largely in this silo); the other updates the model's own weights through test-time training while holding the harness fixed. Test-time training research directly confronts catastrophic forgetting head-on: a key evaluation method tests whether a model that has just memorized an entire book, via test-time weight updates, has lost general capability — measured concretely via performance on broad benchmarks like MMLU after the update. This is the approach with the highest theoretical ceiling (genuine, integrated, weight-level learning) and also the hardest to make safe, auditable, and reliable — which is exactly why emerging research is starting to combine this silo with the scaffold-based approaches above, training task-specific agent weights jointly with structured memory updates, rather than picking one silo exclusively.

7. 🎯 What "Solved" Would Actually Look Like

📈
Measurable Improvement Over Weeks
Without a retrain
A model working with a specific user or team gets demonstrably better at that team's actual work over weeks of use — not because of a new model version, but because it learned from the interactions themselves.
🛡️
No General-Capability Regression
The forgetting test
Broad benchmark performance (MMLU-style general capability) stays intact after the update — the exact test test-time-training researchers already use to catch forgetting before it ships.
🔍
Auditable, Not Opaque
Ties to Section 10
Whatever changed should be inspectable — closer to MemOS's structured MemCube provenance tracking than an opaque weight diff nobody can explain after the fact.
💰
Cheaper Than Retraining
The actual bar
If the update costs anywhere near a full pre-training run, it hasn't actually solved the problem — it's just found a smaller version of the same expensive lever.

8. 🏛️ Who's Actually Working on It

Covered in full in our AGI Startups to Watch post: SSI remains the best-funded pure bet on this lever ($32B valuation, $8B raised, zero shipped products, built explicitly around Sutskever's "age of research" thesis that continual learning — not more scale — is the next real unlock). Google DeepMind has named continual learning, memory architectures, and world models as explicit next-generation priorities, backed by existing research depth most competitors don't have. The MemOS and MeMo research lines represent a more distributed, academic/open-research effort rather than a single named company. And Goodfire's interpretability work, while not a memory project itself, is directly relevant to the safety angle below — any system that updates its own weights needs exactly the kind of auditing tooling Goodfire is building.

9. ⏱️ Realistic Timeline: Workarounds vs. Genuine Breakthrough

Next 12 Months
Structured-Memory Workarounds Ship
MemOS/MeMo-style plug-and-play memory layers are the realistic near-term deliverable — genuinely useful, shippable now, but explicitly workarounds rather than solving weight-level continual learning, consistent with the "builder" advice from our Capability Stack post.
1–3 Years
Test-Time Training Matures for Narrow Domains
Expect weight-level continual learning to become viable first in narrow, well-scoped domains (a single team's codebase, a specific knowledge area) where forgetting can be tightly monitored, before any general-purpose version is trusted.
3+ Years / Uncertain
General, Safe, Auditable Continual Learning
A genuinely general-purpose version — the kind SSI is explicitly betting on — remains an open research question with no committed timeline, sitting inside the same uncertainty window as Dario Amodei's own 1-3 year "powerful AI" prediction.

10. ⚠️ The Safety Angle: Why Memory and Safe Autonomy Are Linked

This isn't a separate concern from the rest of this series' safety thread — it's the same problem in a harder form. The GPT-6 Astra CoT-monitorability dissent (covered in our Astra/Claude/Gemini post) was about researchers losing the ability to audit a model's reasoning in a single session. A system that updates its own weights continuously raises the same question at a deeper level: if a model can change itself based on experience, and nobody can fully audit what changed or why, that's a harder version of the exact monitorability problem OpenAI's own safety team was already worried about. This is precisely why MemOS's structured, provenance-tracked approach has a real safety advantage over pure weight-level test-time training — it's not just an engineering choice, it's the difference between an auditable memory update and an opaque one. Any lab or startup pursuing this lever seriously needs to solve it alongside interpretability, not after it.

11. 🔮 What Cascades Open If This Breaks

📅
Long-Horizon Planning
A model that can accumulate durable, task-specific experience over weeks would directly extend the autonomous-task-duration trendline (14h30m → 24h in our lab-lineage posts) toward genuinely multi-week operation, not just longer single sessions.
🪞
Metacognition
Calibrated self-awareness plausibly depends partly on a model being able to track and update its own confidence based on past outcomes — something a frozen-weights model has no mechanism to do at all today.
🏆
A Genuine Competitive Reordering
Per our Startups-to-Watch post, this remains the highest-variance bet in the field — whichever lab or startup gets a safe, general version working first would have a real claim to having closed the single gap every other lineage in this series left open.

12. 🧭 Verdict

🎯 The Bottom Line
Nine posts named this lever without explaining it — that gap is now closed. Catastrophic forgetting is the real, decades-old technical obstacle underneath every "AI memory" headline, and long-context windows and RAG, however useful, are workarounds that leave it untouched. Three genuinely different approaches are being tried: MemOS/MeMo's structured, auditable memory-as-infrastructure layer (safest, shippable now, ceiling unclear); architectural recurrent/looped designs treating "thinking time" as a native property (earliest-stage, highest conceptual ambition); and direct weight-level test-time training (highest theoretical ceiling, hardest to make safe). None of them is close to a general-purpose solution, and the safety stakes of getting there scale with the ambition of the approach — a model that can genuinely update itself is a harder version of the exact CoT-monitorability problem this series already flagged as unsolved at the far easier layer of single-session reasoning. SSI's $32B bet on this exact problem, with zero products to show for it two years in, isn't evidence the lever is a dead end. It's the most expensive confirmation yet of just how hard it actually is.