lr_finder: Fix typo in docstring (#1746)

This commit is contained in:
Pavel Grunt 2020-05-06 18:39:22 +02:00 committed by GitHub
parent 851866333c
commit b9364f96b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class TrainerLRFinderMixin(ABC):
# Inspect results
fig = lr_finder.plot(); fig.show()
suggested_lr = lr_finder.suggest()
suggested_lr = lr_finder.suggestion()
# Overwrite lr and create new model
hparams.lr = suggested_lr