Neural network
Create a multilayer perceptron and make it learn., (*1)
Usage
``` php
use Alcalyn\NeuralNetwork\Network;, (*2)
Creates a new multilayer perceptron
$network = new Network([2, 4, 1]);, (*3)
$network->pulseInput([1, 0]); # Returns an array as output, (*4)
and adjust the network one iteration to adapt the output the expected result
$network->trainInput([[1, 0], [1]]); # Returns an array as output
```, (*5)
Examples
License
This library is under MIT License., (*6)