pub trait Optimizer { // Required method fn update(&self, parameters: Vec<&mut Array>); }
An optimizer, which updates the parameters of a model.
Updates the parameters. It is critical that the order of the parameters remains the same between calls.