轉自https://blog.csdn.net/Hansry/article/details/83004648
1. 在登錄遠程服務器的時候使用命令:
ssh -L 16006:127.0.0.1:6006 server_name@server.address
其中server_name指工作站名字,server.address指工作站IP
2. 加載訓練模型時,在終端中運行如下命令:
tensorboard --logdir="/path/to/log-directory"
(其中,/path/to/log-directory為自己設定的日志存放路徑)
3. 最后在瀏覽器中輸入: http://127.0.0.1:16006/
報錯情況一:端口被占用
即已經有人在工作站上使用了6006端口,報錯信息如下:
ERROR:tensorflow:TensorBoard attempted to bind to port 6006, but it was already in use
TensorBoard attempted to bind to port 6006, but it was already in use
可切換成8008端口,具體操作為將上面登錄遠程服務器的命令改為以下命令:
ssh -L 18008:127.0.0.1:8008 server_name@server.address
接着加載模型時使用:
tensorboard --logdir="/path/to/log-directory" --port=8008
