How can I run Tensorboard on a remote server?

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

    You can directly run the following command on terminal of your remote server to run tensorboard:

    tensorboard --logdir {tf_log directory path} --host "0.0.0.0" --port 6006
    

    Or you can also start the tensorboard within your ipython notebook:

    %load_ext tensorboard
    %tensorboard --logdir {tf_log directory path} --host "0.0.0.0" --port 6006
    

提交回复
热议问题