0
0
Computer Visionml~5 mins

Cutout and CutMix in Computer Vision - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the main idea behind the Cutout data augmentation technique?
Cutout randomly masks out a square patch of the input image during training. This forces the model to focus on other parts of the image, improving robustness and generalization.
Click to reveal answer
intermediate
How does CutMix differ from Cutout in data augmentation?
CutMix replaces a random patch of one image with a patch from another image and mixes their labels proportionally. Unlike Cutout which masks with zeros, CutMix combines two images and their labels.
Click to reveal answer
intermediate
Why does CutMix use mixed labels when combining two images?
Because the new image contains parts from two different images, the label is a weighted combination of both original labels. This helps the model learn from mixed features and improves generalization.
Click to reveal answer
beginner
What is a practical benefit of using Cutout or CutMix during training?
Both techniques help the model become less sensitive to specific parts of images and reduce overfitting. This leads to better performance on new, unseen images.
Click to reveal answer
advanced
In Cutout, what happens if the masked patch is too large?
If the masked patch is too large, the model may lose too much information from the image, making learning harder and possibly hurting performance.
Click to reveal answer
What does Cutout do to an image during training?
ASwaps patches between two images
BMasks a random square patch with zeros
CRotates the image randomly
DAdds noise to the entire image
How does CutMix combine labels of two images?
AMixes labels proportionally to the area of patches combined
BUses only the label of the second image
CUses only the label of the first image
DIgnores labels during training
Which technique replaces a patch of one image with a patch from another image?
ACutMix
BCutout
CRandom Crop
DHorizontal Flip
What is a key goal of using Cutout or CutMix in training?
ATo increase model size
BTo make images grayscale
CTo reduce overfitting and improve generalization
DTo speed up training time
If the masked patch in Cutout is too large, what might happen?
AModel learns faster
BModel accuracy increases automatically
CModel ignores the patch
DModel loses too much information and performance drops
Explain how Cutout and CutMix help improve model training in computer vision.
Think about how hiding or mixing parts of images forces the model to learn better features.
You got /4 concepts.
    Describe the difference between Cutout and CutMix in terms of image and label manipulation.
    Focus on what happens to the image pixels and labels in each method.
    You got /4 concepts.