Experiment - Why efficient data loading prevents bottlenecks
Problem:Training a neural network on image data is slow because the model waits for data to load from disk. This causes the GPU to be idle, reducing training speed.
Current Metrics:Training time per epoch: 120 seconds; GPU utilization: 40%; Validation accuracy: 85%
Issue:Data loading is slow and blocks the GPU from working efficiently, causing a bottleneck.