How can I run Tensorboard on a remote server?

前端 未结 12 1737
青春惊慌失措
青春惊慌失措 2020-12-12 09:19

I\'m new to Tensorflow and would greatly benefit from some visualizations of what I\'m doing. I understand that Tensorboard is a useful visualization tool, but how do I run

12条回答
  •  再見小時候
    2020-12-12 09:46

    For anyone who must use the ssh keys (for a corporate server).

    Just add -i /.ssh/id_rsa at the end.

    $ ssh -N -f -L localhost:8211:localhost:6007 myname@servername -i /.ssh/id_rsa

提交回复
热议问题