Experiment - __init__ for layers
Problem:You are building a simple neural network in PyTorch. The model currently has a single linear layer defined in the __init__ method. However, the model is underfitting and not learning well.
Current Metrics:Training accuracy: 60%, Validation accuracy: 58%, Training loss: 0.9, Validation loss: 0.95
Issue:The model is too simple with only one linear layer. It lacks enough capacity to learn the data patterns well.