pub struct FcdModel {
pub hidden: usize,
pub nh: usize,
pub nkv: usize,
pub hd: usize,
pub nl: usize,
pub vocab: usize,
pub polish_only: bool,
/* private fields */
}Expand description
The f32 training replica of a .cmf model (≤ 1B targets).
Fields§
§nh: usize§nkv: usize§hd: usize§nl: usize§vocab: usize§polish_only: boolTrain the flagged layers WITHOUT switching their attention to the
Nyström kernel — see FcdHyper::polish_only.
Implementations§
Source§impl FcdModel
impl FcdModel
Auto Trait Implementations§
impl !Freeze for FcdModel
impl !RefUnwindSafe for FcdModel
impl !UnwindSafe for FcdModel
impl Send for FcdModel
impl Sync for FcdModel
impl Unpin for FcdModel
impl UnsafeUnpin for FcdModel
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