Experiment - Compose transforms
Problem:You want to apply multiple image transformations in a sequence to prepare data for training a neural network. Currently, you apply each transform separately, which is inefficient and error-prone.
Current Metrics:Data loading time per batch: 0.8 seconds; Model training accuracy: 75%
Issue:Applying transforms separately increases data loading time and can cause inconsistent preprocessing.