Curriculum learning trains models on examples in meaningful difficulty progression, starting with easy instances and gradually introducing harder ones. This mirrors human learning and improves convergence speed and generalization. Difficulty can be based on training loss, distance to decision boundary, or domain expertise.
From your work with neural networks, you know that training involves feeding batches of data through the network, computing loss, and updating weights via backpropagation. Standard practice shuffles the training data randomly each epoch, treating all examples as equally important. Curriculum learning challenges this assumption: just as a student learns arithmetic before calculus, a neural network can learn more effectively when examples are presented in a meaningful order from easy to hard. The idea, formalized by Bengio et al. in 2009, is that starting with simple, clear-cut examples helps the model establish a good initial representation before encountering the noisy, ambiguous cases that would otherwise confuse early training.
Consider training an image classifier. Some images are textbook examples — a cat centered in the frame, well-lit, against a clean background. Others are hard — a cat partially occluded, in motion blur, taken at night. If you show the network hard examples early, when its weights are still nearly random, the gradients may be noisy and contradictory, pushing the model in unhelpful directions. By starting with easy examples, the model first learns the core visual features (fur texture, ear shape, eye structure) on unambiguous cases. Once these features are established, the model can leverage them to make sense of harder examples where the same features appear in degraded or unusual forms. The curriculum acts as a form of implicit regularization, guiding the optimization toward better regions of the loss landscape.
The central practical question is: how do you define "easy" and "hard"? There are several approaches. Loss-based difficulty is the most common: examples with low training loss are considered easy, those with high loss are hard. This is intuitive — if the model already gets an example right with high confidence, it is easy. Margin-based difficulty looks at distance to the decision boundary; examples far from the boundary on the correct side are easy, those near the boundary or on the wrong side are hard. Domain-specific difficulty uses human knowledge — for language tasks, short sentences with common words might be easy, while long sentences with rare vocabulary are hard. Some methods are self-paced, letting the model itself determine difficulty dynamically during training rather than fixing the curriculum in advance.
An interesting variant is anti-curriculum learning (sometimes called hard-example mining), where you deliberately focus on the hardest examples. This works in different situations — when the model is already reasonably trained and needs to refine its performance on the cases it still gets wrong. The reconciliation is that the optimal strategy often changes during training: an easy-to-hard curriculum early on, then increased emphasis on hard examples later. Some modern approaches like self-paced curriculum learning combine both ideas, allowing the training procedure to adaptively shift its focus as the model improves. Curriculum learning is especially impactful in settings with noisy labels, class imbalance, or limited data, where presenting all examples equally would allow noisy or misleading examples to dominate early gradient updates.
No topics depend on this one yet.