Visual network topoloy

From Artificial Neural Network for PHP

PNG image of network topology

require_once 'ANN/ANN_Loader.php';

try
{
  $objNetwork = ANN_Network::loadFromFile('xor.dat');
}
catch(Exception $e)
{
  print 'Network not found';

  exit;
}

$objNetworkImage = new ANN_NetworkGraph($objNetwork);

$objNetworkImage->saveToFile('network.png');

Output

Image of network toplogy