#[non_exhaustive]pub enum OptimizerKind {
Sgd {
momentum: f64,
nesterov: bool,
},
Adam {
beta1: f64,
beta2: f64,
epsilon: f64,
},
}Expand description
Available optimizer algorithms.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Sgd
Stochastic gradient descent with optional Nesterov momentum.
Fields
Adam
Adaptive moment estimation (Adam).
Defaults: β₁=0.9, β₂=0.999, ε=1e-8.
Implementations§
Source§impl OptimizerKind
impl OptimizerKind
Trait Implementations§
Source§impl Clone for OptimizerKind
impl Clone for OptimizerKind
Source§fn clone(&self) -> OptimizerKind
fn clone(&self) -> OptimizerKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OptimizerKind
impl Debug for OptimizerKind
Source§impl Default for OptimizerKind
impl Default for OptimizerKind
Source§impl PartialEq for OptimizerKind
impl PartialEq for OptimizerKind
Source§fn eq(&self, other: &OptimizerKind) -> bool
fn eq(&self, other: &OptimizerKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OptimizerKind
impl StructuralPartialEq for OptimizerKind
Auto Trait Implementations§
impl Freeze for OptimizerKind
impl RefUnwindSafe for OptimizerKind
impl Send for OptimizerKind
impl Sync for OptimizerKind
impl Unpin for OptimizerKind
impl UnsafeUnpin for OptimizerKind
impl UnwindSafe for OptimizerKind
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