Skip to content

Instantly share code, notes, and snippets.

@jakelevi1996
Last active May 18, 2019 19:12
Show Gist options
  • Save jakelevi1996/e5bcd3a8adf2ad38d303506d1c8ac4fd to your computer and use it in GitHub Desktop.
Save jakelevi1996/e5bcd3a8adf2ad38d303506d1c8ac4fd to your computer and use it in GitHub Desktop.
Automating Tensorboard

Automating Tensorboard

In order to run Tensorboard, you have to open a command window, type a command which resembles tensorboard --logdir ., open a browser, and then navigate to the appropriate URL; altogether this procedure is extremely difficult and entirely repulsive. The following batch script, saved as run tensorboard.bat, automates the process:

start /b tensorboard --logdir .
start /b http://Jakes-Laptop:6006

Note that you shouldn't save the script simply as tensorboard.bat (source).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment