-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
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
Images not being logged after using auto_lr_find #1919
Comments
Hi! thanks for your contribution!, great first issue! |
I can second this. Same goes for the graph of the net.. Spent almost a full day trying to figure out what am I doing wrong, but once auto_lr_find=False, everything works fine.. |
@SubodhDahal and @danielhomola could one of you try out the fix that is on master now, and report back if it worked. If so please close the issue :) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
🐛 Bug
When I use the auto LR finder, the images that I logged are no longer being displayed in Tensorboard. The logging works normally when setting it to
False
or when not specifying it.To Reproduce
Steps to reproduce the behavior:
auto_lr_find = True
for the trainerself.logger.experiment.add_image(title, image, step)
Expected behavior
The image that I logged should be visible in Tensorboard, even when using auto LR finder.
Environment
conda
,pip
, source):pip
Additional context
Not sure if relevant, but I couldn't figure out how to pass the params to the
Trainer
as I'm usingfrom_argparse_args(hparams)
, wherehparams
contains the keys and values obtained from command-lineArgumentParser
. So I sethparams.auto_lr_finder = True
before instantiating theTrainer
. The LR finder work's, so I assume there's no issue with that.The text was updated successfully, but these errors were encountered: