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