pub enum Glm5NextMlpSite {
Dense(Glm5NextDenseMlpWeights),
Moe(Box<Glm5NextMoeWeights>),
}Expand description
Which MLP this layer runs. Layers 0..first_k_dense_replace are dense; the rest route.
Variants§
Dense(Glm5NextDenseMlpWeights)
Moe(Box<Glm5NextMoeWeights>)
Auto Trait Implementations§
impl Freeze for Glm5NextMlpSite
impl RefUnwindSafe for Glm5NextMlpSite
impl Send for Glm5NextMlpSite
impl Sync for Glm5NextMlpSite
impl Unpin for Glm5NextMlpSite
impl UnwindSafe for Glm5NextMlpSite
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