pub struct GlobalSplitReport {
pub total_rows: u64,
pub total_train_rows: u64,
pub total_test_rows: u64,
pub total_validation_rows: Option<u64>,
pub effective_train_ratio: f64,
pub effective_test_ratio: f64,
pub effective_validation_ratio: Option<f64>,
pub node_summaries: Vec<NodeSummary>,
pub global_label_distribution: Option<HashMap<String, u64>>,
pub quality_passed: bool,
pub issues: Vec<SplitQualityIssue>,
}Expand description
Report on global split quality across all nodes
Fields§
§total_rows: u64Total rows across all nodes
total_train_rows: u64Total training rows
total_test_rows: u64Total test rows
total_validation_rows: Option<u64>Total validation rows
effective_train_ratio: f64Effective train/test/val ratios
effective_test_ratio: f64Effective test ratio
effective_validation_ratio: Option<f64>Effective validation ratio
node_summaries: Vec<NodeSummary>Per-node summaries
global_label_distribution: Option<HashMap<String, u64>>Global label distribution (if stratified)
quality_passed: boolWhether split quality meets requirements
issues: Vec<SplitQualityIssue>Quality issues found
Trait Implementations§
Source§impl Clone for GlobalSplitReport
impl Clone for GlobalSplitReport
Source§fn clone(&self) -> GlobalSplitReport
fn clone(&self) -> GlobalSplitReport
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 GlobalSplitReport
impl RefUnwindSafe for GlobalSplitReport
impl Send for GlobalSplitReport
impl Sync for GlobalSplitReport
impl Unpin for GlobalSplitReport
impl UnsafeUnpin for GlobalSplitReport
impl UnwindSafe for GlobalSplitReport
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 moreCreates a shared type from an unshared type.