I'm trying to wrap my head around the fixed-increment single-sample learning algorithm, I gather that it's the simplest case of neural network with two category and one output.
This is what I understand so far from a slide I found from Google that explained the steps:
- Initialise the weight vector, w
- Apply the input vector
- Compute the actual result g(x) using wT * input vector
I have to put the result through the sigmoid function first,yes?
4.Adapt the weight vector, w if the desire result is different to actual result (g(x)).
What I dont understand is what is the desire result here? The actual result obviously is g(x), yes? And what do I do adapt the weight vector?
5.Continue until classified all.
If someone can help answering my questions that would be great. A simple example would be awesome also.
Cheers