0
0
Computer Visionml~5 mins

Random erasing in Computer Vision - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Random Erasing in computer vision?
Random Erasing is a data augmentation technique where a random rectangle area in an image is erased (filled with random values or a constant) during training to help the model learn better and avoid overfitting.
Click to reveal answer
beginner
Why do we use Random Erasing during training?
We use Random Erasing to make the model more robust by forcing it to focus on different parts of the image, not just the most obvious features. This helps the model generalize better to new images.
Click to reveal answer
intermediate
How does Random Erasing differ from other augmentations like flipping or rotation?
Unlike flipping or rotation which change the whole image orientation, Random Erasing removes or hides a small part of the image randomly, simulating occlusion or missing parts to improve model resilience.
Click to reveal answer
intermediate
What parameters control the Random Erasing process?
Key parameters include the size range of the erased area, the aspect ratio of the erased rectangle, and the probability of applying erasing to each image during training.
Click to reveal answer
beginner
Can Random Erasing be used during model testing or only training? Why?
Random Erasing is used only during training to improve learning. During testing, images should remain unchanged to fairly evaluate the model's performance on real data.
Click to reveal answer
What is the main goal of Random Erasing in training?
ATo flip the image horizontally
BTo increase image brightness
CTo hide parts of the image randomly to improve model robustness
DTo crop the image to a smaller size
Which of these is NOT a parameter of Random Erasing?
AProbability of erasing
BNumber of image channels
CColor of erased area
DSize of erased area
When should Random Erasing be applied?
AOnly during training
BOnly during testing
CDuring both training and testing
DNever
Random Erasing helps the model to:
AIncrease image resolution
BIgnore all image features
CFocus only on the center of the image
DGeneralize better by learning from incomplete images
Which augmentation is most similar in purpose to Random Erasing?
ACutout
BImage flipping
CColor jittering
DRotation
Explain what Random Erasing is and why it helps in training computer vision models.
Think about how hiding parts of an image can help a model learn better.
You got /4 concepts.
    Describe the key parameters that control how Random Erasing works.
    Consider what controls how often and how big the erased parts are.
    You got /3 concepts.