-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
tensorboard hyperparameters don't update #1217
Comments
Hi! thanks for your contribution!, great first issue! |
@gunthergl may you consider drafting a PR with fix? |
I sadly do not know where exactly this happens plus have very low free capacity atm. |
@jeffling @MattPainter01 may you have a look? |
I have also seen this issue and assumed like @gunthergl that it was a tensorboard issue. I'm working from home at the moment and it's difficult to do any Lightning work from here. @Borda |
Same issues here and I have to delete all the previous logs that have different parameters and restart tensorbord. |
I ran into this issue as well, it is unlikely that this is a PyTorch lightning issue. #!/usr/bin/env python3
from torch.utils.tensorboard import SummaryWriter
with SummaryWriter() as w:
w.add_hparams({"key_A": 10}, {})
with SummaryWriter() as w:
w.add_hparams({"key_B": 10}, {}) When viewing the Tensorboard summary writer output on
|
Closing this as this is an issue in tensorboard. |
🐛 Bug
Given two sets of HPARAMS,
h_1
andh_2
whereh_1
is a strict subset ofh_2
.h_1
, thenh_2
, the additional parameters fromh_2
are not shown in tensorboardh_2
, thenh_1
, the missing parameters fromh_1
are shown empty in tensorboardCase 2 is fine, Case 1 is not.
I already issued this at tensorboard but was directed back here again.
To Reproduce
tensorboard --logdir=lightning_logs
in same directorylayer_1_dim
Code sample
Change that "solves" the problem: First call net with both parameters
Expected behavior
tensorboard --logdir=lightning_logs
in same directorylayer_1_dim
andanother_hyperparameter
another_hyperparameter
empty in version0Hackaround:
another_hyperparameter
Environment
py3.7_cuda101_cudnn7_0
Win10
conda
3.7.0
10.1
GTX1650
conda list
for pytorch:pytorch-lightning 0.7.1 pypi_0 pypi
The text was updated successfully, but these errors were encountered: