mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-09 11:32:07 +08:00
Learning Rate finder (#1347)
* initial structure * rebase * incorporate suggestions * update CHANGELOG.md * initial docs * fixes based on reviews * added trainer arg * update docs * added saving/restore of model state * initial tests * fix styling * added more tests * fix docs, backward compatility and progressbar * fix styling * docs update * updates based on review * changed saving to standard functions * consistent naming * fix formatting * improve docs, added support for nested fields, improve codecov * update CHANGELOG.md * Update lr_finder.rst * Update pytorch_lightning/trainer/trainer.py * Update trainer.py * Update CHANGELOG.md * Update path * restoring * test * attribs * docs * doc typo Co-authored-by: Nicki Skafte <nugginea@gmail.com> Co-authored-by: William Falcon <waf2107@columbia.edu> Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com> Co-authored-by: J. Borovec <jirka.borovec@seznam.cz>
This commit is contained in:
co-authored by
Nicki Skafte
William Falcon
Jirka Borovec
J. Borovec
parent
d05ac813dc
commit
3f09b32df3
Executable
+181
@@ -0,0 +1,181 @@
|
||||
import pytest
|
||||
|
||||
import torch
|
||||
import tests.base.utils as tutils
|
||||
from pytorch_lightning import Trainer
|
||||
from pytorch_lightning.utilities.exceptions import MisconfigurationException
|
||||
from tests.base import (
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
LightTestMultipleOptimizersWithSchedulingMixin,
|
||||
)
|
||||
|
||||
|
||||
def test_error_on_more_than_1_optimizer(tmpdir):
|
||||
''' Check that error is thrown when more than 1 optimizer is passed '''
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTestMultipleOptimizersWithSchedulingMixin,
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
model = CurrentTestModel(hparams)
|
||||
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1
|
||||
)
|
||||
|
||||
with pytest.raises(MisconfigurationException):
|
||||
trainer.lr_find(model)
|
||||
|
||||
|
||||
def test_model_reset_correctly(tmpdir):
|
||||
''' Check that model weights are correctly reset after lr_find() '''
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
model = CurrentTestModel(hparams)
|
||||
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1
|
||||
)
|
||||
|
||||
before_state_dict = model.state_dict()
|
||||
|
||||
_ = trainer.lr_find(model, num_training=5)
|
||||
|
||||
after_state_dict = model.state_dict()
|
||||
|
||||
for key in before_state_dict.keys():
|
||||
assert torch.all(torch.eq(before_state_dict[key], after_state_dict[key])), \
|
||||
'Model was not reset correctly after learning rate finder'
|
||||
|
||||
|
||||
def test_trainer_reset_correctly(tmpdir):
|
||||
''' Check that all trainer parameters are reset correctly after lr_find() '''
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
model = CurrentTestModel(hparams)
|
||||
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1
|
||||
)
|
||||
|
||||
changed_attributes = ['callbacks', 'logger', 'max_steps', 'auto_lr_find',
|
||||
'progress_bar_refresh_rate',
|
||||
'accumulate_grad_batches',
|
||||
'checkpoint_callback']
|
||||
attributes_before = {}
|
||||
for ca in changed_attributes:
|
||||
attributes_before[ca] = getattr(trainer, ca)
|
||||
|
||||
_ = trainer.lr_find(model, num_training=5)
|
||||
|
||||
attributes_after = {}
|
||||
for ca in changed_attributes:
|
||||
attributes_after[ca] = getattr(trainer, ca)
|
||||
|
||||
for key in changed_attributes:
|
||||
assert attributes_before[key] == attributes_after[key], \
|
||||
f'Attribute {key} was not reset correctly after learning rate finder'
|
||||
|
||||
|
||||
def test_trainer_arg_bool(tmpdir):
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
model = CurrentTestModel(hparams)
|
||||
before_lr = hparams.learning_rate
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1,
|
||||
auto_lr_find=True
|
||||
)
|
||||
|
||||
trainer.fit(model)
|
||||
after_lr = model.hparams.learning_rate
|
||||
assert before_lr != after_lr, \
|
||||
'Learning rate was not altered after running learning rate finder'
|
||||
|
||||
|
||||
def test_trainer_arg_str(tmpdir):
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
hparams.__dict__['my_fancy_lr'] = 1.0 # update with non-standard field
|
||||
model = CurrentTestModel(hparams)
|
||||
before_lr = hparams.my_fancy_lr
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1,
|
||||
auto_lr_find='my_fancy_lr'
|
||||
)
|
||||
|
||||
trainer.fit(model)
|
||||
after_lr = model.hparams.my_fancy_lr
|
||||
assert before_lr != after_lr, \
|
||||
'Learning rate was not altered after running learning rate finder'
|
||||
|
||||
|
||||
def test_call_to_trainer_method(tmpdir):
|
||||
tutils.reset_seed()
|
||||
|
||||
class CurrentTestModel(
|
||||
LightTrainDataloader,
|
||||
TestModelBase,
|
||||
):
|
||||
pass
|
||||
|
||||
hparams = tutils.get_default_hparams()
|
||||
model = CurrentTestModel(hparams)
|
||||
before_lr = hparams.learning_rate
|
||||
# logger file to get meta
|
||||
trainer = Trainer(
|
||||
default_save_path=tmpdir,
|
||||
max_epochs=1,
|
||||
)
|
||||
|
||||
lrfinder = trainer.lr_find(model, mode='linear')
|
||||
after_lr = lrfinder.suggestion()
|
||||
model.hparams.learning_rate = after_lr
|
||||
trainer.fit(model)
|
||||
|
||||
assert before_lr != after_lr, \
|
||||
'Learning rate was not altered after running learning rate finder'
|
||||
Reference in New Issue
Block a user