pub struct CurriculumStats {
pub current_epoch: usize,
pub current_threshold: f32,
pub num_selected_samples: usize,
pub total_samples: usize,
pub avg_difficulty: f32,
pub recent_performance: f32,
}Expand description
Curriculum learning statistics
Fields§
§current_epoch: usize§current_threshold: f32§num_selected_samples: usize§total_samples: usize§avg_difficulty: f32§recent_performance: f32Trait Implementations§
Source§impl Clone for CurriculumStats
impl Clone for CurriculumStats
Source§fn clone(&self) -> CurriculumStats
fn clone(&self) -> CurriculumStats
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 moreAuto Trait Implementations§
impl Freeze for CurriculumStats
impl RefUnwindSafe for CurriculumStats
impl Send for CurriculumStats
impl Sync for CurriculumStats
impl Unpin for CurriculumStats
impl UnwindSafe for CurriculumStats
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> 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