baselines icon indicating copy to clipboard operation
baselines copied to clipboard

Question about tensorboard logger

Open martinsan03 opened this issue 4 years ago • 0 comments

hello

I'm trying to export the graph and weights histograms to tensorboard. I managed to do that by creating a second file using tf.summary.FileWriter and to locate it in the same directory where baselines put the event file. The problem is that tensorboard only refresh when baselines event file is updated as it considers my file to be from an older run. So I need to restart tensorboard in order to reload graph and histogram file. I'm looking to write all the information on the same event file to avoid this issue. I checked the implementation of baselines logger and you are using EventWritter, which has no implementation of add_graph (as tf.summary.FileWriter as). Can you orient me in order to get rid of this problem? Regards!

Martin

martinsan03 avatar Jan 24 '21 16:01 martinsan03