This package implements a multilayer perceptron neural network.
It provides classes that implement networks, nodes and links that can be assembled to create a neural network.
The network can be activated using a matrix of weights that defines how the outputs of each node are computed from the input values.
It can also train the network with the same input data processing the epoch data several multiple times.
A very rudimentary MLP network implementation in PHP. Can be used for reference but no longer maintained |