Client-Server model: Difference between revisions
From Artificial Neural Network for PHP
Line 5: | Line 5: | ||
require_once 'ANN/Loader.php'; |
require_once 'ANN/Loader.php'; |
||
use ANN\Server; |
|||
⚫ | |||
⚫ | |||
{ |
{ |
||
/** |
/** |
||
Line 21: | Line 23: | ||
} |
} |
||
$objServer = new |
$objServer = new MyServer; |
||
</source> |
</source> |
||
Revision as of 12:16, 1 June 2011
Server implementation
require_once 'ANN/Loader.php';
use ANN\Server;
class MyServer extends 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 MyServer;
Client implementation
require_once '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();