Overview - Why augmentation multiplies training data
What is it?
Data augmentation is a technique used in computer vision to create new training images by applying simple changes to existing ones. These changes can include flipping, rotating, or changing colors of images. This process helps increase the amount of data without collecting new images. It makes the model see more variety and learn better.
Why it matters
Without augmentation, models often see only a limited set of images, which can make them perform poorly on new, unseen pictures. Augmentation solves this by multiplying the training data, helping models generalize better and avoid mistakes. Without it, training would require much more data collection, which is costly and slow.
Where it fits
Before learning augmentation, you should understand basic image data and how models train on images. After mastering augmentation, you can explore advanced techniques like synthetic data generation or transfer learning to further improve model performance.