知道如何啟動tensorboard後,就該了解一下怎麼使用它。
1. 執行python示例,test.py
import tensorflow as tf
with tf.name_scope('graph') as scope:
matrix1 = tf.constant([[3., 3.]],name ='matrix1') #1 row by 2 column
matrix2 = tf.constant([[2.],[2.]],name ='matrix2') # 2 row by 1 column
product = tf.matmul(matrix1, matrix2,name='product')
sess = tf.session()
writer = tf.summary.filewriter("logs/", sess.graph)
init = tf.global_variables_initializer()
sess.run(init)
2. 啟動tensorboard
>tensorboard --logdir=d:\develop\python\ex\logs
注:這裡logdir的值和第一步logs/的路徑是同乙個
3. 用瀏覽器訪問開啟graph選單如下:
無法使用tensorboard
win10 tensorflow gpu1.13.1 無法使用tensorboard,幾乎什麼方法都試過了。在cmd中輸入命令時可以獲得進入tensorboard的鏈結位址,但是放到瀏覽器上就是打不開 除ie以外,主流瀏覽器基本都嘗試過 其實這個版本的tensorflow我之前也用過,之前是可以開啟...
tensorboard使用理解
前段時間第一次接觸tensorboard,網上教程也很簡單易懂。如果伺服器 linux 有多個節點 node 就得注意一點。首先 伺服器端啟動tensorboard服務端 tensorboard logdir path to log directory伺服器端是linux命令列介面,檢視圖形只能從本...
使用tensorboard問題總結
1.問題 attributeerror module object has no attribute summarywriter tensorflow版本問題 tf.train.summarywriter函式替換為tf.summary.filewriter2.問題 importerror no mo...