| 17 | } |
| 18 | |
| 19 | pub trait ClassificationPredictor { |
| 20 | fn predict_proba(&self, x: &[Vec<f64>]) -> Vec<f64>; |
| 21 | } |
| 22 | |
| 23 | #[derive(Clone, Debug, Default)] |
| 24 | pub struct RegressionModelFingerprint { |
nothing calls this directly
no outgoing calls
no test coverage detected