Struct fann::RpropParams[][src]

pub struct RpropParams {
    pub decrease_factor: c_float,
    pub increase_factor: c_float,
    pub delta_min: c_float,
    pub delta_max: c_float,
    pub delta_zero: c_float,
}

Fields

A value less than 1, used to decrease the step size during training. Default 0.5

A value greater than 1, used to increase the step size during training. Default 1.2

The minimum step size. Default 0.0

The maximum step size. Default 50.0

The initial step size. Default 0.1

Trait Implementations

impl Copy for RpropParams
[src]

impl Clone for RpropParams
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RpropParams
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RpropParams
[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 RpropParams
[src]

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

Auto Trait Implementations

impl Send for RpropParams

impl Sync for RpropParams