Client-Server model: Difference between revisions
From Artificial Neural Network for PHP
Line 38: | Line 38: | ||
{ |
{ |
||
$objNetwork = new ANN_Network; |
$objNetwork = new ANN_Network; |
||
$objValues = new ANN_Values; |
|||
$objValues->train() |
|||
->input(0,0)->output(0) |
|||
->input(0,1)->output(1) |
|||
->input(1,0)->output(1) |
|||
->input(1,1)->output(0); |
|||
} |
} |
||
catch(Exception $e) |
catch(Exception $e) |
||
{ |
{ |
||
die('Network could not be created'); |
|||
exit; |
|||
} |
} |
||
$objNetwork->setValues($objValues); // to be called as of version 2.0.6 |
|||
$arrInputs = array( |
|||
array(0, 0), |
|||
array(0, 1), |
|||
array(1, 0), |
|||
array(1, 1) |
|||
); |
|||
$arrOutputs = array( |
|||
array(0), |
|||
array(1), |
|||
array(1), |
|||
array(0) |
|||
); |
|||
$objNetwork->setInputs($arrInputs); |
|||
$objNetwork->setOutputs($arrOutputs); |
|||
$objNetwork = $objNetwork->trainByHost( |
$objNetwork = $objNetwork->trainByHost( |
||
'username', |
|||
'password', |
|||
'http://example.tld/ANN_Server.php' |
|||
); |
|||
if($objNetwork instanceof ANN_Network) |
if($objNetwork instanceof ANN_Network) |
Revision as of 06:38, 19 December 2008
Server implementation
require_once 'ANN/ANN_Loader.php';
class ANN_MyServer extends ANN_Server
{
// ****************************************************************************
/**
* @param string $strUsername
* @param string $strPassword
* @return boolean
*/
protected function checkLogin($strUsername, $strPassword)
{
// User-defined authentication by database for example
return ($strUsername == 'username' && $strPassword == 'password');
}
// ****************************************************************************
}
$objServer = new ANN_MyServer;
Client implementation
THIS EXAMPLE IS NOT UP TO DATE. PLEASE HAVE A LOOK TO XOR EXAMPLE!!!
require_once 'ANN/ANN_Loader.php';
try
{
$objNetwork = new ANN_Network;
$objValues = new ANN_Values;
$objValues->train()
->input(0,0)->output(0)
->input(0,1)->output(1)
->input(1,0)->output(1)
->input(1,1)->output(0);
}
catch(Exception $e)
{
die('Network could not be created');
}
$objNetwork->setValues($objValues); // to be called as of version 2.0.6
$objNetwork = $objNetwork->trainByHost(
'username',
'password',
'http://example.tld/ANN_Server.php'
);
if($objNetwork instanceof ANN_Network)
$objNetwork->printNetwork();