Skip to content

Instantly share code, notes, and snippets.

@kobybibas
Last active June 9, 2020 17:00
Show Gist options
  • Save kobybibas/b33da66108e4370183175dbcff684bc5 to your computer and use it in GitHub Desktop.
Save kobybibas/b33da66108e4370183175dbcff684bc5 to your computer and use it in GitHub Desktop.
Connect to TensorBoard that is running on a remote server.
# In .ssh/config file:
Host aws
HostName **********.compute.amazonaws.com
User ubuntu
IdentityFile ******.pem
IdentitiesOnly yes
LocalForward 6006 0.0.0.0:600
# In aws server
tensorboard --logdir .
# In local computer browser
http://localhost:6006/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment