(&self, filter: &PatchQuery)
| 103 | } |
| 104 | |
| 105 | pub fn model_performance(&self, filter: &PatchQuery) -> Result<Vec<ModelPerformance>> { |
| 106 | let records = self.list_records(filter)?; |
| 107 | Ok(build_model_performance(&records)) |
| 108 | } |
| 109 | |
| 110 | pub fn edit_risk_score(&self, edit_type: EditType) -> Result<EditRiskScore> { |
| 111 | let records = self.list_records(&PatchQuery::default())?; |
no test coverage detected