pub struct SvrQ<'a> { /* private fields */ }Expand description
Q matrix for ε-SVR and ν-SVR regression.
The regression dual has 2l variables (α_i^+ and α_i^-).
The underlying kernel cache stores only l rows of actual kernel
evaluations; get_q reorders/signs them into a double-buffered output.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SvrQ<'a>
impl<'a> RefUnwindSafe for SvrQ<'a>
impl<'a> Send for SvrQ<'a>
impl<'a> Sync for SvrQ<'a>
impl<'a> Unpin for SvrQ<'a>
impl<'a> UnwindSafe for SvrQ<'a>
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