[][src]Struct smartcore::model_selection::KFold

pub struct KFold {
    pub n_splits: usize,
    pub shuffle: bool,
}

K-Folds cross-validator

Fields

n_splits: usize

Number of folds. Must be at least 2.

shuffle: bool

Whether to shuffle the data before splitting into batches

Implementations

impl KFold[src]

pub fn with_n_splits(self, n_splits: usize) -> Self[src]

Number of folds. Must be at least 2.

pub fn with_shuffle(self, shuffle: bool) -> Self[src]

Whether to shuffle the data before splitting into batches

Trait Implementations

impl BaseKFold for KFold[src]

Abstract class for all KFold functionalities

type Output = KFoldIter

An iterator over indices that split data into training and test set.

impl Default for KFold[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,