pub trait AutoMLProgressCallback {
// Required methods
fn on_stage_start(&mut self, stage: AutoMLStage, message: &str);
fn on_stage_progress(
&mut self,
stage: AutoMLStage,
progress: f64,
message: &str,
);
fn on_stage_complete(
&mut self,
stage: AutoMLStage,
duration: f64,
message: &str,
);
}Expand description
Progress callback for AutoML pipeline