I am reproducing a code (which is in tensorflow/keras) in which the following augmentations are applied.
ImageDataGenerator(
zoom_range=0.1,
fill_mode='reflect',
width_shift_range=0.4,
height_shift_range=0.4)
How can I use the same augmentation methods in Pytorch.