pub trait BinaryLabels {
// Required method
fn into_vector(self) -> DVector<f64>;
}Expand description
Represents binary label data
Required Methods§
Sourcefn into_vector(self) -> DVector<f64>
fn into_vector(self) -> DVector<f64>
Processes the labels into a dense vector
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".