Struct burn_train::metric::AccuracyInput
source · pub struct AccuracyInput<B: Backend> { /* private fields */ }Expand description
The accuracy metric input type.
Implementations§
Trait Implementations§
source§impl<B: Backend> Adaptor<AccuracyInput<B>> for ClassificationOutput<B>
impl<B: Backend> Adaptor<AccuracyInput<B>> for ClassificationOutput<B>
source§fn adapt(&self) -> AccuracyInput<B>
fn adapt(&self) -> AccuracyInput<B>
Adapt the type to be passed to a metric.
Auto Trait Implementations§
impl<B> Freeze for AccuracyInput<B>where
<B as Backend>::FloatTensorPrimitive<2>: Freeze,
<B as Backend>::IntTensorPrimitive<1>: Freeze,
impl<B> RefUnwindSafe for AccuracyInput<B>where
<B as Backend>::FloatTensorPrimitive<2>: RefUnwindSafe,
<B as Backend>::IntTensorPrimitive<1>: RefUnwindSafe,
impl<B> Send for AccuracyInput<B>
impl<B> Sync for AccuracyInput<B>
impl<B> Unpin for AccuracyInput<B>
impl<B> UnwindSafe for AccuracyInput<B>where
<B as Backend>::FloatTensorPrimitive<2>: UnwindSafe,
<B as Backend>::IntTensorPrimitive<1>: UnwindSafe,
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> 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