How do display different runs in TensorBoard?

2019-01-14 00:57发布

TensorBoard seems to have a feature to display multiple different runs and toggle them.

enter image description here

How can I make multiple runs show up here and how can assign a name to them to differentiate them?

2条回答
劫难
2楼-- · 2019-01-14 01:19

In addition to TensorBoard scanning subdirectories (so you can pass a directory containing the directories with your runs), you can also pass multiple directories to TensorBoard explicitly and give custom names (example taken from the --help output):

tensorboard --logdir=name1:/path/to/logs/1,name2:/path/to/logs/2

More information can be found at the TensorBoard documentation.

查看更多
叛逆
3楼-- · 2019-01-14 01:22

I found the answer to my own question on github (https://github.com/tensorflow/tensorflow/issues/1548).

You need to put your logs in a subfolder e.g. /logs/run1/ and then run tensorboard on the root folder e.g. /logs/.

查看更多
登录 后发表回答