pub enum CovOption {
Full,
Regularized(f64),
Diagonal,
}
Expand description
Covariance options for GMMs.
- Full : The full covariance structure.
- Regularized : Adds a regularization constant to the covariance diagonal.
- Diagonal : Only the diagonal covariance structure.
Variants
Full
The full covariance structure.
Regularized(f64)
Adds a regularization constant to the covariance diagonal.
Diagonal
Only the diagonal covariance structure.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CovOption
impl Send for CovOption
impl Sync for CovOption
impl Unpin for CovOption
impl UnwindSafe for CovOption
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more