pub struct RowSplit {
pub train: Arc<[u32]>,
pub test: Arc<[u32]>,
}Expand description
Train / test row-index partition (metadata only — no data copy).
Fields§
§train: Arc<[u32]>Training row indexes.
test: Arc<[u32]>Test / holdout row indexes.
Implementations§
Trait Implementations§
impl Eq for RowSplit
impl StructuralPartialEq for RowSplit
Auto Trait Implementations§
impl Freeze for RowSplit
impl RefUnwindSafe for RowSplit
impl Send for RowSplit
impl Sync for RowSplit
impl Unpin for RowSplit
impl UnsafeUnpin for RowSplit
impl UnwindSafe for RowSplit
Blanket Implementations§
impl<T> Allocation for T
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