Visual network topoloy
From Artificial Neural Network for PHP
PNG image of network topology
require_once 'ANN/ANN_Network.php';
try
{
$network = ANN_Network::loadFromFile('xor.dat');
}
catch(Exception $e)
{
print 'Network not found';
exit;
}
$image = new ANN_NetworkGraph($network);
$image->printImage();
Output