You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have trained a network and got an event file. However, the histograms are not easy to help understand the training process since they are listed in alphabetical order. Can I rename those histograms to change their order without retraining the model?
@manivaradarajan Sorry for the late response. Let me elaborate with a toy example.
Suppose we have a network conv1 -> norm1 -> relu1 -> conv2 ... and I save the histograms of feature map before and after 'norm1', named as conv1_feature and norm1_feature, respectively.
In tensorboard, they are listed as conv1_feature, conv2_feature, ..., convn_feature, norm1_feature, .... However, those histograms should be in order of conv1_feature, norm1_feature, ...
Activity
manivaradarajan commentedon Jan 11, 2019
Thanks for the problem report.
Event files are designed to be append-only. You could try filtering the histograms by name. Could you please elaborate on why renaming will help you?
Harshini-Gadige commentedon Mar 12, 2019
@jnjaby Could you please elaborate and provide more information as asked above ?
jnjaby commentedon Mar 15, 2019
@manivaradarajan Sorry for the late response. Let me elaborate with a toy example.
Suppose we have a network
conv1 -> norm1 -> relu1 -> conv2 ...
and I save the histograms of feature map before and after 'norm1', named asconv1_feature
andnorm1_feature
, respectively.In tensorboard, they are listed as
conv1_feature, conv2_feature, ..., convn_feature, norm1_feature, ...
. However, those histograms should be in order ofconv1_feature, norm1_feature, ...