AI RundownDaily
Topic

#catastrophic forgetting

2 articles — updated daily

Catastrophic Forgetting: Why Fine-Tuning Can Make Models Dumber

Catastrophic Forgetting: Why Fine-Tuning Can Make Models Dumber

Catastrophic forgetting is the tendency for fine-tuning to sharpen a language model on a narrow task while quietly degrading capabilities it never touched during training. It happens because fine-tuning overwrites shared weights rather than adding isolated new knowledge, and the severity ranges from negligible to severe depending on method, learning rate, and how repetitive the data is. As fine-tuning becomes a default lever for teams shipping specialized AI features, the gap between "it got better at X" and "it got worse at everything else" is turning into a quiet source of production incidents. For PMs, the fix isn't avoiding fine-tuning, it's building an eval suite that checks capabilities you didn't train for, not just the one you did.

Continual Learning: Why Your Deployed LLM Still Can't Learn

Continual Learning: Why Your Deployed LLM Still Can't Learn

Continual learning is the AI research goal of models that keep absorbing new knowledge after deployment without forgetting old skills — but no production LLM actually does this today. Frontier models like Claude Opus 4.8 and GPT-5.5 ship with fixed knowledge cutoffs and stay frozen until the next full retrain, months later; what looks like "learning" in products is really context windows, retrieval (RAG), and memory features re-injecting facts, not weight updates. The gap between the research narrative and shipped reality is widening as vendors add memory features that feel like learning but aren't. For PMs, this matters because any roadmap that assumes the model will organically get smarter about your users is building on a substitute, not the real thing.