Tensorboard Not Running Properly on port 6006

前端 未结 2 630
深忆病人
深忆病人 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
    

提交回复
热议问题