Recall & Review
beginner
What is data augmentation in computer vision?
Data augmentation is a technique that creates new training images by applying simple changes like rotation, flipping, or color shifts to existing images. This helps the model learn better by seeing more varied examples.
Click to reveal answer
beginner
Why does augmentation multiply the amount of training data?
Because each original image can be changed in many ways, augmentation creates many new images from one. This increases the total number of training examples, helping the model learn more patterns.
Click to reveal answer
intermediate
How does augmentation help prevent overfitting?
By showing the model many different versions of images, augmentation stops the model from memorizing exact images. Instead, the model learns general features that work well on new, unseen images.
Click to reveal answer
beginner
Name three common augmentation techniques used in computer vision.
Common techniques include flipping images horizontally, rotating images by small angles, and changing brightness or colors slightly.
Click to reveal answer
beginner
What is the main benefit of multiplying training data with augmentation?
The main benefit is that the model gets more diverse examples to learn from, which improves its ability to recognize objects in different situations and reduces errors on new images.
Click to reveal answer
What does data augmentation do to training images?
✗ Incorrect
Data augmentation creates new images by applying changes like rotation or flipping to existing images.
Why is multiplying training data helpful for a model?
✗ Incorrect
More varied examples help the model learn better and generalize to new data.
Which of these is NOT a common augmentation technique?
✗ Incorrect
Adding noise to labels is not an image augmentation technique.
How does augmentation reduce overfitting?
✗ Incorrect
Augmentation increases variety, helping the model learn general features instead of memorizing.
If you have 100 images and apply 3 different augmentations, how many images do you have for training?
✗ Incorrect
Original 100 images plus 3 augmentations each (3 x 100 = 300) equals 400 images total.
Explain in your own words why data augmentation multiplies training data in computer vision.
Think about how one photo can become many different photos by small changes.
You got /4 concepts.
Describe how multiplying training data with augmentation helps reduce overfitting.
Consider why seeing many versions of the same object helps the model.
You got /4 concepts.