Glossary Entry

Catastrophic Forgetting

The abrupt loss of previously learned knowledge when a neural network is trained sequentially on new data, because gradient updates for the new task overwrite shared weights the old tasks relied on.

Training Models

Also called: catastrophic interference

Seed source: French 1999, Trends in Cognitive Sciences

Named by McCloskey and Cohen in 1989, catastrophic forgetting is the reason you cannot simply keep fine-tuning a deployed model on whatever it experiences. Distributed representations share weights across everything the network knows, so learning task B pulls on the same parameters task A depends on; French’s classic review points out that the very properties that make neural networks generalize are the root cause.

The standard mitigations each trade new-task performance for retention along a stability-plasticity frontier: regularization methods like elastic weight consolidation penalize movement of important weights, replay methods mix stored old examples into new training batches, and architectural methods give each task its own parameters (adapters, progressive networks, sparse memory slots). The effect is one of the main reasons LLM agents keep their memories in external stores rather than in their weights.