| 20 | |
| 21 | #[derive(Debug, Clone, Copy, PartialEq)] |
| 22 | pub struct BiasVarianceNoise { |
| 23 | pub bias_sq: f64, |
| 24 | pub variance: f64, |
| 25 | pub noise: f64, |
| 26 | pub mse: f64, |
| 27 | } |
| 28 | |
| 29 | #[derive(Debug, Clone, Copy, PartialEq)] |
| 30 | pub struct BaggingBoostingDecision { |
nothing calls this directly
no outgoing calls
no test coverage detected