Struct fann::QuickpropParams [] [src]

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

Fields

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.

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

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

Trait Implementations

impl Copy for QuickpropParams
[src]

impl Clone for QuickpropParams
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QuickpropParams
[src]

Formats the value using the given formatter.

impl PartialEq for QuickpropParams
[src]

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

This method tests for !=.

impl Default for QuickpropParams
[src]

Returns the "default value" for a type. Read more