Version 1.4.4 Per https://github.com/PyTorchLightning/pytorch-lightning/issues/4929#issuecomment-739028197 OneCycleLR, LambdaLR require configuration `"interval": "step"` which should be set as follows: ``` 'lr_scheduler': { 'scheduler': scheduler, 'interval': 'step' } ``` But https://pytorch-lightning.readthedocs.io/en/latest/api/pytorch_lightning.core.lightning.html#pytorch_lightning.core.lightning.LightningModule.configure_optimizers implies it should be set as follows: ``` 'lr_scheduler': scheduler, 'interval': 'step' ``` I can confirm the first approach works. The documentation in the second link should be reviewed. I suspect it is incorrect.