Experiment - tf.data.Dataset creation
Problem:You want to create a TensorFlow dataset from numpy arrays to feed data into a model. Currently, you have a dataset created but it is not shuffled or batched, causing slow training and poor model performance.
Current Metrics:Training accuracy: 75%, Validation accuracy: 70%, Training loss: 0.8, Validation loss: 0.9
Issue:The dataset is not shuffled or batched, which leads to inefficient training and slower convergence.