Pytorch Lightning Learning rate finder
pytorch
The following plots the loss against learning rate in order to discover an “optimal” learning rate.
= trainer.tuner.lr_find(lightning_module, train_dataloaders=train_dl)
lr_finder = lr_finder.plot(suggest=True)
fig fig.show()
When all else fails, 1e-3.