pub struct ConfigDiagnostics {
pub residual_alignment: f64,
pub regularization_sensitivity: f64,
pub depth_sufficiency: f64,
pub effective_dof: f64,
pub uncertainty: f64,
}Expand description
Model diagnostics consumed by the auto-builder.
Models that implement diagnostic extraction populate this struct. Fields are optional signals – return 0.0 if not available.
Fields§
§residual_alignment: f64Gradient alignment between consecutive steps (-1.0 to 1.0). Positive = model learning efficiently. Negative = overshooting.
regularization_sensitivity: f64How much regularization dominates predictions (0.0 = none, high = over-regularized).
depth_sufficiency: f64Within/between variance ratio. High = need more depth. Low = depth sufficient.
effective_dof: f64Effective degrees of freedom (model complexity measure).
uncertainty: f64Uncertainty measure (honest_sigma or equivalent).
Trait Implementations§
Source§impl Clone for ConfigDiagnostics
impl Clone for ConfigDiagnostics
Source§fn clone(&self) -> ConfigDiagnostics
fn clone(&self) -> ConfigDiagnostics
Returns a duplicate of the value. Read more
1.0.0 · 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 ConfigDiagnostics
impl Debug for ConfigDiagnostics
Source§impl Default for ConfigDiagnostics
impl Default for ConfigDiagnostics
Source§fn default() -> ConfigDiagnostics
fn default() -> ConfigDiagnostics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConfigDiagnostics
impl RefUnwindSafe for ConfigDiagnostics
impl Send for ConfigDiagnostics
impl Sync for ConfigDiagnostics
impl Unpin for ConfigDiagnostics
impl UnsafeUnpin for ConfigDiagnostics
impl UnwindSafe for ConfigDiagnostics
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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