When an AI keeps learning new jobs and forgets old ones, is that one flaw or several different ones?
What are the distinct sources of catastrophic forgetting in sequential fine-tuning?
This explores whether catastrophic forgetting in sequential fine-tuning is one problem or several, and what each distinct cause looks like inside the model.
This explores whether catastrophic forgetting in sequential fine-tuning is one problem or several. The corpus has no tidy taxonomy, but it says clearly that it's several. One study fine-tuned models on 100 tasks in a row and found that no single mechanism kept strong retention. The authors' hypothesis is that different mechanisms target different sources of forgetting, so combining complementary ones should beat any one fix Can any single continual learning method prevent forgetting?. The sources show up in what each successful workaround is aimed at.
The first source is tasks fighting over the same weights. Identifying each task's core parameter region, freezing it, and merging the rest beats standard multi-task fine-tuning. Just reordering when tasks are trained wasn't enough Can isolating task-specific parameters prevent multi-task fine-tuning interference?. So this interference is built into the structure, and scheduling won't fix it. The second source is damage to what the model already knew before fine-tuning began. Proxy-tuning leaves base weights untouched and shifts outputs at decoding time. It beats direct fine-tuning on knowledge tasks, because direct fine-tuning corrupts knowledge stored in the lower layers, while proxy-tuning mostly affects reasoning and style Can decoding-time tuning preserve knowledge better than weight fine-tuning?. That is a different failure from tasks clashing with each other: it erodes the model's stored facts.
The third source is writing lessons into weights that never needed to go there. Fast-Slow Training sends task-specific lessons into optimized prompts and keeps weight updates small. It gets less forgetting and less loss of plasticity, and its authors call forgetting a misallocation problem, not an inherent cost Can splitting adaptation into two channels reduce forgetting?. The same logic sits behind freezing the backbone and training a small helper to generate soft thoughts Can continuous reasoning avoid forgetting in instruction-tuned models?. It also sits behind VOYAGER's external skill library, which avoids the forgetting that comes with weight-update methods Can agents learn new skills without forgetting old ones?. These approaches sidestep the problem more than they diagnose it. Still, they all work by keeping new learning out of the weights.
Two failures look like forgetting and may not show up in accuracy. Fine-tuned models can hold injected facts yet be unable to use them, because the facts are trapped in early or late layers and never reach the mid-layer reasoning circuits. Relocating those representations recovers 58–75% of the lost generalization Why do fine-tuned models fail to use facts they memorize?. Fine-tuning can also weaken the causal link between a model's reasoning steps and its final answers, so the reasoning becomes performative even when accuracy holds Does fine-tuning disconnect reasoning steps from final answers?. Training order and scale also matter. Models fine-tuned on cyclically repeated documents recover performance on a document before seeing it again, and this grows with model size, so forgetting isn't always a one-way slide Do networks recover from forgetting before re-encountering documents?.
The corpus therefore supports at least these distinct suspects: clashes between tasks over shared weights, erosion of pretrained knowledge, needless weight-writing, hidden routing and reasoning failures, and effects of training order and scale. It doesn't measure how much each one contributes, and it never tests them side by side. That comparison is the open gap the 100-task study points toward.
Sources 9 notes
Sequential fine-tuning on 100 query-answer tasks causes catastrophic forgetting across all evaluated mechanisms. The paper hypothesizes that composing complementary mechanisms addressing different forgetting sources will perform better than any single approach.
Research shows that identifying core parameter regions per task, clustering overlapping tasks, and freezing core parameters while geometrically merging non-core parameters consistently outperforms standard multi-task fine-tuning. Temporal task scheduling alone proves insufficient without explicit structural parameter isolation.
Proxy-tuning closes 88-91% of the alignment gap while surpassing direct fine-tuning on knowledge tasks by leaving base model weights untouched. Direct fine-tuning corrupts knowledge storage in lower layers, whereas proxy-tuning applies distributional shifts that primarily affect reasoning and style.
Fast-Slow Training routes task-specific lessons into optimized prompts while keeping parameter updates minimal, reaching equivalent performance 1.4–3x faster with substantially less catastrophic forgetting and plasticity loss, demonstrating that forgetting is a misallocation problem rather than an inherent cost.
SoftCoT avoids catastrophic forgetting by keeping the main LLM frozen while delegating soft thought generation to a small auxiliary model. This architectural separation maintains pre-trained knowledge while enabling continuous reasoning.
Show all 9 sources
VOYAGER demonstrates that storing executable skills in an embedding-indexed library and composing complex skills from simpler ones allows agents to learn continuously while avoiding the forgetting that occurs with weight-update-based methods. Environmental feedback refines skills while an automatic curriculum drives continual exploration.
Self-patching interventions show injected facts are encoded in the network but trapped in early or late layers, never reaching mid-layer reasoning circuits. Relocating these representations recovers 58–75% of lost generalization, proving the gap is routing failure, not capacity limitation.
Three faithfulness tests show fine-tuned models generate reasoning chains that less reliably influence final outputs. Early termination, paraphrasing, and filler substitution all produce invariant answers more often after fine-tuning, suggesting reasoning becomes performative rather than functional.
Language models finetuned on cyclically repeated documents exhibit anticipatory recovery—restoring performance on a document before encountering it again—a phenomenon that emerges and strengthens with model scale, contradicting monotonic catastrophic interference.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Towards Mechanistically Understanding Why Memorized Knowledge Fails to Generalize in Large Language Model Finetuning
- SoftCoT: Soft Chain-of-Thought for Efficient Reasoning with LLMs
- Continual Learning Mechanisms Compose for Long-Horizon Memorization
- Spurious Forgetting in Continual Learning of Language Models
- On the Impact of Fine-Tuning on Chain-of-Thought Reasoning
- Continual Learning Bench: Evaluating Frontier AI Systems in Real-World Stateful Environments
- Echo Chamber: RL Post-training Amplifies Behaviors Learned in Pretraining
- AgentFly: Fine-tuning LLM Agents without Fine-tuning LLMs