Tensorboard Not Running Properly on port 6006

前端 未结 2 629
深忆病人
深忆病人 2021-01-25 17:45

I\'ve been having problems with tensorboard probably due to a unclean exit in windows10. I use the below code to launch it in Jupyter:

%load_ext tensorboard
%ten         


        
相关标签:
2条回答
  • 2021-01-25 17:59

    Reading this Github issue, you can find that specifying the host manually when launching Tensorboard apparently does the trick.

    Instead of

    %tensorboard --logdir {logs_base_dir} 
    

    Run

    %tensorboard --logdir {logs_base_dir}  --host localhost
    
    0 讨论(0)
  • 2021-01-25 18:13

    Did you try mentioning the same port in the Jupyter notebook

    %load_ext tensorboard
    %tensorboard --logdir={dir} --port=6005
    
    0 讨论(0)
提交回复
热议问题