pub enum Solver {
Auto,
Normal,
Lbfgs,
Sag,
Saga,
CoordinateDescent,
ConjugateGradient,
Newton,
Admm,
ProximalGradient,
Fista,
Nesterov,
}Expand description
Solver algorithms for linear models
Variants§
Auto
Automatically choose the best solver
Normal
Normal equations (closed form)
Lbfgs
L-BFGS optimizer from scirs2
Sag
Stochastic Average Gradient
Saga
SAGA (improved SAG with L1 support)
CoordinateDescent
Coordinate Descent (for L1/ElasticNet)
ConjugateGradient
Conjugate Gradient
Newton
Newton method
Admm
ADMM (Alternating Direction Method of Multipliers)
ProximalGradient
Proximal Gradient Method
Fista
Accelerated Proximal Gradient Method (FISTA)
Nesterov
Nesterov Accelerated Gradient Descent
Trait Implementations§
impl Copy for Solver
impl StructuralPartialEq for Solver
Auto Trait Implementations§
impl Freeze for Solver
impl RefUnwindSafe for Solver
impl Send for Solver
impl Sync for Solver
impl Unpin for Solver
impl UnwindSafe for Solver
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more