File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,17 @@ class ART1:
4
4
"""
5
5
Adaptive Resonance Theory 1 (ART1) model for binary data clustering.
6
6
7
- The ART1 algorithm is a type of neural network used for unsupervised learning and clustering of binary input data.
8
- It continuously learns to categorize inputs based on similarity while preserving previously learned categories.
9
- The vigilance parameter controls the degree of similarity required to assign an input to an existing category,
7
+ The ART1 algorithm is a type of neural network used for unsupervised
8
+ learning and clustering of binary input data. It continuously learns
9
+ to categorize inputs based on similarity while preserving previously
10
+ learned categories. The vigilance parameter controls the degree of
11
+ similarity required to assign an input to an existing category,
10
12
allowing for flexible and adaptive clustering.
11
13
12
14
Attributes:
13
15
num_features (int): Number of features in the input data.
14
- vigilance (float): Threshold for similarity that determines whether an input matches an existing cluster.
16
+ vigilance (float): Threshold for similarity that determines whether
17
+ an input matches an existing cluster.
15
18
weights (list): List of cluster weights representing the learned categories.
16
19
"""
17
20
You can’t perform that action at this time.
0 commit comments