| 28 | |
| 29 | #[derive(Debug, Clone, Copy, PartialEq)] |
| 30 | pub struct BaggingBoostingDecision { |
| 31 | pub recommended: EnsembleMethod, |
| 32 | pub expected_bagging_variance: f64, |
| 33 | pub expected_variance_reduction: f64, |
| 34 | } |
| 35 | |
| 36 | pub fn bias_variance_noise( |
| 37 | y_true: &[f64], |
nothing calls this directly
no outgoing calls
no test coverage detected