pub struct LearningProgress {
pub iterations_completed: usize,
pub total_games_played: usize,
pub positions_generated: usize,
pub positions_kept: usize,
pub average_position_quality: f32,
pub best_positions_found: usize,
pub training_start_time: Option<SystemTime>,
pub last_update_time: Option<SystemTime>,
pub elo_progression: Vec<(usize, f32)>,
}Expand description
Learning progress tracking for persistent training state
Fields§
§iterations_completed: usize§total_games_played: usize§positions_generated: usize§positions_kept: usize§average_position_quality: f32§best_positions_found: usize§training_start_time: Option<SystemTime>§last_update_time: Option<SystemTime>§elo_progression: Vec<(usize, f32)>Trait Implementations§
Source§impl Clone for LearningProgress
impl Clone for LearningProgress
Source§fn clone(&self) -> LearningProgress
fn clone(&self) -> LearningProgress
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 LearningProgress
impl Debug for LearningProgress
Source§impl Default for LearningProgress
impl Default for LearningProgress
Source§impl<'de> Deserialize<'de> for LearningProgress
impl<'de> Deserialize<'de> for LearningProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LearningProgress
impl RefUnwindSafe for LearningProgress
impl Send for LearningProgress
impl Sync for LearningProgress
impl Unpin for LearningProgress
impl UnwindSafe for LearningProgress
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