Fastai data augmentation transform constants

Currently I have aug_tfms=[transforms_top_down, transforms_side_on] for my CNN, using images from the ISIC dataset. Does anyone know, please, if there are other transforms available in the fastai framework, such as partial rotations or crops, or will I have to investigate grabbing them from PyTorch itself? Thank you.

If you look at the fastai code base, you can find other transformations. Check out: https://github.com/fastai/fastai/blob/master/fastai/transforms.py

Thanks very much for your reply Bryan I’ll check those out.