Skip to main content

evaluate_regression_with_steps

Function evaluate_regression_with_steps 

Source
pub fn evaluate_regression_with_steps<M, Met>(
    model: &mut M,
    metric: &mut Met,
    samples: impl IntoIterator<Item = RegressionSample>,
) -> Result<(Option<f64>, Vec<ProgressiveStep>), RillError>
where M: OnlineRegressor, Met: Metric<Truth = f64, Prediction = f64>,
Expand description

Like evaluate_regression but also collects per-step records.