Introduction - If you have any usage issues, please Google them yourself
In this article, a C# library for neural network computations is described. The library implements several popular neural network architectures and their training algorithms, like Back Propagation, Kohonen Self-Organizing Map, Elastic Network, Delta Rule Learning, and Perceptron Learning. The usage of the library is demonstrated on several samples:
• Classification (one-layer neural network trained with perceptron learning algorithms)
• Approximation (multi-layer neural network trained with back propagation learning algorithm)
• Time Series Prediction (multi-layer neural network trained with back propagation learning algorithm)
• Color Clusterization (Kohonen Self-Organizing Map)
• Traveling Salesman Problem (Elastic Network).