Visualize and customize data augmentation techniques including MixUp and CutMix
transform = transforms.Compose([
transforms.RandomRotation(degrees=15),
transforms.RandomHorizontalFlip(p=0.5),
transforms.ColorJitter(brightness=0.1),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])
])
Standard Augmentation: Traditional data augmentation techniques including geometric transformations, color adjustments, and noise injection.