How can I run Tensorboard on a remote server?

前端 未结 12 1736
青春惊慌失措
青春惊慌失措 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:53

    You don't need to do anything fancy. Just run:

    tensorboard --host 0.0.0.0 
    

    and connect with your server url and port. The --host 0.0.0.0 tells tensorflow to listen from connections on all IPv4 addresses on the local machine.

提交回复
热议问题