pub struct BiasVarianceTradeoff {
pub bias_squared: f64,
pub variance: f64,
pub noise: f64,
}Expand description
Bias-variance tradeoff decomposition: MSE = Bias² + Variance + Noise.
Fields§
§bias_squared: f64Squared bias of the estimator.
variance: f64Variance of the estimator.
noise: f64Irreducible noise level σ².
Implementations§
Auto Trait Implementations§
impl Freeze for BiasVarianceTradeoff
impl RefUnwindSafe for BiasVarianceTradeoff
impl Send for BiasVarianceTradeoff
impl Sync for BiasVarianceTradeoff
impl Unpin for BiasVarianceTradeoff
impl UnsafeUnpin for BiasVarianceTradeoff
impl UnwindSafe for BiasVarianceTradeoff
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more