GoLang fann_get_bit_fail_limit

request it (299)
GoLang replacement for PHP's fann_get_bit_fail_limit [edit | history]



Do you know a GoLang replacement for PHP's fann_get_bit_fail_limit? Write it!

PHP fann_get_bit_fail_limit

PHP original manual for fann_get_bit_fail_limit [ show | php.net ]

fann_get_bit_fail_limit

(PECL fann >= 1.0.0)

fann_get_bit_fail_limitReturns the bit fail limit used during training

Description

float fann_get_bit_fail_limit ( resource $ann )

Returns the bit fail limit used during training.

The bit fail limit is used during training where the stop function is set to FANN_STOPFUNC_BIT.

The limit is the maximum accepted difference between the desired output and the actual output during training. Each output that diverges more than this limit is counted as an error bit. This difference is divided by two when dealing with symmetric activation functions, so that symmetric and not symmetric activation functions can use the same limit.

The default bit fail limit is 0.35.

Parameters

ann

Neural network resource.

Return Values

The bit fail limit, or FALSE on error.

See Also