本地连接远程服务器查看tensorboard

使用xshell设置一个连接,在本地浏览器打开服务器上的localhost:6006

设置方法:xshell7 属性-连接-ssh-隧道-添加,源主机:127.0.0.1,端口:4567(随便写的),目标主机:服务器主机,目标端口:6006

tensorboard --logdir=''

运行后提示:

Serving TensorBoard on localhost; to expose to the network, use a proxy or pass --bind_all

于是尝试:

tensorboard --logdir='' --bind_all

通过在本地浏览器访问127.0.0.1:4567可以得到结果。

你可能感兴趣的:(pytorch,服务器,ssh,运维)