Struct 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
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