Re: Perceptron Learning Algorithm
Hi
I have a question about how weighting is assigned and the meaning of the PLA . For point a1 which has assignment 1, does w(a1.y) + w(a1.x) = 1 ? ( '.' denotes subscript)
And then, for point a2 which has assignment -1, would
w(a1.y) + w(a1.x) + w(a1.x) + w(a2.x) = -1 , and so on?
To adjust weighting of w for misclassified points, is w.x2 = w.x1 + x.2 * y.2
Thank you for the help!
|