What's The Best Way To Refresh Tensorboard After New Events/logs Were Added?
Solution 1:
It turns out that TensorBoard backend refreshes the logs every minute. This has been reported as a TensorFlow issue.
The reload interval can be configured using the --reload_interval
flag of the TensorBoard process, but this option is currently only available in master and as of version 0.8 has not been released.
Solution 2:
I advise to always start tensorboard with --reload_multifile True
to force reloading all event files.
Solution 3:
My issue is different. Each time I refresh 0.0.0.0:6006
, it seems the new graph keep appending to the old one, which is quite annoying.
After trying kill process and delete old log several times, I realized the issue comes from writer.add_graph(sess.graph)
, because I didn't reset the graph in jupyter notebook. After resetting, the tensorboard could show the newest gragh.
Post a Comment for "What's The Best Way To Refresh Tensorboard After New Events/logs Were Added?"