Without even having TensorFlow installed, you can play with a reference implementation of TensorBoard. You can get started here:
https://www.tensorflow.org/tensorboard/index.html#graphs.
You can follow along with the code here:
The example uses the CIFAR-10 image set. The CIFAR-10 dataset consists of 60,000 images in 10 classes compiled by Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton. The dataset has become one of several standard learning tools and benchmarks for machine learning efforts.
Let's start with the Graph Explorer. We can immediately see a convolutional network being used. This is not surprising as we're trying to classify images here:
This is just one possible view of the graph. You can try the Graph Explorer as well. It allows deep...