Enum rustml::math::Normalization [] [src]

pub enum Normalization {
    N,
    MinusOne,
}

Determines the type of normalization used for computing the variance or standard deviation.

Variants

N

Use as denominator n, i.e. the number of examples.

MinusOne

Use as denominator (n-1), i.e. the number of examples minus one.

Trait Implementations

Derived Implementations

impl Clone for Normalization

fn clone(&self) -> Normalization

fn clone_from(&mut self, source: &Self)

impl Copy for Normalization