pub struct ConvergenceInfo {
pub convergence_status: String,
pub parameter_stability: f64,
pub loss_volatility: f64,
pub gradient_consistency: f64,
pub plateau_detection: bool,
pub overfitting_risk: String,
pub early_stopping_recommendation: String,
pub convergence_speed_estimate: f64,
pub remaining_iterations: i32,
pub confidence_interval: (f64, f64),
}
Fields§
§convergence_status: String
§parameter_stability: f64
§loss_volatility: f64
§gradient_consistency: f64
§plateau_detection: bool
§overfitting_risk: String
§early_stopping_recommendation: String
§convergence_speed_estimate: f64
§remaining_iterations: i32
§confidence_interval: (f64, f64)
Trait Implementations§
Source§impl Clone for ConvergenceInfo
impl Clone for ConvergenceInfo
Source§fn clone(&self) -> ConvergenceInfo
fn clone(&self) -> ConvergenceInfo
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 ConvergenceInfo
impl Debug for ConvergenceInfo
Source§impl PartialEq for ConvergenceInfo
impl PartialEq for ConvergenceInfo
Source§impl Serialize for ConvergenceInfo
impl Serialize for ConvergenceInfo
impl StructuralPartialEq for ConvergenceInfo
Auto Trait Implementations§
impl Freeze for ConvergenceInfo
impl RefUnwindSafe for ConvergenceInfo
impl Send for ConvergenceInfo
impl Sync for ConvergenceInfo
impl Unpin for ConvergenceInfo
impl UnwindSafe for ConvergenceInfo
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