Unable to open Tensorboard in browser

后端 未结 10 570
眼角桃花
眼角桃花 2020-12-24 02:50

I am following google cloud machine learning tutorial and I am unable to Launch TensorBoard

I\'ve followed the steps in the above tutorial (also set up my environme

10条回答
  •  天涯浪人
    2020-12-24 03:41

    I faced the same problem when used Tensorboard inside a Docker container. The successful steps in my case were:

    1. First of all, make sure the port you use for Tensorboard is opened to the outside world. To make this possible run your Docker container with an option -p :. For example:

    docker run --name my_tensorboard_container -p 7777:8080 my_tensorboard_image bash

    1. Then if you still cannot access the Tensorboard try to add --bind_all option like so:

    tensorboard --bind_all --port 8080 --logdir ./logs

    Hope, it works in your case as well.

提交回复
热议问题