Git Product home page Git Product logo

k-12-educational-demos's Introduction

K-12-Educational-Demos

K-12-AI-Demos| Doodle Net Drawing Classifier

It is a web-based application that recognizes the drawings of cat, sheep, dog, bear, cow, and triangle made on canvas.

Dataset

The data used is taken from the Quick Draw Dataset that is in NumPy format that is pre-processed to 28*28 grayscale images . Subset of this dataset has been used i.e., 50000 images for every class (total 6 classes).

Data is split into training and testing in 60and 40 ratios respectively.

Data is loaded as shown below:

Labels are added for all the classes in following way:

Print some of the drawings for each class to see how they look.

It would give output similar as below:

Data is merged for all the classes together taking 50000 images for each class and data is shuffled.

Divide this data in two different arrays X consisting of pixel data and Y consisting of labels.

Split the dataset into training dataset and testing dataset

Images are normalized, so that values are between 0 and 1 to make the training easier

Reshape the images to 28*28 size

Training Model It is a type of classification problem where there are 6 classes - cat, sheep, dog, bear, cow, and triangle and one class is predicted when an image is drawn on the canvas.

Model has been trained using CNN model with Keras and then converted into model. Json file using tensorflow.js converter. Keras is a deep learning API written in Python, running on top of the machine learning platform TensorFlow.

CNN Model(Convolution Neural Network Model) – 10 layers are added to train this model First is Convolution layer with 64 filters of 55 size and activation function is ReLU(Rectified Linear Unit) Max Pooling Layer is added with pool size of 22.(It is used to compress the image) Another is Convolution layer with 64 filters of 33 size and activation function is ReLU(Rectified Linear Unit) Max Pooling Layer is again added with pool size of 22 Convolution layer with 128 filters of 33 size and activation function is ReLU(Rectified Linear Unit) is added Max Pooling Layer is added with pool size of 22 Flatten Layer is added to flatten the square images into 1 dimensional Another Layer is Dropout Layer with probability of 0.2 Dense Layer (Fully Connected Layer) is added with 256 neurons and ReLU activation function Output Layer/Softmax Layer is added where number of neurons is equal to number of classes i.e., 6 (Softmax Layer will take probabilities for each class and choose the one with the highest probability)

Model is defined in following way:

Model is compiled in following way:

Print the summary of model in following way:

Summary for the model will be printed in this way:

Model is fit in following way:

Here, the neural network will learn the relationship between X and y where X is the pixel data for drawings and y is the label for all the images . Epoch is equal to 20 as accuracy is not increasing after that, and batch size is 200

Evaluation of model is done in following way:

Accuracy can be printed in following way:

Accuracy for this model is 92.13%

Prediction can be made as shown below:

model.predict returns the probability for each class and argmax returns the class with the highest probability.

Accuracy can also be calculated in following way:

Print the confusion matrix as shown below:

Confusion matrix describes the performance of the model. It is a matrix that contains the count of correct and incorrect predictions made by the model. It will be printed similar to the below image:

Classification report can be printed in following way:

Classification report will return the classification metrics like precision, recall and F-1 score. It will be printed as shown below.

Model is first saved as keras.h5. The Keras.h5 file contains the model’s architecture, weights values and compile information. It is then converted to .json format using tensorflow.js converter in the following way so that it is compatible with the javascript code.

The code above will create a folder entitled model, which holds a file called class_names.txt, which contains all of the classes that a sketch can be classified as. The folder also contains a file entitled group1-shard1of1.bin. The file is utilized in our model.json (Javascript Object Notation) which is also stored in our model folder.

Our website utilizes basic HTML and JS. It must be noted that all of this JS code was graciously made open source by yining1023 in her doodleNet file. Big thanks to her.

More specifically, this project uses a JS library called p5.js, a platform that has a variety of artistic capabilities and functions. Here are a few of the functions used in this project:

createCanvas() creates a canvas for the user to draw on.

background() will set the background of the canvas to a specific rgb value. In the code below, our clear button is effectively erasing the doodles on the canvas by setting the color of the whole canvas.

To load our local json model into the javascript, we use the following function:

In order for the user’s doodle to be properly passed in and identified by our keras model, we need to format it in a very specific way. yining1023 resized the doodle into a 28 x 28 format. This is so that the images are compatible with our model, which was also trained on datasets containing 28 x 28 pictures.

loadPixels() is a p5.js function which stores the image pixel data into a pixels array. From here, the data is converted into yet another format, which is stored in an array labeled inputs. Variables onePix contains a value between 0 and 1 (rather than the traditional 0-255). The pixel value is appended to oneRow. When a full row is completed, meaning the length of oneRow is 28, it is appended to inputs.

Here is an example of the inputs array. It will continuously update as the user draws:

After the doodle has been formatted properly, our json model can now use it to predict different classes:

guess array contains an array with the different probabilities of each class (essentially displaying our keras model softmax layer)

In order to display these probabilities and their corresponding classes on the front end, a CLASSES array is initialized:

Then for each element in the CLASSES array, its probability is stored:

Something to keep note of is that the order of elements in the CLASSES array may cause computational bias when allocating probabilities.

k-12-educational-demos's People

Contributors

srijaghosh2015 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.