Table of contents {: .text-delta }
  1. Before you Begin
    1. Linear Algebra Review
    2. Defining Linear Boundaries
  2. Perceptron
    1. Algorithm
    2. Need for Intercept
    3. Summary

Before you Begin

Linear Algebra Review

Defining Linear Boundaries

The most basic equation of a line is y = mx + c. This leads us to the formulation of a baseline linear function to be:

wx + b = 0 which essentially defines a line

Perceptron

This basic algorithm is our intro to linear classifiers. The special part here is that it only works on sign(prediction) and not on how good the actual prediction turns out.

Algorithm

Need for Intercept

Summary