Skip to content

Instantly share code, notes, and snippets.

View kamiradi's full-sized avatar

Aditya Kamireddypalli kamiradi

  • @ipab-rad, University of Edinburgh
  • Edinburgh UK
View GitHub Profile
@sflender
sflender / gist:b7f2f740803924cb8672f7018a4c85eb
Last active September 16, 2021 04:42
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/