FuzzyART Vignette

Louis Steinmeister

2020-12-13

Adaptive Ressonance Theory (ART) was introduced by Steven Grossberg as a theory of human cognitive information processing (Grossberg 1976, 1980). Extending the capabilities of the ART 1 model, which can learn to categorize patterns in binary data, FuzzyArt as described in (Carpenter, Grossberg, and Rosen 1991) has become one of the most commenly used Adaptive Ressonance Theory models (Brito da Silva, Elnabarawy, and Wunsch 2019). By incorporating fuzzy set theroy operators FuzzyART is capable of learning from binaray and bounded real valued data. Its advantage over other unsupervised learning algorithms lies in the flexibility of the learning rule: if a given input feature does not resemble a known category satisfactorily, as determined by the vigilance test, a new category is initialized. Hence, the total number of categories (or clusters) is not determined a-priori, like k-means, but chosen in accordance with the data and the context of already learnt representations. This vignette explores the use of the FuzzyART implementation as provided by the FuzzyART R package.

Packacke Usage

Feel free to use this package as specified by the license (MIT). However, please consider citing this work in any publication that this package may contribute to.

Training

Before the FuzzyART model can be trained, one needs to determine a minimum set of parameters: - rho: Vigilance parameter in (0,1). - alpha: Choice parameter alpha > 0. Can be viewed as a regularization parameter penalizing large weights. - beta: Learning rate in (0,1).

Input Pre-processing

Before training, it is important to remember scaling the inputs to lie in the d-dimensional unit hypercube (\([0,1]^d\)), where d is the dimension of the inputs. In other words, each input variable needs to be normalized to the interval \([0,1]\). This can easily be done with the normalize() function.

Training the ART model

In our Iris example we shall use parameters close to the ones used in (Hoa and Bui 2012); that is alpha \(\approx\) 0.8, beta \(\approx\) 0.1, rho \(\approx\) 0.5. FOr the wine dataset, the parameters as specified in (???) appear superior. We will demonstrate to power of this implementation on a number of popular datasets.

The true membership of individual observations is indicated by the symbol while the color corresponds to the category membership according to our trained FuzzyART model. The Rand Index measures the similarity between two sets of clustering partitions. In this case, we benchmark the performance of the unsupervides FuzzyART model against the ground truth, the lables associated with each observation.

Iris

Wine

Note that for a better presentation, we will only be displaying the first four features of the wine dataset. However, all features were used during training.

#> Warning: package 'bootcluster' was built under R version 4.0.3
#> Registered S3 method overwritten by 'GGally':
#>   method from   
#>   +.gg   ggplot2
#> Registered S3 method overwritten by 'sets':
#>   method        from   
#>   print.element ggplot2

Evaluation of package performance

The examples as shown here certainly have further potential for fine tuning. Nevertheless, in reference to results achieved in (Illetskova et al. 2019), the achievable performance as demonstrated here appear to be on par with the baseline algorithm (as described in the cited work). This can be varified via:

References

Brito da Silva, Leonardo Enzo, Islam Elnabarawy, and Donald C. Wunsch. 2019. “A survey of adaptive resonance theory neural network models for engineering applications.” Neural Networks 120 (December). Elsevier Ltd: 167–203. https://doi.org/10.1016/j.neunet.2019.09.012.

Carpenter, Gail A., Stephen Grossberg, and David B. Rosen. 1991. “Fuzzy ART: Fast stable learning and categorization of analog patterns by an adaptive resonance system.” Neural Networks 4 (6): 759–71. https://doi.org/10.1016/0893-6080(91)90056-B.

Grossberg, Stephen. 1976. “Adaptive Pattern Classification and Universal Recoding: II. Feedback, Expectation, Olfaction, Illusions.” Biological Cybernetics 23 (4): 187–202. https://doi.org/10.1007/BF00340335.

———. 1980. “How does a brain build a cognitive code?” Psychological Review 87 (1): 1–51. https://doi.org/10.1037/0033-295X.87.1.1.

Hoa, Nong Thi, and The Duy Bui. 2012. “A New Effective Learning Rule of Fuzzy ART.” In 2012 Conference on Technologies and Applications of Artificial Intelligence, 224–31. IEEE. https://doi.org/10.1109/TAAI.2012.60.

Illetskova, Marketa, Islam Elnabarawy, Leonardo Enzo Brito da Silva, Daniel R. Tauritz, and Donald C. Wunsch. 2019. “Nested monte carlo search expression discovery for the automated design of fuzzy ART category choice functions.” In Proceedings of the Genetic and Evolutionary Computation Conference Companion, 171–72. 1. New York, NY, USA: ACM. https://doi.org/10.1145/3319619.3322050.