Skip to content

Instantly share code, notes, and snippets.

@sflender
Last active September 16, 2021 04:42
Show Gist options
  • Save sflender/b7f2f740803924cb8672f7018a4c85eb to your computer and use it in GitHub Desktop.
Save sflender/b7f2f740803924cb8672f7018a4c85eb to your computer and use it in GitHub Desktop.
How to use tensorboard on remote server
There are two ways for using tensorboard on a remote server:
--1. Use sshfs.
However, I found that this method is pretty slow, in particular if you want to compare several different long runs in tensorboard.
--2. ssh with a port forwarding:
ssh -L 16006:127.0.0.1:6006 user@remote
Then, on your local machine simply open
http://127.0.0.1:16006/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment