- Fully connected feedforward multilayer perceptron network with backpropagation algorithm adapted to multiple CPU cores.
- Specifically targeted at large 2-layered networks as that configuration could approximate any complex function of N variables given there is enough neurons in the hidden layer (number that is based on experiments with data and is very different for different tasks).
- Makes use of all available CPU cores to operate faster.
- Uses special weights initialization scheme (Nguyen-Widrow) that dramatically reduces number of epochs network needs to train and fast exponent function approximation that further reduces calculation time.
- Simple to use and fully documented C++ interface.
- Comes with performance test application that could be either run on the target system unmodified or easily adapted to your specific task to understand if MCPN could be used to solve given problem or not.
- Builds on CodeBlocks 10.05 / MinGW and Visual Studio 10 in 32 and 64 bit configurations.
- LGPL licensed, does not contain GPL code and could be safely used (dynamic linking) in a closed-source product.