Aug_dl substitute in fastai v1

Hi, I wanted to know if there is any way to see the augmentations on an image in fastai v1. It was there in the previous version as md.aug_dl but I am not able to find a proper method like this in the newer version. Thanks in advance!!

After you’ve made your databunch, you can do a data.show_batch() and it’s will show some images with the transformations applied! And to see the transformations used listed, do data.train_ds.tfms

1 Like