pub struct TrainTestSplitResult<Feature, Label, D: Dimension, D2: Dimension>(pub Array<Feature, D>, pub Array<Feature, D>, pub Array<Label, D2>, pub Array<Label, D2>);Expand description
Train test split result. returns in order training features, testing features, training labels, testing labels.
Tuple Fields§
§0: Array<Feature, D>§1: Array<Feature, D>§2: Array<Label, D2>§3: Array<Label, D2>Trait Implementations§
Source§impl<Feature: Clone, Label: Clone, D: Clone + Dimension, D2: Clone + Dimension> Clone for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature: Clone, Label: Clone, D: Clone + Dimension, D2: Clone + Dimension> Clone for TrainTestSplitResult<Feature, Label, D, D2>
Source§fn clone(&self) -> TrainTestSplitResult<Feature, Label, D, D2>
fn clone(&self) -> TrainTestSplitResult<Feature, Label, D, D2>
Returns a copy 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<Feature, Label, D, D2> Freeze for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature, Label, D, D2> RefUnwindSafe for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature, Label, D, D2> Send for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature, Label, D, D2> Sync for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature, Label, D, D2> Unpin for TrainTestSplitResult<Feature, Label, D, D2>
impl<Feature, Label, D, D2> UnwindSafe for TrainTestSplitResult<Feature, Label, D, D2>
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