Zubnet AIApprendreWiki › Catastrophic Forgetting
Training

Catastrophic Forgetting

Catastrophic Interference
Quand un réseau de neurones entraîné sur une nouvelle tâche perd sa capacité à performer les tâches apprises auparavant. Fine-tuner un modèle sur des données de support client pourrait le rendre excellent au support mais terrible au code. Le nouvel apprentissage écrase les poids qui encodaient les anciennes capacités, les « oubliant ».

Pourquoi c'est important

L'oubli catastrophique est le défi central du fine-tuning et de l'apprentissage continu. C'est pourquoi tu peux pas juste continuer à fine-tuner un modèle sur tâche après tâche et t'attendre à ce qu'il fasse tout bien. C'est aussi pourquoi des techniques comme LoRA (qui ne modifie qu'un petit sous-ensemble de paramètres) et la sélection soigneuse du learning rate sont critiques pour préserver les capacités du modèle de base.

Deep Dive

The root cause is weight sharing: the same parameters encode multiple capabilities, and updating them for a new task disrupts the existing encodings. In a large neural network, knowledge isn't stored in dedicated neurons — it's distributed across the weights in complex, overlapping patterns (superposition). Modifying those weights for new knowledge inevitably disturbs old knowledge.

Mitigation Strategies

Several techniques reduce forgetting. Low learning rates during fine-tuning minimize weight changes. LoRA adds new trainable parameters while keeping the original weights frozen. Elastic Weight Consolidation (EWC) identifies which weights are important for old tasks and penalizes changes to them. Replay methods mix old task data into new task training. None fully solve the problem — there's always a trade-off between plasticity (learning new things) and stability (retaining old things).

The Continual Apprendreing Dream

Continual learning (also called lifelong learning) is the research goal of building models that can keep learning from new data without forgetting old capabilities — the way humans do. Current LLMs sidestep this by training once on a massive dataset and then fine-tuning carefully. True continual learning remains an open problem and would be transformative: imagine a model that keeps learning from every conversation without degrading.

Concepts liés

← Tous les termes
← Cartesia Cerebras →