pub struct BakeHyper {
pub steps_a: usize,
pub steps_b: usize,
pub l1_init: f64,
pub l1_step: f64,
pub eval_every: usize,
pub lr_a: f64,
pub lr_b: f64,
pub tau: f32,
pub fcd_layers: usize,
pub seed: u64,
}Expand description
Hyper-parameters — defaults are the certified recipe.
Fields§
§steps_a: usize§steps_b: usize§l1_init: f64§l1_step: f64§eval_every: usize§lr_a: f64§lr_b: f64§tau: f32§fcd_layers: usize§seed: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for BakeHyper
impl RefUnwindSafe for BakeHyper
impl Send for BakeHyper
impl Sync for BakeHyper
impl Unpin for BakeHyper
impl UnsafeUnpin for BakeHyper
impl UnwindSafe for BakeHyper
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