pub struct SvcQ<'a> { /* private fields */ }Expand description
Q matrix for C-SVC and ν-SVC classification.
Q[i][j] = y[i] * y[j] * K(x[i], x[j]) stored as Qfloat (f32).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SvcQ<'a>
impl<'a> RefUnwindSafe for SvcQ<'a>
impl<'a> Send for SvcQ<'a>
impl<'a> Sync for SvcQ<'a>
impl<'a> Unpin for SvcQ<'a>
impl<'a> UnwindSafe for SvcQ<'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