How to apply 2 different transformation on my dataset using pytorch
I am preparing my data for a downstream CNN application in pytorch. I wish to use the transform methods = ToTensor() and Resize() both on the same dataset. I am not able to apply them together. from torchvision.datasets import ImageFolder from torchvision.transforms import ToTensor # In order to convert the datat to pytorch tensors from… Read More How to apply 2 different transformation on my dataset using pytorch