Struct fann::QuickpropParams [] [src]

pub struct QuickpropParams {
    pub decay: c_float,
    pub mu: c_float,
    pub learning_rate: c_float,
}

Fields

decay

The factor by which weights should become smaller in each iteration, to ensure that the weights don't grow too large during training. Should be a negative number close to 0. The default is -0.0001.

mu

The mu factor is used to increase or decrease the step size; should always be greater than 1. The default is 1.75.

learning_rate

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

Trait Implementations

impl Default for QuickpropParams

fn default() -> QuickpropParams

Derived Implementations

impl PartialEq for QuickpropParams

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

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

impl Debug for QuickpropParams

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

impl Clone for QuickpropParams

fn clone(&self) -> QuickpropParams

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

impl Copy for QuickpropParams