PHP 8.5.0 Beta 1 available for testing

Voting

: nine minus zero?
(Example: nine)

The Note You're Voting On

ithirzty
5 years ago
If you wan't your result to be saved after the time limit, you will need to add this to your code.
<?php
function shutdown()
{
global
$ann;
fann_save($ann, dirname(__FILE__) . "/result.net");
fann_destroy($ann);
}

register_shutdown_function('shutdown');
?>
where $ann is your neural network var and 'result.net' your neural network config file.

<< Back to user notes page

To Top