In the 1950s, American psychologist and artificial intelligence researcher Frank Rosenblatt invented an algorithm that would automatically learn the optimal weight coefficients w0 and w1 needed to perform an accurate binary classification: the perceptron learning rule.
Rosenblatt's original perceptron algorithm can be summed up as follows:
- Initialize the weights to zero or some small random numbers.
- For each training sample si, perform the following steps:
- Compute the predicted target value Å·i.
- Compare Å·i to the ground truth yi, and update the weights accordingly:
- If the two are the same (correct prediction), skip ahead.
- If the two are different (wrong prediction), push the weight coefficients w0 and w1 towards the positive or negative target class respectively.
Let's have a closer look at the last step, which is the weight...