Enum rusty_machine::learning::gmm::CovOption
[−]
[src]
pub enum CovOption {
Full,
Regularized(f64),
Diagonal,
}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
FullThe full covariance structure.
Regularized(f64)Adds a regularization constant to the covariance diagonal.
DiagonalOnly the diagonal covariance structure.
Trait Implementations
impl Clone for CovOption[src]
fn clone(&self) -> CovOption
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more