Let's start with the typical Hello World of machine learning with images--the MNIST handwritten numeral classification exercise.
TensorFlow conveniently comes with a test script demonstrating a convolutional neural network using the MSNIST handwritten, available at https://github.com/tensorflow/models/blob/master/tutorials/image/mnist/convolutional.py.
Let's modify this script to allow TensorBoard usage. If you wish to peek ahead, download ...