Enum rusty_machine::learning::gmm::CovOption [] [src]

pub enum CovOption {
    Full,
    Regularized(f64),
    Diagonal,
}

Covariance options for GMMs.

Variants

Full

The full covariance structure.

Regularized(f64)

Adds a regularization constant to the covariance diagonal.

Diagonal

Only the diagonal covariance structure.

Trait Implementations

impl Debug for CovOption
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for CovOption
[src]

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