pub enum OptimizerType {
NewtonRaphson,
CoordinateDescent,
Adam,
RMSprop,
}
Expand description
Optimization algorithm types
Variants§
Trait Implementations§
Source§impl Clone for OptimizerType
impl Clone for OptimizerType
Source§fn clone(&self) -> OptimizerType
fn clone(&self) -> OptimizerType
Returns a duplicate of the value. Read more
1.0.0 · 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 OptimizerType
impl Debug for OptimizerType
Source§impl PartialEq for OptimizerType
impl PartialEq for OptimizerType
impl Copy for OptimizerType
impl StructuralPartialEq for OptimizerType
Auto Trait Implementations§
impl Freeze for OptimizerType
impl RefUnwindSafe for OptimizerType
impl Send for OptimizerType
impl Sync for OptimizerType
impl Unpin for OptimizerType
impl UnwindSafe for OptimizerType
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