tensorboard查看日誌問題

1.cd path進入日誌所在目錄

2.tensorboard --logdir=path
Tips:

1.!!!路徑不用加'',否則找不到對應的日誌

2.tensorboard --help查看幫助,明確logdir與路徑之間採用等號連接還是空格連接

  • tensorboard 1.2
    --logdir LOGDIR logdir specifies the directory where TensorBoard will look to find TensorFlow event files that it can display. TensorBoard will recursively walk the directory structure rooted at logdir, looking for .*tfevents.* files. You may also pass a comma separated list of log directories, and TensorBoard will watch each directory. You can also assign names to individual log directories by putting a colon between the name and the path, as in tensorboard --logdir=name1:/path/to/logs/1,name2:/path/to/logs/2
  • tensorboard 1.8
    --logdir: logdir specifies the directory where TensorBoard will look to find TensorFlow event files that it can display. TensorBoard will recursively walk the directory structure rooted at logdir, looking for .*tfevents.* files.You may also pass a comma separated list of log directories, and TensorBoard will watch each directory. You can also assign names to individual logdirectories by putting a colon between the name and the path, as in tensorboard --logdir name1:/path/to/logs/1,name2:/path/to/logs/2
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章