pub struct NemotronExpertWeight {
pub up_proj: QuantizedWeight,
pub down_proj: QuantizedWeight,
}Expand description
Nemotron-H 2-projection expert (up_proj + relu² + down_proj, no gate_proj).
Fields§
§up_proj: QuantizedWeight§down_proj: QuantizedWeightImplementations§
Trait Implementations§
Source§impl Clone for NemotronExpertWeight
impl Clone for NemotronExpertWeight
Source§fn clone(&self) -> NemotronExpertWeight
fn clone(&self) -> NemotronExpertWeight
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 Debug for NemotronExpertWeight
impl Debug for NemotronExpertWeight
impl Copy for NemotronExpertWeight
Auto Trait Implementations§
impl Freeze for NemotronExpertWeight
impl RefUnwindSafe for NemotronExpertWeight
impl Send for NemotronExpertWeight
impl Sync for NemotronExpertWeight
impl Unpin for NemotronExpertWeight
impl UnwindSafe for NemotronExpertWeight
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