pub enum SVMKernel {
Linear,
Polynomial(u32),
RBF(f64),
Sigmoid,
}Variants§
Trait Implementations§
impl StructuralPartialEq for SVMKernel
Auto Trait Implementations§
impl Freeze for SVMKernel
impl RefUnwindSafe for SVMKernel
impl Send for SVMKernel
impl Sync for SVMKernel
impl Unpin for SVMKernel
impl UnsafeUnpin for SVMKernel
impl UnwindSafe for SVMKernel
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