Check your understanding of this module before moving on.
?
0/3
Checkpoint quiz 3 questions
A quick check on this module's key ideas before you move on
Question 01
How does early stopping prevent overfitting?
A is correct. Early stopping monitors validation loss and halts training (or restores an earlier checkpoint) once that loss stops improving, capturing the model at the point of best generalization rather than letting it keep memorizing training data.
Question 02
Why does data augmentation (e.g. random crops, flips, rotations for images) help reduce overfitting?
A is correct. Augmentation creates many plausible variations of each training example, so the model can't simply memorize the exact pixels of a given image. It also teaches the model that, e.g., a flipped cat is still a cat.
Question 03
What is a key risk of choosing data augmentations that don't match the structure of the real-world data the model will see?
B is correct. Augmentations should reflect transformations the model should genuinely be invariant to. Flipping a digit or a word horizontally can change its meaning entirely, so applying that augmentation would teach the model an incorrect invariance.