Kenzo's Blog


Entrepreneurship, Machine Learning

K-Means Clustering from Scratch in Python

K-means is the most popular clustering algorithm. The basic idea is that it places samples in a high dimensional space according to ...


Naive Bayes from Scratch in Python

Naive bayes is a basic bayesian classifier. It's simple, fast, and widely used. You will see the beauty and power of bayesian ...


Logistic Regression from Scratch in Python

Logistic Regerssion is a linear classifier. Despite the name, it is a classification algorithm. It's very similar to linear ...


Linear Regression from Scratch in Python

Linear Regression is the most basic regression algorithm, but the math behind it is not so simple. The concepts you learn in linear ...


Scikit-learn's Useful Tools from Scratch

Scikit-learn offers a lot of tools that make our life easier. Many of them are really simple, so let's write them from ...


K-Nearest Neighbor from Scratch in Python

We are going to implement K-nearest neighbor(or k-NN for short) classifier from scratch in Python. k-NN is probably the ...


Page 1 / 1