pub enum SGDKind {
Momentum,
}
Expand description
All available types of Stochastic Gradient Descent solvers.
Variants§
Momentum
Stochastic Gradient Descent with Momentum. See [implementation][1] [1] ../solvers/
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SGDKind
impl Send for SGDKind
impl Sync for SGDKind
impl Unpin for SGDKind
impl UnwindSafe for SGDKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more