| 13 | } |
| 14 | |
| 15 | pub trait RegressionPredictor { |
| 16 | fn predict(&self, x: &[Vec<f64>]) -> Vec<f64>; |
| 17 | } |
| 18 | |
| 19 | pub trait ClassificationPredictor { |
| 20 | fn predict_proba(&self, x: &[Vec<f64>]) -> Vec<f64>; |
nothing calls this directly
no outgoing calls
no test coverage detected