Two Basic Feature Mapping Models
Definition
Feature Mapping models are neural network techniques designed to map high-dimensional data onto a lower-dimensional space while preserving the relationships and structures inherent in the data. The two basic feature mapping models are Self-Organizing Maps (SOM) and Adaptive Resonance Theory (ART). Both models aim to organize and cluster data but differ in their learning algorithms and applications.
Key Concepts
- Dimensionality Reduction: Reducing the number of variables under consideration by obtaining a set of principal variables.
- Clustering: Grouping similar data points together.
- Topology Preservation: Maintaining the spatial relationships between data points in the reduced dimensional space.
- Incremental Learning: Continuously updating the model as new data becomes available.
Detailed Explanation
Self-Organizing Maps (SOM)
- Unsupervised Learning: SOMs are a type of artificial neural network that uses unsupervised learning to produce a low-dimensional representation of the input space.
- Topology Preservation: SOMs map high-dimensional data to a lower-dimensional grid while preserving the topological properties of the input space.
- Neighborhood Function: The update of weights affects not only the winning neuron but also its neighbors, promoting smooth transitions across the map.
- Learning Process:
- Initialization: Weights are initialized, usually with small random values.
- Competition: For each input vector, find the neuron with the closest weight vector (Best Matching Unit, BMU).
- Adaptation: Update the weights of the BMU and its neighbors to make them closer to the input vector.
- Iteration: Repeat the process for a number of iterations, gradually reducing the neighborhood size and learning rate.
- Applications: Data visualization, clustering, anomaly detection, and pattern recognition.
Adaptive Resonance Theory (ART)
- Stability-Plasticity Dilemma: ART models address the challenge of learning new information without forgetting previously learned information.
- Resonance: A process where the network's response to an input is sufficiently similar to an existing memory, leading to learning or reinforcement.
- Vigilance Parameter: Controls the level of similarity required for resonance, affecting how the network handles new patterns.
- Learning Process:
- Input Presentation: An input vector is presented to the network.
- Pattern Matching: Compare the input with stored patterns to find the best match.
- Vigilance Test: Check if the match meets the vigilance threshold.
- Resonance or Reset: If the match passes the vigilance test, update the pattern; if not, search for another match or create a new pattern.
- Applications: Real-time learning, pattern recognition, and clustering in dynamic environments.
Diagrams
Basic Structure of a Self-Organizing Map

Basic Structure of an ART Network
![]()
Links to Resources
- Self-Organizing Maps by Teuvo Kohonen: Comprehensive resource on SOMs, authored by the creator of the method.
- Adaptive Resonance Theory (ART) Overview: Detailed reference entry on ART networks, explaining their principles and applications.
- Introduction to Self-Organizing Maps: An accessible introduction to SOMs with examples and applications.
- Handwritten Character Recognition Using ART: Research paper on the application of ART networks for handwritten character recognition.
Notes and Annotations
- Summary of Key Points:
- SOMs are effective for dimensionality reduction and clustering by preserving the topological properties of the input data.
- ART models address the stability-plasticity dilemma, enabling stable yet flexible learning.
- Both models are useful for different applications: SOMs for visualization and clustering, and ART for real-time learning and pattern recognition.
- Personal Annotations and Insights:
- The neighborhood function in SOMs ensures smooth mapping transitions, making them suitable for data visualization.
- The vigilance parameter in ART provides flexibility in handling new patterns, making it suitable for dynamic and evolving datasets.
Backlinks
- Pattern Clustering and Feature Mapping Network: Refer to notes on pattern clustering and feature mapping for a broader understanding of unsupervised learning networks.
- Unsupervised Learning Techniques: Connect to discussions on various unsupervised learning methods and their applications.
- Neural Network Models Overview: Link to an overview of different neural network models to see where SOM and ART models fit in the landscape of machine learning techniques.