Catastrophic Forgetting.
The phenomenon where neural networks lose previously learned knowledge when trained on new tasks or data, requiring careful strategies to preserve existing capabilities.
Catastrophic forgetting represents one of the fundamental challenges in neural network training, where models lose previously acquired knowledge when learning new information. This occurs because neural networks typically overwrite existing weights and connections during training, causing them to forget earlier tasks or capabilities. The problem is particularly acute in continual learning scenarios where models must adapt to new domains while retaining performance on original tasks, making it a critical consideration for AI systems deployed in dynamic environments.
The mechanism behind catastrophic forgetting stems from the way neural networks store information in distributed weight patterns across the entire network. When training on new data, gradient descent updates these weights to minimize loss on the current task, often at the expense of previously learned representations. Unlike human learning, which can compartmentalize knowledge, standard neural networks lack mechanisms to protect important weights from modification. This leads to interference between old and new knowledge, with newer learning typically dominating and overriding earlier capabilities.
Managing catastrophic forgetting requires sophisticated techniques like elastic weight consolidation, progressive networks, or careful curriculum design during fine-tuning. Many practitioners mistakenly assume that simply mixing old and new data during training will prevent forgetting, but this approach often proves insufficient for complex models. The challenge becomes especially pronounced in production AI systems that need regular updates, as each improvement cycle risks degrading existing functionality. Understanding and mitigating catastrophic forgetting is essential for building robust, continuously learning AI systems that can evolve without losing their foundational capabilities.