Experiment - Flatten and Dense layers
Problem:You are building a simple neural network to classify images from the MNIST dataset. The current model uses Flatten and Dense layers but is not learning well.
Current Metrics:Training accuracy: 60%, Validation accuracy: 58%, Training loss: 1.2, Validation loss: 1.3
Issue:The model is underfitting. It is not learning enough from the data, resulting in low accuracy on both training and validation sets.