Experiment - StepLR and MultiStepLR
Problem:You have a neural network training on a classification task. The learning rate is fixed, causing the model to plateau early and not improve validation accuracy after some epochs.
Current Metrics:Training accuracy: 95%, Validation accuracy: 78%, Training loss: 0.15, Validation loss: 0.45
Issue:The model overfits early and validation accuracy stops improving because the learning rate is not adjusted during training.
