understanding backpropagation

This post will cover the Backpropagation algorithm used to train supervised Neural Networks. Motivations and mathematical details will be covered.

perceptron algorithm from scratch in python

This article covers an implementation of the Perceptron Algorithm from Scratch. The model is first described, and then built & tested in Python.

neural networks explained

Here I aim to have Neural Networks explained in a comprehensible way. My hope is the reader will get a better intuition for these learning machines.

neural network activation functions

Learn 7 popular Neural Network activation functions, used in architectures from the Perceptron to the most complex Deep Learning model.

decision trees for clustering

Can Decision Trees be used for clustering? This post will outline one possible application of Decision Trees for clustering problems.

k-means from scratch in python

In this post, I will implement K-Means from scratch in Python. We will start from first principals, and go on to code a fully-functional K-Means model.