numpy

Naive Bayes

Mon, 18 May 2020 by Mrunal Jadhav,Pritish Jadhav / Probability and Statistics

Naive Bayes belongs to the family of probabilistic algorithms that take advantage of Probability Theory and Bayes Theorem to predict the class. Let's learn how it works!!

Read more

Conditional Probability and Independence

Wed, 13 May 2020 by Mrunal Jadhav,Pritish Jadhav / Probability and Statistics

In supervised machine learning, we are building predictive models that predict variance of some variable, using variance of some other variables. To model these connections, we have to learn Conditional Probabilities and Independence of events.

Read more

Linear regression using numpy

Fri, 08 Jun 2018 by Pritish Jadhav, Mrunal Jadhav / Machine Learning

Linear Regression is one the most basic algorithm on ML. With the likes of sklearn providing an off the shelf implementation of Linear Regression, it is very difficult to gain an insight on what really happens under the hood. This tutorial is aimed at implementing Linear Regression from scratch in python using Numpy.

Read more