This is the code for the "How to Use Tensorboard" live session by Siraj Raval on Youtube
This is the code for this video on Youtube by Siraj Raval. We're going to classify handwritten characters using a convolutional neural network. Then we'll visualize the results in tensorboard, including a demo of the new embedding visualizer.
- os
- tensorflow
- sys
- urllib
Install dependencies with pip.
Run python mnist.py
in terminal to train the code.
Visualize it with this command in terminal after training.
tensorboard logdir='/tmp/mnist_tutorial/'
The credits for this code go to mamcgrath. I've merely created a wrapper to get people started.