Test fann_train_on_(file|data)

Esse commit está contido em:
Jakub Zelenka
2013-03-17 18:07:22 +00:00
commit 8f0379c24a
2 arquivos alterados com 81 adições e 0 exclusões
+41
Ver Arquivo
@@ -0,0 +1,41 @@
--TEST--
Test function fann_train_on_data() by calling it with its expected arguments
--FILE--
<?php
$num_input = 2;
$num_output = 1;
$num_layers = 3;
$num_neurons_hidden = 3;
$desired_error = 0.001;
$max_epochs = 50000;
$epochs_between_reports = 1000;
$ann = fann_create_standard($num_layers, $num_input, $num_neurons_hidden, $num_output);
$filename = ( dirname( __FILE__ ) . "/fann_train_on_data.tmp" );
$content = <<<EOF
4 2 1
-1 -1
-1
-1 1
1
1 -1
1
1 1
-1
EOF;
file_put_contents( $filename, $content );
$train_data = fann_read_train_from_file( $filename );
var_dump( fann_train_on_data( $ann, $train_data, $max_epochs, $epochs_between_reports, $desired_error ) );
?>
--CLEAN--
<?php
$filename = ( dirname( __FILE__ ) . "/fann_train_on_data.tmp" );
if ( file_exists( $filename ) )
unlink( $filename );
?>
--EXPECTF--
bool(true)
+40
Ver Arquivo
@@ -0,0 +1,40 @@
--TEST--
Test function fann_train_on_file() by calling it with its expected arguments
--FILE--
<?php
$num_input = 2;
$num_output = 1;
$num_layers = 3;
$num_neurons_hidden = 3;
$desired_error = 0.001;
$max_epochs = 50000;
$epochs_between_reports = 1000;
$ann = fann_create_standard($num_layers, $num_input, $num_neurons_hidden, $num_output);
$filename = ( dirname( __FILE__ ) . "/fann_train_on_file.tmp" );
$content = <<<EOF
4 2 1
-1 -1
-1
-1 1
1
1 -1
1
1 1
-1
EOF;
file_put_contents( $filename, $content );
var_dump( fann_train_on_file( $ann, $filename, $max_epochs, $epochs_between_reports, $desired_error ) );
?>
--CLEAN--
<?php
$filename = ( dirname( __FILE__ ) . "/fann_train_on_file.tmp" );
if ( file_exists( $filename ) )
unlink( $filename );
?>
--EXPECTF--
bool(true)