You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/transforms.rst
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ Compositions of transforms
57
57
58
58
.. autoclass:: Compose
59
59
60
+
60
61
Transforms on PIL Image and torch.\*Tensor
61
62
------------------------------------------
62
63
@@ -156,6 +157,22 @@ Generic Transforms
156
157
:members:
157
158
158
159
160
+
AutoAugment Transforms
161
+
----------------------
162
+
163
+
`AutoAugment <https://arxiv.org/pdf/1805.09501.pdf>`_ is a common Data Augmentation technique that can improve the accuracy of Image Classification models.
164
+
Though the data augmentation policies are directly linked to their trained dataset, empirical studies show that
165
+
ImageNet policies provide significant improvements when applied to other datasets.
166
+
In TorchVision we implemented 3 policies learned on the following datasets: ImageNet, CIFAR10 and SVHN.
167
+
The new transform can be used standalone or mixed-and-matched with existing transforms:
0 commit comments