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
I faced the same problem when used Tensorboard inside a Docker container. The successful steps in my case were:
-p :
. For example: docker run --name my_tensorboard_container -p 7777:8080 my_tensorboard_image bash
--bind_all
option like so: tensorboard --bind_all --port 8080 --logdir ./logs
Hope, it works in your case as well.