pub struct CrossFoldValidation {
pub reports: Vec<RegressionMetricReport>,
pub oof_averages: Vec<OofAverageBlock>,
}Expand description
The output of cross_fold_validation_reports: the scalar cross-fold OOF average reports (one per
producer, fold_id = "avg") plus — purely additively — the per-sample OOF average block + y_true
each report was computed from. reports is byte-identical to the historical Vec return; callers
that only need the scalars read reports and ignore oof_averages.
Fields§
§reports: Vec<RegressionMetricReport>§oof_averages: Vec<OofAverageBlock>Trait Implementations§
Source§impl Clone for CrossFoldValidation
impl Clone for CrossFoldValidation
Source§fn clone(&self) -> CrossFoldValidation
fn clone(&self) -> CrossFoldValidation
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 moreSource§impl Debug for CrossFoldValidation
impl Debug for CrossFoldValidation
Source§impl Default for CrossFoldValidation
impl Default for CrossFoldValidation
Source§fn default() -> CrossFoldValidation
fn default() -> CrossFoldValidation
Returns the “default value” for a type. Read more
Source§impl PartialEq for CrossFoldValidation
impl PartialEq for CrossFoldValidation
Source§fn eq(&self, other: &CrossFoldValidation) -> bool
fn eq(&self, other: &CrossFoldValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CrossFoldValidation
Auto Trait Implementations§
impl Freeze for CrossFoldValidation
impl RefUnwindSafe for CrossFoldValidation
impl Send for CrossFoldValidation
impl Sync for CrossFoldValidation
impl Unpin for CrossFoldValidation
impl UnsafeUnpin for CrossFoldValidation
impl UnwindSafe for CrossFoldValidation
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