Questions: Curriculum Learning

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Two image classifiers are trained on the same dataset. Model A receives examples in random order every epoch. Model B starts with clear, unambiguous images and gradually introduces occluded, low-quality ones. What does curriculum learning most directly improve for Model B?

AThe maximum accuracy ceiling — curriculum learning allows the model to exceed what random ordering can achieve in principle
BThe gradient quality in early training — easy examples produce cleaner, more consistent updates when weights are nearly random
CThe learning rate schedule — curriculum learning automatically slows down the learning rate to match increasing difficulty
DThe model architecture — curriculum learning requires a larger network capacity to process ordered inputs
Question 2 Multiple Choice

Which of the following is NOT a valid method for defining difficulty in curriculum learning?

AUsing current training loss — high-loss examples are treated as harder
BUsing distance from the decision boundary — examples closer to the boundary are harder
CUsing the order in which examples appear in the raw dataset file on disk
DUsing domain expertise — a linguist designating short, common sentences as easier than long, rare-vocabulary sentences
Question 3 True / False

Curriculum learning universally improves model performance compared to random example ordering and should typically be used when training neural networks.

TTrue
FFalse
Question 4 True / False

In curriculum learning, the fundamental insight is that gradient updates from easy examples are more useful early in training because the model's weights are nearly random and cannot yet extract signal from hard examples.

TTrue
FFalse
Question 5 Short Answer

Why does presenting easy examples first improve neural network training, rather than simply shuffling all examples randomly?

Think about your answer, then reveal below.