Experiment - Data loading with torchvision
Problem:You want to load and prepare image data for training a computer vision model using torchvision. Currently, you load the data but the training is slow and the validation accuracy is low.
Current Metrics:Training accuracy: 60%, Validation accuracy: 55%, Training time per epoch: 120 seconds
Issue:The data loading is not optimized, causing slow training and poor validation accuracy due to insufficient data shuffling and no data augmentation.