DeepBenBello

Curious minds attempting to bring beauty in data.

Follow publication

Hands-on Tutorials

The Full (Stack) Story of a Text Classifier

Oscar de Felice
DeepBenBello
Published in
9 min readNov 2, 2020

--

If you get this reaction, feel lucky. Image created by the author on the base from https://facciabuco.com

What are we going to do?

Let’s build the model in Python

Image created by the Author on the base from https://imgflip.com/

Load data

Build the model

====================================================================Model: "sequential"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding (Embedding) (None, 75, 64) 4079296
_________________________________________________________________
dropout (Dropout) (None, 75, 64) 0
_________________________________________________________________
conv1d (Conv1D) (None, 75, 50) 9650
_________________________________________________________________
max_pooling1d (MaxPooling1D) (None, 37, 50) 0
_________________________________________________________________
dropout_1 (Dropout) (None, 37, 50) 0
_________________________________________________________________
conv1d_1 (Conv1D) (None, 37, 100) 15100
_________________________________________________________________
max_pooling1d_1 (MaxPooling1 (None, 18, 100) 0
_________________________________________________________________
dropout_2 (Dropout) (None, 18, 100) 0
_________________________________________________________________
conv1d_2 (Conv1D) (None, 18, 200) 60200
_________________________________________________________________
global_max_pooling1d (Global (None, 200) 0
_________________________________________________________________
dropout_3 (Dropout) (None, 200) 0
_________________________________________________________________
dense (Dense) (None, 100) 20100
_________________________________________________________________
activation (Activation) (None, 100) 0
_________________________________________________________________
dropout_4 (Dropout) (None, 100) 0
_________________________________________________________________
dense_1 (Dense) (None, 4) 404
_________________________________________________________________
activation_1 (Activation) (None, 4) 0
=================================================================
Total params: 4,184,750
Trainable params: 4,184,750
Non-trainable params: 0
_________________________________________________________________

Training

Performances are not bad, also because classes are balanced. Image by Author

Convert the model from Keras to Tensorflow.js

pip install tensorflowjs
tensorflowjs_converter --input_format=keras modelCNN.h5 ./model/

The Tokeniser issue

TensorFlow JS model

Copy and paste: one of the best resources of the FullStack Overflow developer. Image under Creative Commons license from Noun Project.

The HTML structure

You should get something like this. Image by Author

Load model in JavaScript

Can you see the light at the end of the tunnel? Photo by Adrien Olichon on Unsplash

That’s All. Tired Right?😴

Image on creative commons by giphy.com

IMPORTANT: I publish this post also to get suggestions, discussion and to be made aware of points of weakness in my coding. Please, signal any mistakes/reduntant code! 😫

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

DeepBenBello
DeepBenBello

Published in DeepBenBello

Curious minds attempting to bring beauty in data.

Oscar de Felice
Oscar de Felice

Written by Oscar de Felice

Senior Data Scientist | Curious Mind | PhD in theoretical physics

Responses (1)

Write a response