I'm new to Tensorflow and would greatly benefit from some visualizations of what I'm doing. I understand that Tensorboard is a useful visualization tool, but how do I run it on my remote Ubuntu machine?
Here is what I do to avoid the issues of making the remote server accept your local external IP:
-L
to transfer the port 6006
of the remote server into the port 16006
of my machine (for instance):
ssh -L 16006:127.0.0.1:6006 olivier@my_server_ip
What it does is that everything on the port 6006
of the server (in 127.0.0.1:6006
) will be forwarded to my machine on the port 16006
.
tensorboard --logdir log
with the default 6006
port