pub struct LearningRateInfo {
pub current_lr: f64,
pub lr_schedule_type: String,
pub lr_effectiveness: f64,
pub convergence_rate_impact: f64,
pub stability_impact: f64,
pub overfitting_risk: f64,
pub underfitting_risk: f64,
pub lr_range_recommendation: (f64, f64),
pub schedule_optimization: String,
pub adaptive_lr_benefits: String,
}Fields§
§current_lr: f64§lr_schedule_type: String§lr_effectiveness: f64§convergence_rate_impact: f64§stability_impact: f64§overfitting_risk: f64§underfitting_risk: f64§lr_range_recommendation: (f64, f64)§schedule_optimization: String§adaptive_lr_benefits: StringTrait Implementations§
Source§impl Clone for LearningRateInfo
impl Clone for LearningRateInfo
Source§fn clone(&self) -> LearningRateInfo
fn clone(&self) -> LearningRateInfo
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 LearningRateInfo
impl Debug for LearningRateInfo
Source§impl PartialEq for LearningRateInfo
impl PartialEq for LearningRateInfo
Source§impl Serialize for LearningRateInfo
impl Serialize for LearningRateInfo
impl StructuralPartialEq for LearningRateInfo
Auto Trait Implementations§
impl Freeze for LearningRateInfo
impl RefUnwindSafe for LearningRateInfo
impl Send for LearningRateInfo
impl Sync for LearningRateInfo
impl Unpin for LearningRateInfo
impl UnwindSafe for LearningRateInfo
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