Trait rustlearn::traits::ParallelSupervisedModel [] [src]

pub trait ParallelSupervisedModel<T> {
    fn fit_parallel(&mut self, X: T, y: &Array, num_threads: usize) -> Result<(), &'static str>;
}

Applies to models capable of being trained in a parallel fashion.

Required Methods

fn fit_parallel(&mut self, X: T, y: &Array, num_threads: usize) -> Result<(), &'static str>

Implementors