Zubnet AIAprenderWiki › Curriculum Aprendering
Training

Curriculum Aprendering

Una estrategia de entrenamiento que presenta ejemplos en un orden significativo — típicamente de fácil a difícil — en lugar de aleatoriamente. Como enseñarle aritmética a un estudiante antes de cálculo, el curriculum learning le da al modelo patrones fundacionales primero y construye complejidad gradualmente. Esto puede llevar a convergencia más rápida y a veces mejor rendimiento final.

Por qué importa

El curriculum learning es una técnica subestimada que puede mejorar eficiencia de entrenamiento sin cambiar el modelo o datos. El pre-entrenamiento de LLMs usa cada vez más data scheduling — mostrando datos más limpios y de mayor calidad en las etapas finales de entrenamiento — lo cual es una forma de curriculum learning. El orden en que presentas datos importa, no solo los datos mismos.

Deep Dive

The intuition: random training order means the model encounters hard examples before it has the foundation to learn from them, wasting gradient updates. By starting with easy, clear examples, the model builds basic representations that make harder examples learnable. Bengio et al. (2009) formalized this, showing that curriculum training converges faster and sometimes reaches better solutions than random ordering.

In LLM Pre-training

Modern LLM training uses a form of curriculum learning through data mixing schedules. Early training might use a broad mix of web text. Later stages increase the proportion of high-quality data (curated text, code, math, reasoning). Some training recipes "anneal" on premium data in the final phase — the model learns broad patterns first, then refines on carefully selected examples. This data scheduling is one of the most closely guarded secrets of frontier labs.

Self-Paced Aprendering

Self-paced learning is a variant where the model itself decides what's easy or hard, based on its current loss on each example. Examples with low loss (already learned) are deprioritized, while examples with moderate loss (challenging but learnable) are emphasized. Examples with very high loss (noise, mislabeled data) are also deprioritized as potential outliers. This adaptive curriculum adjusts automatically as the model improves.

Conceptos relacionados

← Todos los términos
← Cross-Attention Cursor →