Skip to main content

IncrementalUnsupervisedEstimator

Trait IncrementalUnsupervisedEstimator 

Source
pub trait IncrementalUnsupervisedEstimator {
    // Required methods
    fn partial_fit(
        &mut self,
        batch_x: &Array2<f64>,
    ) -> Result<(), IncrementalError>;
    fn predict_labels(
        &self,
        x: &Array2<f64>,
    ) -> Result<Array1<usize>, IncrementalError>;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§