pub struct LearningStats {
pub positions_generated: usize,
pub positions_kept: usize,
pub positions_pruned: usize,
pub high_quality_positions: usize,
}Expand description
Statistics from a learning iteration
Fields§
§positions_generated: usize§positions_kept: usize§positions_pruned: usize§high_quality_positions: usizeImplementations§
Source§impl LearningStats
impl LearningStats
pub fn new() -> Self
pub fn learning_efficiency(&self) -> f32
pub fn quality_ratio(&self) -> f32
Trait Implementations§
Source§impl Clone for LearningStats
impl Clone for LearningStats
Source§fn clone(&self) -> LearningStats
fn clone(&self) -> LearningStats
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 LearningStats
impl Debug for LearningStats
Source§impl Default for LearningStats
impl Default for LearningStats
Source§fn default() -> LearningStats
fn default() -> LearningStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LearningStats
impl RefUnwindSafe for LearningStats
impl Send for LearningStats
impl Sync for LearningStats
impl Unpin for LearningStats
impl UnwindSafe for LearningStats
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