pub trait ScoringModel {
// Required methods
fn score_recommendation(
&self,
recommendation: &OptimizationRecommendation,
) -> DeviceResult<f64>;
fn get_model_name(&self) -> String;
}Expand description
Scoring model trait