Enum fann::StopFunc[][src]

pub enum StopFunc {
    Mse,
    Bit,
}

Stop critieria for training.

Variants

The mean square error of the whole output.

The number of training data points where the output neuron's error was greater than the bit fail limit. Every neuron is counted for every training data sample where it fails.

Methods

impl StopFunc
[src]

Create a StopFunc from a fann_sys::fann_stopfunc_enum.

Return the fann_sys::fann_stopfunc_enum corresponding to this StopFunc.

Trait Implementations

impl Copy for StopFunc
[src]

impl Clone for StopFunc
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StopFunc
[src]

Formats the value using the given formatter. Read more

impl Eq for StopFunc
[src]

impl PartialEq for StopFunc
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for StopFunc

impl Sync for StopFunc