Trait BinaryLabels

Source
pub trait BinaryLabels {
    // Required method
    fn into_vector(self) -> DVector<f64>;
}
Expand description

Represents binary label data

Required Methods§

Source

fn into_vector(self) -> DVector<f64>

Processes the labels into a dense vector

Implementations on Foreign Types§

Source§

impl BinaryLabels for &Vec<bool>

Source§

impl BinaryLabels for &[bool]

Source§

impl BinaryLabels for Vec<bool>

Implementors§