We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the correct way to run
trainer = pl.Trainer(auto_lr_find=True) lr_finder = trainer.tuner.lr_find(model) # Run learning rate finder fig = lr_finder.plot(suggest=True) # Plot fig.show() model.hparams.learning_rate = lr_finder.suggestion()
The text was updated successfully, but these errors were encountered:
@edenlightning mind share where are the wrong docs?
Sorry, something went wrong.
Closing this as it was solved by #3883
For future readers, it they stumble upon this issue, refer the following documentation - lr_finder
edenlightning
No branches or pull requests
This is the correct way to run
The text was updated successfully, but these errors were encountered: