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 Freeze for CovOption
impl RefUnwindSafe for CovOption
impl Send for CovOption
impl Sync for CovOption
impl Unpin for CovOption
impl UnwindSafe for CovOption
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