Last active
June 9, 2020 17:00
-
-
Save kobybibas/b33da66108e4370183175dbcff684bc5 to your computer and use it in GitHub Desktop.
Connect to TensorBoard that is running on a remote server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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