Random Resized Crop and Interpolation
Learn to perform data augmentation with the random resized crop and interpolation techniques.
We'll cover the following...
By default, the PyTorch Image Model framework will apply the RandomResizedCropAndInterpolation
data augmentation during training.
As the name implies, it will randomly crop or resize the input image. It also changes the aspect ratio of the image randomly.
The RandomResizedCropAndInterpolation
data augmentation works very well with most datasets. It helps ...