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
decrease_factor | A value less than 1, used to decrease the step size during training. Default 0.5 |
increase_factor | A value greater than 1, used to increase the step size during training. Default 1.2 |
delta_min | The minimum step size. Default 0.0 |
delta_max | The maximum step size. Default 50.0 |
delta_zero | The initial step size. Default 0.1 |