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
- Host: GitHub
- URL: https://github.com/rudojaksa/mlp2
- Owner: rudojaksa
- Created: 2020-01-30T13:51:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T22:50:37.000Z (over 5 years ago)
- Last Synced: 2025-01-03T18:46:20.147Z (10 months ago)
- Topics: backpropagation, multilayer-perceptron, neural-networks
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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