Reputation: 1979
I'm trying to open a tensorboard using the example code. I ran the example locally and then tried to open in tensorboard using the following command tensorboard --logdir=F:\mnist_tmp\tensorflow\mnist\logs\mnist_with_summaries\
.
Tensorboard starts, however I am not able to see any data ie, scalars, graphs, or histograms.
Below is a picture of what I see when I open tensorflow. If I click on the other tabs I get a similar text dialog.
Upvotes: 0
Views: 471
Reputation: 11
Don't use '' to brace the dir , just use the
tensorboard --logdir=dir
if you use the win10
System Operation
Upvotes: 1
Reputation: 1979
My issue was that I my log logdir contained the F:
but tensorflow uses colon as an seperator which is a known bug.
Upvotes: 0