Tensorboard 没有显示scalers 和 graphs

问题可以看这里,Tensorboard does not show any scalers or graphs
我在这个问题下更新了自己的回答,现在在博客里重新写一遍,方便中文使用者快速检索到。

Same issue, mac 10.11, python3.5, TF 1.1.0.
Solved by moving to the specific directory.

After I run
python tensorflow-1.1.0/tensorflow/examples/tutorials/mnist/mnist_with_summaries.py
I got two floder named train and test under the /tmp/mnist/logs/mnist_with_summaries.
train and test contains tf event file. Then I run
tensorboard --logdir=/tmp/mnist/logs/mnist_with_summaries
After opening the browser, there are no scalars at all.
简单的说,就是用绝对路径打开tensorboard后,发现没有任何信息

no info

But when I move to the directory /tmp/mnist/logs, and run
tensorboard --logdir=mnist_with_summaries
It works!
但是移动到logs,在相对路径下打开mnist_with_summaries,就能看到正常的scalar等信息

working properly

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容