pub struct SmoothL1Loss { /* private fields */ }Expand description
Smooth L1 Loss (Huber Loss).
Combines MSE and L1: uses squared error for small values, linear error for large values.
loss = 0.5 * x² / beta, if |x| < beta
= |x| - 0.5 * beta, otherwiseImplementations§
Trait Implementations§
Source§impl Clone for SmoothL1Loss
impl Clone for SmoothL1Loss
Source§fn clone(&self) -> SmoothL1Loss
fn clone(&self) -> SmoothL1Loss
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 SmoothL1Loss
impl Debug for SmoothL1Loss
Source§impl Default for SmoothL1Loss
impl Default for SmoothL1Loss
impl Copy for SmoothL1Loss
Auto Trait Implementations§
impl Freeze for SmoothL1Loss
impl RefUnwindSafe for SmoothL1Loss
impl Send for SmoothL1Loss
impl Sync for SmoothL1Loss
impl Unpin for SmoothL1Loss
impl UnsafeUnpin for SmoothL1Loss
impl UnwindSafe for SmoothL1Loss
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