Enum fann_sys::fann_stopfunc_enum[][src]

#[repr(C)]
pub enum fann_stopfunc_enum { FANN_STOPFUNC_MSE, FANN_STOPFUNC_BIT, }

Stop criteria used during training.

Variants

Stop criterion is Mean Square Error (MSE) value.

Stop criterion is number of bits that fail. The number of bits means the number of output neurons which differ more than the bit fail limit (see fann_get_bit_fail_limit, fann_set_bit_fail_limit). The bits are counted in all of the training data, so this number can be higher than the number of training data.

Trait Implementations

impl Copy for fann_stopfunc_enum
[src]

impl Clone for fann_stopfunc_enum
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations