Experiment - Caching datasets
Problem:You are training a TensorFlow model on a dataset loaded from disk. Each epoch reloads and preprocesses the data, causing slow training.
Current Metrics:Training time per epoch: 120 seconds; Validation accuracy: 85%; Training accuracy: 90%
Issue:Training is slow because the dataset is not cached, causing repeated disk reads and preprocessing each epoch.