Arquivos
php-fann/tests/fann_train_basic.phpt
2013-02-25 20:20:35 +00:00

14 linhas
284 B
PHP

--TEST--
Test function fann_train() by calling it with its expected arguments
--FILE--
<?php
$ann = fann_create_standard( 3, 3, 2, 1 );
$input = array( 0.5, 1.5, 0.5 );
$desired_output = array( 1 );
var_dump( fann_train( $ann, $input, $desired_output ) );
?>
--EXPECTF--
bool(true)