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