pub struct LarsStep {
pub lambda: f64,
pub beta: Vec<f64>,
pub active: Vec<usize>,
}Expand description
One step of the LARS path: betas at that breakpoint along with the lambda value.
Fields§
§lambda: f64§beta: Vec<f64>§active: Vec<usize>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LarsStep
impl RefUnwindSafe for LarsStep
impl Send for LarsStep
impl Sync for LarsStep
impl Unpin for LarsStep
impl UnsafeUnpin for LarsStep
impl UnwindSafe for LarsStep
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