How do display different runs in TensorBoard?

Viewed 68977

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?

4 Answers

New version of tensorboard changed logdir to logdir_spec:

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

It seems that just declaring it like this is ok:

writer = SummaryWriter(logdir='/runs/you_tag')

Then tensorboard will create a you_tag folder below runs/, in the meantime, the web application will refresh and find you_tag.

Related