|
The Self-Organizing Map and variants
|
Kristof Van Laerhoven
|
||||||||
|
The Kohonen Self-Organizing Map |
|||||||||
|
The Kohonen Self-Organizing Map (KSOM or just SOM) (1982) is an unsupervised neural network: this means it does not need any feedback from a teacher (or the environment as a teacher), unlike many other neural networks. It is based upon earlier work of Willshaw and von der Malsburg (1976). The KSOM usually has an output layer of interconnected
neurons that are fully connected to the input layer, so every neuron from
the output layer is connected to every neuron from the input layer. This
connection has a certain value, which is just like in the domain of the
supervised networks called a weight. Every neuron from the output layer has
consequently as many weights as the neural network has inputs. The output
neurons are furthermore ordered in a particular way, usually a
two-dimensional grid, where each neuron has ‘neighbours’ (to the left, the
right, up and down in the case of a grid). The KSOM was inspired by the way
in which various human sensory impressions are topographically mapped into
the neurons of the brain. Structure of a Kohonen SOM:
Each time an input is presented to the SOM, this input vector is compared to the weight vector of every neuron from the output layer. The neuron with the most similar weight vector is selected and is permitted to update its weights towards the values of the input vector. If a similar input is presented afterwards, this neuron will be more likely to win again because it could update its weights while the weights of the other neurons remained unchanged. The formula to find a winner is consequently given by:
To introduce topology in the output layer, this algorithm is modified in such a way that the neighbouring neurons of the winner are also allowed to update their weights, but not as much as the winner itself:
where a is the learning rate and h depends on the distance to the winner. This algorithm is responsible for creating and adapting neurons that are trained to trigger for a specific input: the values from the high dimensional input space are mapped to a discrete output space (the grid of neurons).
The algorithm to produce a Kohonen SOM.
|
The output layer of the KSOM after one epoch of training.
The output layer of the KSOM after two epochs of training.
The output layer of the KSOM after three epochs of training.
The output layer of the KSOM after four epochs of training.
The output layer of the KSOM after 5 epochs of training.
|
||||||||
|
References & pointers |
|||||||||
|
|
|||||||||
Compiled by Kristof Van Laerhoven. Last Update: 02/01/2002 15:16 -0000