Experiment - Backward pass (loss.backward)
Problem:You have a simple neural network trained on a small dataset. The model's training loss decreases very slowly, and the model does not learn well.
Current Metrics:Training loss after 10 epochs: 1.2, Training accuracy: 40%
Issue:The backward pass is not correctly updating the model parameters because the loss.backward() call is missing or misplaced.