Struct burn::train::metric::HammingScoreInput
pub struct HammingScoreInput<B>where
B: Backend,{ /* private fields */ }
Expand description
The hamming score input type.
Implementations§
§impl<B> HammingScoreInput<B>where
B: Backend,
impl<B> HammingScoreInput<B>where
B: Backend,
pub fn new(
outputs: Tensor<B, 2>,
targets: Tensor<B, 2, Int>,
) -> HammingScoreInput<B>
pub fn new( outputs: Tensor<B, 2>, targets: Tensor<B, 2, Int>, ) -> HammingScoreInput<B>
Constructs a new HammingScoreInput
.
Trait Implementations§
§impl<B> Adaptor<HammingScoreInput<B>> for MultiLabelClassificationOutput<B>where
B: Backend,
impl<B> Adaptor<HammingScoreInput<B>> for MultiLabelClassificationOutput<B>where
B: Backend,
§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>::IntTensorPrimitive: Freeze,
<B as Backend>::FloatTensorPrimitive: Freeze,
<B as Backend>::QuantizedTensorPrimitive: Freeze,
impl<B> RefUnwindSafe for HammingScoreInput<B>where
<B as Backend>::IntTensorPrimitive: RefUnwindSafe,
<B as Backend>::FloatTensorPrimitive: RefUnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: RefUnwindSafe,
impl<B> Send for HammingScoreInput<B>
impl<B> Sync for HammingScoreInput<B>
impl<B> Unpin for HammingScoreInput<B>where
<B as Backend>::IntTensorPrimitive: Unpin,
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
impl<B> UnwindSafe for HammingScoreInput<B>where
<B as Backend>::IntTensorPrimitive: UnwindSafe,
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: 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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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