Zubnet AIAprenderWiki › Continual Aprendering
Training

Continual Aprendering

Lifelong Aprendering, Incremental Aprendering
La capacidad de un modelo de aprender de nuevos datos continuamente sin olvidar lo que aprendió antes. Los LLMs actuales se entrenan una vez y se congelan — actualizarlos requiere reentrenamiento caro. El aprendizaje continuo permitiría a los modelos aprender de cada interacción, mantenerse actuales con nueva información, y adaptarse a usuarios individuales con el tiempo, la forma en que los humanos aprenden naturalmente.

Por qué importa

El continual learning es uno de los grandes problemas no resueltos de la IA. Los modelos actuales tienen cutoffs de conocimiento, no pueden aprender de correcciones, y tratan cada conversación como pizarra en blanco. Resolver el continual learning eliminaría la necesidad de ciclos caros de reentrenamiento, habilitaría IA personalizada que genuinamente se adapta a cada usuario, y permitiría a los modelos mantenerse perpetuamente actuales.

Deep Dive

The fundamental obstacle is catastrophic forgetting: training on new data overwrites the weights that encoded old knowledge. Humans don't have this problem (learning French doesn't make you forget English) because biological neural networks use different mechanisms for memory consolidation. Artificial neural networks store all knowledge in shared weights, making any update a potential disruption to existing capabilities.

Current Approaches

Several strategies partially address continual learning: replay methods (mix old data with new data during training), regularization methods (penalize changes to weights important for old tasks, like EWC), architecture methods (allocate different parameters to different tasks), and retrieval-augmented approaches (store knowledge externally in a database rather than in weights). None fully solve the problem, but each enables some degree of incremental learning.

RAG as a Pragmatic Substitute

In practice, RAG (Retrieval-Augmented Generation) serves as a pragmatic substitute for true continual learning. Instead of updating the model's weights with new information, you update an external knowledge base that the model consults at inference time. This sidesteps catastrophic forgetting entirely but has limitations: the model's reasoning capabilities don't improve, only its access to information. True continual learning would improve both knowledge and capabilities simultaneously.

Conceptos relacionados

← Todos los términos
← Context Window Contrastive Aprendering →