Experiment - Dataset from tensors
Problem:You want to create a TensorFlow dataset from tensors and use it to train a simple model. Currently, the dataset is created but the model training is slow and inefficient.
Current Metrics:Training loss after 5 epochs: 0.85, Training accuracy: 65%, Validation loss: 0.90, Validation accuracy: 60%
Issue:The dataset is created from tensors but lacks batching and shuffling, causing slow training and poor model generalization.