Enum fann::StopFunc [] [src]

pub enum StopFunc {
    Mse,
    Bit,
}

Stop critieria for training.

Variants

Mse

The mean square error of the whole output.

Bit

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.

Trait Implementations

impl PartialEq for StopFunc
[src]

fn eq(&self, __arg_0: &StopFunc) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for StopFunc
[src]

impl Clone for StopFunc
[src]

fn clone(&self) -> StopFunc

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for StopFunc
[src]