Struct burn::nn::attention::GeneratePaddingMask
pub struct GeneratePaddingMask<B>where
B: Backend,{
pub tensor: Tensor<B, 2, Int>,
pub mask: Tensor<B, 2, Bool>,
}
Expand description
Generate a padding attention mask.
Fields§
§tensor: Tensor<B, 2, Int>
The generated tensor.
mask: Tensor<B, 2, Bool>
The generated mask.
Auto Trait Implementations§
impl<B> Freeze for GeneratePaddingMask<B>
impl<B> RefUnwindSafe for GeneratePaddingMask<B>where
<B as Backend>::IntTensorPrimitive: RefUnwindSafe,
<B as Backend>::BoolTensorPrimitive: RefUnwindSafe,
impl<B> Send for GeneratePaddingMask<B>
impl<B> Sync for GeneratePaddingMask<B>
impl<B> Unpin for GeneratePaddingMask<B>
impl<B> UnwindSafe for GeneratePaddingMask<B>where
<B as Backend>::IntTensorPrimitive: UnwindSafe,
<B as Backend>::BoolTensorPrimitive: 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