Experiment - Defining a model class
Problem:You want to create a simple neural network model class in PyTorch to classify images from the MNIST dataset.
Current Metrics:Training accuracy: 85%, Validation accuracy: 82%, Training loss: 0.45, Validation loss: 0.50
Issue:The current model is defined using a sequential container only, which limits flexibility for future changes and custom layers.