Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Platform access tensorboard

I am new to Google Cloud (and unix) and have been using ml-engine to train a neural net using Tensorflow.

Here it says that you can monitor the app using tensorboard. How can I access the tensorboard panel? When I run it (from the Cloud Shell Access console) it says it's running at http://0.0.0.0:6006

I don't know the IP of the Cloud Shell console, how can I access the tensorboard panel?

The command I run (and output):

tensorboard --logdir=gs://model_output
Starting TensorBoard 47 at http://0.0.0.0:6006

Thanks!

like image 266
XCS Avatar asked Apr 30 '17 20:04

XCS


Video Answer


1 Answers

The easiest is to adjust your command to: tensorboard --logdir=gs://model_output --port=8080

E.g. adding --port=8080 to your command, which allows you to just use the default Web Preview option of Cloud Shell

enter image description here

like image 193
Fematich Avatar answered Oct 11 '22 22:10

Fematich