pub struct ProgressiveStep {
pub index: usize,
pub metric_value: Option<f64>,
}Expand description
A single step of progressive evaluation, recording the prediction made before learning from this sample.
Fields§
§index: usizeZero-based index of the sample in the stream.
metric_value: Option<f64>The metric value after incorporating this prediction.
Trait Implementations§
Source§impl Clone for ProgressiveStep
impl Clone for ProgressiveStep
Source§fn clone(&self) -> ProgressiveStep
fn clone(&self) -> ProgressiveStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProgressiveStep
impl RefUnwindSafe for ProgressiveStep
impl Send for ProgressiveStep
impl Sync for ProgressiveStep
impl Unpin for ProgressiveStep
impl UnsafeUnpin for ProgressiveStep
impl UnwindSafe for ProgressiveStep
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