pub struct LearningProgressInfo {
pub loss_trend: String,
pub parameter_update_magnitude: f64,
pub gradient_norm_ratio: f64,
pub convergence_speed: f64,
pub training_efficiency: f64,
pub learning_rate_schedule: String,
pub momentum_coefficient: f64,
pub weight_decay_effect: f64,
pub batch_size_impact: i32,
pub optimization_algorithm: String,
}
Fields§
§loss_trend: String
§parameter_update_magnitude: f64
§gradient_norm_ratio: f64
§convergence_speed: f64
§training_efficiency: f64
§learning_rate_schedule: String
§momentum_coefficient: f64
§weight_decay_effect: f64
§batch_size_impact: i32
§optimization_algorithm: String
Trait Implementations§
Source§impl Clone for LearningProgressInfo
impl Clone for LearningProgressInfo
Source§fn clone(&self) -> LearningProgressInfo
fn clone(&self) -> LearningProgressInfo
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 LearningProgressInfo
impl Debug for LearningProgressInfo
Source§impl PartialEq for LearningProgressInfo
impl PartialEq for LearningProgressInfo
Source§impl Serialize for LearningProgressInfo
impl Serialize for LearningProgressInfo
impl StructuralPartialEq for LearningProgressInfo
Auto Trait Implementations§
impl Freeze for LearningProgressInfo
impl RefUnwindSafe for LearningProgressInfo
impl Send for LearningProgressInfo
impl Sync for LearningProgressInfo
impl Unpin for LearningProgressInfo
impl UnwindSafe for LearningProgressInfo
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