Tensorflow: v0.11.0rc2 OS: CENTOS 6.8 (No root access)
- The
tensorboardSLURM.sh
can be run with the following command to start a tensorboard server on a SLURM cluster:
sbatch --array=0-0 tensorboardSLURM.sh
-
Check the
tb-%J.out
file for the$SERVER_IP
and$SERVER_PORT
your tensorboard server. -
ssh to your cluster, passing the above variables and a
$LOCAL_PORT
to pass the server page to:
ssh [email protected] -L $LOCAL_PORT:$SERVER_IP:$SERVER_PORT
- In your browers go to http://localhost:$LOCAL_PORT
Thanks to Will McFadden for doing this first with iPython!