pub struct DecoderLayerWeightNames {
pub ada_norm_down: String,
pub ada_norm_up: String,
pub attention_norm: String,
pub wq_weight: String,
pub wk_weight: String,
pub wv_weight: String,
pub wo_weight: String,
pub ffn_norm: String,
pub w1_weight: String,
pub w2_weight: String,
pub w3_weight: String,
}Expand description
Weight names for a decoder layer.
Fields§
§ada_norm_down: String§ada_norm_up: String§attention_norm: String§wq_weight: String§wk_weight: String§wv_weight: String§wo_weight: String§ffn_norm: String§w1_weight: String§w2_weight: String§w3_weight: StringAuto Trait Implementations§
impl Freeze for DecoderLayerWeightNames
impl RefUnwindSafe for DecoderLayerWeightNames
impl Send for DecoderLayerWeightNames
impl Sync for DecoderLayerWeightNames
impl Unpin for DecoderLayerWeightNames
impl UnsafeUnpin for DecoderLayerWeightNames
impl UnwindSafe for DecoderLayerWeightNames
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