Use scheduler.step()
instead of scheduler.step(epoch)
. It has strange behavious when using MultiStepLR
. Though it works fine for StepLR
in your example.
1 Like
Use scheduler.step()
instead of scheduler.step(epoch)
. It has strange behavious when using MultiStepLR
. Though it works fine for StepLR
in your example.