We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c97ba9 commit 34f60ecCopy full SHA for 34f60ec
examples/test_all.php
@@ -3,7 +3,7 @@
3
function test($net, $test_data) {
4
$train_file = (dirname(__FILE__) . '/' . $net . '_float.net');
5
if (!is_file($train_file)) {
6
- print('The file ' . $net . '_float.net has not been created! Please run train_all.php to generate it.<br>' . PHP_EOL);
+ print('The file ' . $net . '_float.net has not been created! Please run <a href="train_all.php">train_all.php</a> to generate it.<br>' . PHP_EOL);
7
} else{
8
$ann = fann_create_from_file($train_file);
9
if ($ann) {
@@ -45,4 +45,4 @@ function test($net, $test_data) {
45
test('xnor', array(-1, -1));
46
test('xor', array(-1, 1));
47
48
-?>
+?>
0 commit comments