pub struct FittedSVR<F, K> { /* private fields */ }Expand description
Fitted Support Vector Regressor.
Stores the support vectors, dual coefficients, and bias.
Implementations§
Trait Implementations§
Source§impl<F: Float + Send + Sync + ScalarOperand + 'static, K: Kernel<F> + 'static> Predict<ArrayBase<OwnedRepr<F>, Dim<[usize; 2]>>> for FittedSVR<F, K>
impl<F: Float + Send + Sync + ScalarOperand + 'static, K: Kernel<F> + 'static> Predict<ArrayBase<OwnedRepr<F>, Dim<[usize; 2]>>> for FittedSVR<F, K>
Auto Trait Implementations§
impl<F, K> Freeze for FittedSVR<F, K>
impl<F, K> RefUnwindSafe for FittedSVR<F, K>where
K: RefUnwindSafe,
F: RefUnwindSafe,
impl<F, K> Send for FittedSVR<F, K>
impl<F, K> Sync for FittedSVR<F, K>
impl<F, K> Unpin for FittedSVR<F, K>
impl<F, K> UnsafeUnpin for FittedSVR<F, K>where
K: UnsafeUnpin,
F: UnsafeUnpin,
impl<F, K> UnwindSafe for FittedSVR<F, K>where
K: UnwindSafe,
F: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more