1. 程式人生 > >python + tensorflow tensorboard HTTP://0.0.0.0:6006 無法訪問 解決方法

python + tensorflow tensorboard HTTP://0.0.0.0:6006 無法訪問 解決方法

啟動命令:

tensorboard --logdir="tensorboard"

啟動後顯示

Starting TensorBoard b'47' at http://0.0.0.0:6006

...

因為 win10 將 localhost 解析為 ipv6地址 [::1],所以無法使用  http://0.0.0.0:6006 檢視 tensorboard

解決方法:

use chrome
http://localhost:6006

tensorboard 簡介

http://www.cnblogs.com/hellocwh/p/5776795.html

官方介紹

git  tensorflow/tensorboard/README.md

https://github.com/tensorflow/tensorflow/blob/r0.12/tensorflow/tensorboard/README.md

官網介紹

https://www.tensorflow.org/versions/master/how_tos/graph_viz/index.html

https://www.tensorflow.org/versions/master/how_tos/summaries_and_tensorboard/index.html

1. TensorBoard無法開啟問題

首先使用命令:tensorboard --logdir=/tmp/mnist_logs/train/ 
生成網址:

這裡寫圖片描述 
複製http://0.0.0.0:6006到chrome中發現無法開啟網頁, 
後來發現本機host不一定是0.0.0.0,於是將網址改為:
http://localhost:6006

 
之後正常開啟: 
這裡寫圖片描述
但是出現了No scalar data was found的問題

2. No scalar data was found的解決

只需將cmd目錄cd進入日誌檔案存放的目錄,再載入日誌檔案便可解決:

這裡寫圖片描述 
之後的效果圖: 
這裡寫圖片描述