Struct fann::IncrementalParams [] [src]

pub struct IncrementalParams {
    pub learning_momentum: c_float,
    pub learning_rate: c_float,
}

Fields

learning_momentum

A higher momentum can be used to speed up incremental training. It should be between 0 and 1, the default is 0.

learning_rate

The learning rate determines how aggressive training should be. Default is 0.7.

Trait Implementations

impl Default for IncrementalParams

fn default() -> IncrementalParams

Derived Implementations

impl PartialEq for IncrementalParams

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

fn ne(&self, __arg_0: &IncrementalParams) -> bool

impl Debug for IncrementalParams

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for IncrementalParams

fn clone(&self) -> IncrementalParams

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

impl Copy for IncrementalParams