pub struct RelativePositionalEncoding<F: Float + Debug + NumAssign> { /* private fields */ }Expand description
Relative Positional Encoding
Implements relative position encodings that represent the distance between positions rather than absolute positions. This allows better generalization to longer sequences.
Implementations§
Source§impl<F: Float + Debug + NumAssign> RelativePositionalEncoding<F>
impl<F: Float + Debug + NumAssign> RelativePositionalEncoding<F>
Sourcepub fn new<R: Rng>(d_model: usize, max_len: usize, rng: &mut R) -> Self
pub fn new<R: Rng>(d_model: usize, max_len: usize, rng: &mut R) -> Self
Create a new relative positional encoding
§Arguments
d_model- Model dimensionmax_len- Maximum sequence lengthrng- Random number generator
Sourcepub fn embeddings_mut(&mut self) -> &mut Array2<F>
pub fn embeddings_mut(&mut self) -> &mut Array2<F>
Get mutable reference to embeddings
Trait Implementations§
Source§impl<F: Clone + Float + Debug + NumAssign> Clone for RelativePositionalEncoding<F>
impl<F: Clone + Float + Debug + NumAssign> Clone for RelativePositionalEncoding<F>
Source§fn clone(&self) -> RelativePositionalEncoding<F>
fn clone(&self) -> RelativePositionalEncoding<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<F: Float + Debug + NumAssign> PositionalEncoding<F> for RelativePositionalEncoding<F>
impl<F: Float + Debug + NumAssign> PositionalEncoding<F> for RelativePositionalEncoding<F>
Source§fn encode(&self, seq_len: usize) -> Array2<F>
fn encode(&self, seq_len: usize) -> Array2<F>
Encode positions for a sequence of given length Read more
Source§fn apply(&self, input: &Array3<F>) -> Result<Array3<F>>
fn apply(&self, input: &Array3<F>) -> Result<Array3<F>>
Apply positional encoding to an input tensor Read more
Source§fn clone_box(&self) -> Box<dyn PositionalEncoding<F> + Send + Sync>
fn clone_box(&self) -> Box<dyn PositionalEncoding<F> + Send + Sync>
Clone the positional encoding into a boxed trait object
Auto Trait Implementations§
impl<F> Freeze for RelativePositionalEncoding<F>
impl<F> RefUnwindSafe for RelativePositionalEncoding<F>where
F: RefUnwindSafe,
impl<F> Send for RelativePositionalEncoding<F>where
F: Send,
impl<F> Sync for RelativePositionalEncoding<F>where
F: Sync,
impl<F> Unpin for RelativePositionalEncoding<F>
impl<F> UnsafeUnpin for RelativePositionalEncoding<F>
impl<F> UnwindSafe for RelativePositionalEncoding<F>where
F: RefUnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.