Open In App

ANN – Self Organizing Neural Network (SONN)

Improve
Improve
Like Article
Like
Save
Share
Report

Self Organizing Neural Network (SONN) is an unsupervised learning model in Artificial Neural Network termed as Self-Organizing Feature Maps or Kohonen Maps. These feature maps are the generated two-dimensional discretized form of an input space during the model training (based on competitive learning). This phenomenon is very similar to biological systems. In the human cortex, sensory input spaces (e.g., auditory, motor, tactile, visual, somatosensory, etc.) of multi-dimension are represented by two-dimensional maps. Such projection of higher dimensional inputs to reduced dimensional maps is termed as topology conserving. And this topology-conserving mapping can be achieved by the Self Organizing Networks. Why SONN is required? These Self-Organizing Maps are used for classification and visualization of higher-dimensional data in lower-dimension. SONN Architecture:

  • Layers: SONN is with two layers: Fully connected input layer and output (map) layer. The output layer is termed as Kohonen Layer
  • Intralayer Connections: All the neurons in output layer are connected in a specific neighborhood with some topology. These are the unweighted lateral connections but responsible for the competitive learning.
  • Lateral Feedback Connections: These connections generate the excitatory and inhibitory effects, based on the distance from the winning neurons. This is accomplished by the utilization of a Mexican hat function which depicts the synaptic weights between the neurons in the Kohonen layer.

Phases of SONN:

  1. Learning phase: Construction of maps; the network is designed with a competitive process using the training samples.
  2. Prediction phase: Classification of new data; for the new data samples, a specific location is provided on the converged map.

Notes:

  • Kohonen Network underperforms on categorical data, even worse for mixed types data.
  • A generative model for the data can not be developed.
  • Model can not be trained against slowly evolving data.
  • Learning Phase of the model is time consuming.
  • Self-organizing neural network differs from other artificial neural networks as instead of error-correction learning methods (like backpropagation with gradient descent), it involves competitive learning for the model training.

Last Updated : 05 Sep, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads