14 linhas
284 B
PHP
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)
|