Enum rusty_machine::learning::k_means::InitAlgorithm [] [src]

pub enum InitAlgorithm {
    Forgy,
    RandomPartition,
    KPlusPlus,
}

Initialization Algorithm enum.

Variants

Forgy

The Forgy initialization scheme.

RandomPartition

The Random Partition initialization scheme.

KPlusPlus

The K-means ++ initialization scheme.

Trait Implementations

impl Debug for InitAlgorithm
[src]

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

Formats the value using the given formatter.

impl Copy for InitAlgorithm
[src]

impl Clone for InitAlgorithm
[src]

fn clone(&self) -> InitAlgorithm

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