Note : 该方法可以查看服务器上的tensorboard或者fateborad。
在本地命令行运行:
ssh -L 16006:127.0.0.1:6006 user@host -N -v -v
127.0.0.1是本地地址,user是服务器用户,host是服务器地址;
意思是将服务器的6006端口内容 转发到本地的16006
然后在本地打开:
http://localhost:16006
或者http://127.0.0.1:16006即可。
这样就可以在服务器上查看某个url的输出结果了。