Skip to content

Commit 0f01736

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7b55c67 commit 0f01736

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

neural_network/adaptive_resonance_theory.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
"""
22
adaptive_resonance_theory.py
33
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
99
category matching, allowing for flexible and adaptive clustering.
1010
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
1313
real-time data clustering and pattern recognition tasks.
1414
1515
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,
1818
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
2121
Neural Networks, 1(2) . DOI: 10.1109/TNN.1988.82656
2222
2323
"""

0 commit comments

Comments
 (0)