[Day 127] Serving an API endpoint for news classification + Stanford's CS109

 Hello :)
Today is Day 127!


A quick summary of today:
  • learned a bit more about Docker's potential and deployed a model to classify news text into categories (github)


Firstly, about the mini-project

After yesterday, I wanted to learn more about what Docker can do when it comes to MLops. Luckily, I found this tutorial which develops a text's language classification model, bundles it with Docker and publishes an endpoint to Heroku. How did I do it?

For a start, I wanted to do a simple model too, so I chose to write a simple model that classifies a piece of news into categories like sport, politics, tech, etc. I found a dataset on Kaggle and trained a simple multinomial naive Bayes that takes a tokenized bag of words and classifies them into sports, tech, politics, entertainment and business (the code is in my repo). 

Then I packaged the model with pickle, and using FastAPI, I created an endpoint that takes text, sends it to the model and we get a response back like:

Query: 'Chelsea scored a great goal last night'

Response: {'Politics': 0.0001, 'Sport': 99.9926, 'Technology': 0.0, 'Entertainment': 0.0073, 'Business': 0.0}

Using FastAPI, using the API locally was easy, I went to the chosen port

To query the model we use /predict
But instead of installing Postman to send requests to the API, FastAPI provides a /docs endpoint where we can test the functionality (we can see all the available endpoints)

And we can try out the /predict endpoint right there
Write the string, click execute, and 
The only part I did not do, is publish the app to heroku because they require a credit card. But using Docker I saw how that can be done.

Secondly, about Stanford's CS109 Probability for Computer Scientists course

I randomly stumbled upon it, and wow... Professor Chris Piech is so amazing. His teaching is so engaging and even though I am just sitting in front of a screen, his excitement to teach is making me even more excited to learn. 

Today I watched Lecture 14: Modelling

It was mainly about joint probability distributions, constructing Bayesian networks and using marginalization to obtain the probability distribution of a subset of a set of random variables from the joint probability distribution of all variables.

Lecture 15: General Inference

It introduced covariance/correlation, rejection sampling, using continuous and binary variables in Bayesian nets and sampling,  

Lecture 16: Beta distribution

It talked about the Beta distribution - used as a prior distribution for modeling probabilities

With the beta distribution instead of having a sinple number to represent a probability, we have a distribution and we can represent our uncertainty.
In cases like the below, we can say the in the 1st case, the beta distribution is like uniform, but the 2nd we can that the statement is more reliable thanks to the beta distribution. 

I will watch a few more in the next days ^^ Listening to the professor feels relaxing and interesting (even though it is undergrad statistics).


Finally, about the visualization of activation functions in a neural net

In the video linked, we are shown non-linear data (on the left), and the neural net that will fit it (on the right)

During training, we see how each neuron contributes to the change from a straight line to fitting this curvature. 

At the start:

Middle during training:
Towards the end:
Final fitted data:

The video has animations as well and it is a very neat way of showing how each neuron controbutes. 



That is all for today!

See you tomorrow :)

Popular posts from this blog

[Day 198] Transactions Data Streaming Pipeline Porject [v1 completed]

[Day 107] Transforming natural language to charts

[Day 54] I became a backprop ninja! (woohoo)