Skip to content

Commit 34f60ec

Browse files
authored
Update test_all.php
1 parent 6c97ba9 commit 34f60ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/test_all.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
function test($net, $test_data) {
44
$train_file = (dirname(__FILE__) . '/' . $net . '_float.net');
55
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);
6+
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);
77
} else{
88
$ann = fann_create_from_file($train_file);
99
if ($ann) {
@@ -45,4 +45,4 @@ function test($net, $test_data) {
4545
test('xnor', array(-1, -1));
4646
test('xor', array(-1, 1));
4747

48-
?>
48+
?>

0 commit comments

Comments
 (0)