|
1 | 1 | """
|
2 | 2 | adaptive_resonance_theory.py
|
3 | 3 |
|
4 |
| -This module implements the Adaptive Resonance Theory 1 (ART1) model, a type |
5 |
| -of neural network designed for unsupervised learning and clustering of binary |
6 |
| -input data. The ART1 algorithm continuously learns to categorize inputs based |
7 |
| -on their similarity while preserving previously learned categories. This is |
8 |
| -achieved through a vigilance parameter that controls the strictness of |
| 4 | +This module implements the Adaptive Resonance Theory 1 (ART1) model, a type |
| 5 | +of neural network designed for unsupervised learning and clustering of binary |
| 6 | +input data. The ART1 algorithm continuously learns to categorize inputs based |
| 7 | +on their similarity while preserving previously learned categories. This is |
| 8 | +achieved through a vigilance parameter that controls the strictness of |
9 | 9 | category matching, allowing for flexible and adaptive clustering.
|
10 | 10 |
|
11 |
| -ART1 is particularly useful in applications where it is critical to learn new |
12 |
| -patterns without forgetting previously learned ones, making it suitable for |
| 11 | +ART1 is particularly useful in applications where it is critical to learn new |
| 12 | +patterns without forgetting previously learned ones, making it suitable for |
13 | 13 | real-time data clustering and pattern recognition tasks.
|
14 | 14 |
|
15 | 15 | References:
|
16 |
| -1. Carpenter, G. A., & Grossberg, S. (1987). "A Adaptive Resonance Theory." |
17 |
| - In: Neural Networks for Pattern Recognition, Oxford University Press, |
| 16 | +1. Carpenter, G. A., & Grossberg, S. (1987). "A Adaptive Resonance Theory." |
| 17 | + In: Neural Networks for Pattern Recognition, Oxford University Press, |
18 | 18 | pp..
|
19 |
| -2. Carpenter, G. A., & Grossberg, S. (1988). "The ART of Adaptive Pattern |
20 |
| - Recognition by a Self-Organizing Neural Network." IEEE Transactions on |
| 19 | +2. Carpenter, G. A., & Grossberg, S. (1988). "The ART of Adaptive Pattern |
| 20 | + Recognition by a Self-Organizing Neural Network." IEEE Transactions on |
21 | 21 | Neural Networks, 1(2) . DOI: 10.1109/TNN.1988.82656
|
22 | 22 |
|
23 | 23 | """
|
|
0 commit comments