diff --git a/examples/logic_gates/simple_train.php b/examples/logic_gates/simple_train.php index 8f69c72..dd6f702 100644 --- a/examples/logic_gates/simple_train.php +++ b/examples/logic_gates/simple_train.php @@ -15,7 +15,7 @@ if ($ann) { fann_set_activation_function_output($ann, FANN_SIGMOID_SYMMETRIC); $filename = dirname(__FILE__) . "/xor.data"; - if (fann_train_on_file($ann, $filename, $max_epochs, $epochs_between_reports, $desired_error)) { + if (fann_train_on_file($ann, $filename, $max_epochs, $epochs_between_reports, $desired_error)) print('xor trained.
' . PHP_EOL); if (fann_save($ann, dirname(__FILE__) . "/xor_float.net"))