Experiment - Keras as TensorFlow's high-level API
Problem:You have built a simple neural network using Keras in TensorFlow to classify handwritten digits from the MNIST dataset. The model trains well on the training data but performs poorly on the validation data, showing signs of overfitting.
Current Metrics:Training accuracy: 98%, Validation accuracy: 82%, Training loss: 0.05, Validation loss: 0.45
Issue:The model overfits the training data, resulting in a large gap between training and validation accuracy.
