Cannot find scalar bulletins in TensorBoard

I am doing an mnist tutorial, and full_connected_feed.py works and saves the events.out.tfevents.1447186888 file to ~ .. \ data \ when I try to open a TensorBoard like this

python ~/tensorflow/tensorflow/tensorboard/tensorboard.py --logdir=~/tensorflow/tensorflow/g3doc/tutorials/mnist/data 

or how is it

 tensorboard --logdir=~/tensorflow/tensorflow/g3doc/tutorials/mnist/data 

It opens, but then I see "No scalar summary tags found."

+7
tensorflow tensorboard
source share
1 answer

Try using

tensorboard --logdir=home/$USER/tensorflow/tensorflow/g3doc/tutorials/mnist/data

or

tensorboard --logdir=${PWD} in this directory

Since the tensor panel checks the existence of a path using os.path.exists ()

=

Regarding this, I would like to set alias tensorboard='tensorboard --logdir=${PWD}' for convenient

+14
source share

All Articles