Enum juice::solver::RegularizationMethod
source · pub enum RegularizationMethod {
L2,
}
Expand description
[Regularization][1] method for a [Solver][2]. [1]: https://cs231n.github.io/neural-networks-2/#reg [2]: ./struct.Solver.html
Variants§
L2
L2 regularization
Trait Implementations§
source§impl Clone for RegularizationMethod
impl Clone for RegularizationMethod
source§fn clone(&self) -> RegularizationMethod
fn clone(&self) -> RegularizationMethod
Returns a copy 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 RegularizationMethod
impl Debug for RegularizationMethod
impl Copy for RegularizationMethod
Auto Trait Implementations§
impl RefUnwindSafe for RegularizationMethod
impl Send for RegularizationMethod
impl Sync for RegularizationMethod
impl Unpin for RegularizationMethod
impl UnwindSafe for RegularizationMethod
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