Skip to main content

Module evaluate

Module evaluate 

Source
Expand description

Progressive (prequential) evaluation.

The evaluation order is fixed:

predict → metric.update → learn

This ensures each prediction is made before the model sees the current sample, giving an honest estimate of generalization on streaming data.

Re-exports§

pub use progressive::BinaryClassificationSample;
pub use progressive::ProgressiveStep;
pub use progressive::RegressionSample;
pub use progressive::evaluate_binary_classification;
pub use progressive::evaluate_regression;
pub use progressive::evaluate_regression_with_steps;

Modules§

progressive
Progressive evaluation implementation.