"git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "939ec17e91432531b8acb7ea0ae9295936ff1da6"
Commit 0020477a authored by Myle Ott's avatar Myle Ott Committed by Facebook Github Bot
Browse files

Don't reload best validation loss when using --reset-optimizer

Summary: Pull Request resolved: https://github.com/pytorch/fairseq/pull/661

Differential Revision: D15068312

Pulled By: myleott

fbshipit-source-id: 1216835fd4c7f83ea5e350bff83901c93ac57447
parent fa52d202
...@@ -362,7 +362,7 @@ def load_checkpoint(args, trainer, epoch_itr): ...@@ -362,7 +362,7 @@ def load_checkpoint(args, trainer, epoch_itr):
trainer.lr_step(epoch_itr.epoch) trainer.lr_step(epoch_itr.epoch)
trainer.lr_step_update(trainer.get_num_updates()) trainer.lr_step_update(trainer.get_num_updates())
if 'best' in extra_state: if 'best' in extra_state and not args.reset_optimizer:
save_checkpoint.best = extra_state['best'] save_checkpoint.best = extra_state['best']
return True return True
else: else:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment