The solution that tensorboard cannot be opened through google browser in win10 environment

What a pit~ Although I follow the online tutorial step by step, I can even see the address http://127.0.0.1:6006 on cmd, but I just can’t open it....

I finally got to the point when I saw a post

Let's sort it out

The first step is to ensure that tensorflow programs are running, that is, to keep tensorflow in this state

The second step is to check whether there is a path file generated under the folder, which is basically such a file

The third step is to enter the folder of the currently running program in cmd, and enter tensorboard --logdir=the location of the path file --host=127.0.0.1

If the read is successful, it will display

I was stuck in this place before, and I have seen the path, but I can’t open it after entering the path name on the browser

The solution is to change the address name in the browser to

# 解决办法1:
localhost:6006
# 解决办法2:
0.0.0.0:6006

reference:

https://blog.csdn.net/dr_theodore/article/details/80748068

https://blog.csdn.net/jorg_zhao/article/details/81903383

Guess you like

Origin blog.csdn.net/kakangel/article/details/88123823