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. |