Quick Draw Recognizer
Deep CNN running on browser using
Examples
Draw Here

Loading Model...

Predictions
This Convolutional Neural Network (CNN) was trained on the Quick Draw dataset by Google to classify the drawn image into the 100 following classes:
The model was the exported into json and binary files and hosted on a server with CORS enabled and is run on client side (your browser) using tensorflow.js. To be able to do so the model was kept simple but was still able to achieve a relative good accuracy. The CNN contains 3 Convolutional - Max pooling pairs of hidden layers folowed by a single Dense hidden layer. The following figure shows the architecture of the Neural Network used.


Architecture of the Neural Network. This figure shows only 2 convolutional layers while the model uses 3 convolutional layers.
The size of the dense layer i.e. n3 = 256 units.

The following figure shows some of the examples correctly identified.


Trained Model:   Model JSON     Model Binaries     Class Names

Thanks to Zaid Alyafeai whose writings inspired this app.