| 31 | |
| 32 | #[derive(Debug, Clone)] |
| 33 | struct ClassifierEstimator { |
| 34 | feature_idx: usize, |
| 35 | threshold: f64, |
| 36 | positive_on_ge: bool, |
| 37 | } |
| 38 | |
| 39 | #[derive(Debug, Clone)] |
| 40 | struct RegressorEstimator { |
nothing calls this directly
no outgoing calls
no test coverage detected