An open API service indexing awesome lists of open source software.

https://github.com/rudojaksa/mlp2

2-layers multi-layer perceptron demo
https://github.com/rudojaksa/mlp2

backpropagation multilayer-perceptron neural-networks

Last synced: 8 months ago
JSON representation

2-layers multi-layer perceptron demo

Awesome Lists containing this project

README

          

### NAME
MLP2 - Multi-Layer Perceptron with two layers

### DESCRIPTION

This is a demonstration of Multi-Layer Perceptron with two layers on the XOR
problem in the C language. It is very simple, very small neural network.
However, the backpropagation algorithm is complete. The demo relies on the
use of preprocessor to beautify the math. The code can be easily extended to
bigger MLP topologies and real data.

Because the XOR network and data are so tiny, the program requirements differ a
lot from more typical bigger neural networks. Compiler optimizations might
have different results than usually, or the double can be faster then float...

### VERSION
MLP2-2.1 (c) R.Jaksa 2009,2020 GPLv3