danlex/gann

Genetic Algorithm and Neural Network in PHP

dev-master 2013-11-24 23:46 UTC

This package is not auto-updated.

Last update: 2024-04-27 11:49:32 UTC


README

Gann use Genetic Agorithm to train a Neural Network

Usage

<?php

use Gann\Ann\Network;

$network = new Network(2, 2, 4, 1);
$network->setInputs(array(1,2))->activate();