Implementing the Perceptron algorithm from scratch with Python

Introduction Perceptron is a fundamental algorithm for binary classification in Machine Learning. The perceptron is a mistake-driven online learning algorithm. It is often said that the perceptron is modeled after neurons in the brain. It has m input values (which correspond with the features of the examples in the training set) and one output value. Continue reading Implementing the Perceptron algorithm from scratch with Python