Content deleted Content added
Reverted to revision 743846855 by 81.204.51.172 (talk): Test? (TW) |
m The algorithm was describing an unsupervised method, so I added the use of the labels. My reference is the link given at the end of the algorithm section |
||
Line 18:
Below follows an informal description.<br>
The algorithm consists of 3 basic steps. The algorithm's input is:
* how many neurons the system will have <math>M</math> (in the simplest case it is equal to the number of classes)
* what weight each neuron has <math>\vec{
*
*
* and an input list containing tuples of vectors with labels to train the neurons <math> L </math>
The algorithm's flow is:
# For next input <math>(\vec{
# Update <math>\vec{
# While there are vectors left in <math> L </math> go to step 1, else terminate.
Note: <math>\vec{
A more formal description can be found here: http://jsalatas.ictpro.gr/implementation-of-competitive-learning-networks-for-weka/
|