pub struct DistributionalDiagnostics {
pub location: EnsembleDiagnostics,
pub scale: Option<EnsembleDiagnostics>,
pub honest_sigma: f64,
pub rolling_honest_sigma_mean: f64,
pub effective_mts: Option<u64>,
}Available on crate feature
alloc only.Expand description
Diagnostics for a DistributionalSGBT.
Fields§
§location: EnsembleDiagnosticsLocation (mu) ensemble diagnostics.
scale: Option<EnsembleDiagnostics>Scale (sigma) ensemble diagnostics (if tree-chain mode).
honest_sigma: f64Standard deviation of per-tree contributions to the current prediction, used as a model-derived uncertainty estimate.
rolling_honest_sigma_mean: f64Exponential moving average of honest_sigma, providing a stable
baseline for detecting sudden changes in prediction variance.
effective_mts: Option<u64>Effective minimum-training-samples threshold when adaptive_mts is
enabled; None if adaptive MTS is not active.
Trait Implementations§
Source§impl Clone for DistributionalDiagnostics
impl Clone for DistributionalDiagnostics
Source§fn clone(&self) -> DistributionalDiagnostics
fn clone(&self) -> DistributionalDiagnostics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DistributionalDiagnostics
impl Debug for DistributionalDiagnostics
Auto Trait Implementations§
impl Freeze for DistributionalDiagnostics
impl RefUnwindSafe for DistributionalDiagnostics
impl Send for DistributionalDiagnostics
impl Sync for DistributionalDiagnostics
impl Unpin for DistributionalDiagnostics
impl UnsafeUnpin for DistributionalDiagnostics
impl UnwindSafe for DistributionalDiagnostics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more