Installation: Difference between revisions
From Artificial Neural Network for PHP
Line 19: | Line 19: | ||
<?php |
<?php |
||
require_once ('ANN/ |
require_once ('ANN/ANN_Loader.php'); |
||
$ann = new ANN_Network; |
$ann = new ANN_Network; |
Revision as of 18:22, 16 December 2008
ANN - Artificial Neural Network for PHP 5.x
This chapter describes the steps to implement the ANN source code to your project.
Installation
- Download the source code
- Unpack the source code
>tar -xzf ann205.tar.gz
- Copy the directory ANN to your library directory of your project.
- Including to your source
<?php
require_once ('ANN/ANN_Loader.php');
$ann = new ANN_Network;
?>
- Learn to use the library. Have a look to chapter Examples.