pub struct PleWeights {
pub key_proj: DenseWeight,
pub value_proj: DenseWeight,
pub norm_key: DenseWeight,
pub norm_query: DenseWeight,
pub norm_conv: DenseWeight,
pub conv1d: DenseWeight,
}Expand description
The dense weights of one PLE site.
Fields§
§key_proj: DenseWeight§value_proj: DenseWeight§norm_key: DenseWeight§norm_query: DenseWeight§norm_conv: DenseWeight§conv1d: DenseWeightAuto Trait Implementations§
impl Freeze for PleWeights
impl RefUnwindSafe for PleWeights
impl Send for PleWeights
impl Sync for PleWeights
impl Unpin for PleWeights
impl UnwindSafe for PleWeights
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