pub enum ModelInit {
CSvc {
cost: Option<f64>,
},
NuSvc {
nu: Option<f64>,
},
NuSvr {
nu: Option<f64>,
},
OneClass {
nu: Option<f64>,
},
EpsilonSvr {
epsilon: Option<f64>,
},
}
Expand description
The model type initializer.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModelInit
impl RefUnwindSafe for ModelInit
impl Send for ModelInit
impl Sync for ModelInit
impl Unpin for ModelInit
impl UnwindSafe for ModelInit
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