RandAugment
Learn to use RandAugment for training in the Pytorch Image Model framework.
We'll cover the following...
We'll cover the following...
The Pytorch Image Model framework provides another useful augmentation class called RandAugment
. As the name implies, it performs random augmentations on the image datasets.
The RandAugment
class
Here’s a list of image transformations in the RandAugment
class:
Transformation | Description |
---|---|
Invert |
Invert the colors of the input image. |
AutoContrast |
Maximize the contrast of the input image by remapping its pixels per channel. |
Equalize |
Equalize the histogram of the input image. |
Rotate |
Rotate the input image by a certain angle. |