pub struct MulticlassGaussianProcessClassifier {
pub kernel: GpKernel,
pub max_iter: usize,
pub tol: f64,
}Expand description
Multi-class Gaussian Process Classifier built as a one-vs-rest stack of
binary GaussianProcessClassifier instances. Mirrors sklearn’s
GaussianProcessClassifier(multi_class='one_vs_rest') for the case of
arbitrary discrete class labels.
Fields§
§kernel: GpKernel§max_iter: usize§tol: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MulticlassGaussianProcessClassifier
impl RefUnwindSafe for MulticlassGaussianProcessClassifier
impl Send for MulticlassGaussianProcessClassifier
impl Sync for MulticlassGaussianProcessClassifier
impl Unpin for MulticlassGaussianProcessClassifier
impl UnsafeUnpin for MulticlassGaussianProcessClassifier
impl UnwindSafe for MulticlassGaussianProcessClassifier
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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