pub trait PredictInplace<R: Records, T> {
    fn predict_inplace<'a>(&'a self, x: &'a R, y: &mut T);
    fn default_target(&self, x: &R) -> T;
}
Expand description

Predict with model into a mutable reference of targets.

Required Methods§

Predict something in place

Create targets that predict_inplace works with.

Implementors§