Exploring a convolutional network with Quiver

Quiver (https://github.com/keplr-io/quiver) is a recent and very convenient tool used to explore models with the help of Keras. It creates a server that can be accessed by a contemporary web browser and allows the visualization of a model's structure and the evaluation of input images from the input layers until the final predictions.

With the following code snippet, we will create an instance of the VGG16 model and then we will allow Quiver to read all the images sitting on the current directory and start a web application that will allow us to interact with our model and its parameters:

from keras.models import Modelfrom keras.preprocessing import imagefrom keras.optimizers import SGDfrom keras.applications.vgg16 ...

Get Machine Learning for Developers now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.