Trait rustlearn::traits::ParallelPredict [] [src]

pub trait ParallelPredict<T> {
    fn decision_function_parallel(&self, X: T, num_threads: usize) -> Result<Array, &'static str>;

    fn predict_parallel(&self, X: T, num_threads: usize) -> Result<Array, &'static str> { ... }
}

Applies to models capable of making predictions in a parallel fashion.

Required Methods

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

Provided Methods

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

Implementors