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 31aa82d commit dea7be1Copy full SHA for dea7be1
examples/logic_gates/test_all.php
@@ -3,13 +3,8 @@
3
function test($net, $test_data) {
4
$train_file = (dirname(__FILE__) . '/' . $net . '_float.net');
5
if (!is_file($train_file)) {
6
-<<<<<<< HEAD:examples/logic_gates/test_all.php
7
print('The file ' . $net . '_float.net has not been created! Please run train_all.php to generate it.<br>' . PHP_EOL);
8
- } else {
9
-=======
10
- 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);
11
} else{
12
->>>>>>> origin/master:examples/test_all.php
13
$ann = fann_create_from_file($train_file);
14
if ($ann) {
15
$calc_out = fann_run($ann, $test_data);
0 commit comments