pub trait PredictorBorrow<'a, X, T> {
// Required method
fn predict(&self, x: &'a X) -> Result<Vec<T>, Failed>;
}
Expand description
Implements method predict that estimates target value from new data, with borrowing
pub trait PredictorBorrow<'a, X, T> {
// Required method
fn predict(&self, x: &'a X) -> Result<Vec<T>, Failed>;
}
Implements method predict that estimates target value from new data, with borrowing