[Solved] Understanding Perceptron training algorithm
Answers to your questions: 1 – This is a binary perceptron algorithm, working on an offline batch. 2 – as you wrote – Y is the labels vector. each label can be either be 1 or -1. 3 – The rational of testing if y*a<=0 is to check if the perceptron classified a certain sample … Read more