pub enum MlValidationStrategy {
Holdout,
KFold,
StratifiedKFold,
TimeSeriesSplit,
LeaveOneOut,
Bootstrap,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlValidationStrategy
impl Clone for MlValidationStrategy
Source§fn clone(&self) -> MlValidationStrategy
fn clone(&self) -> MlValidationStrategy
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 MlValidationStrategy
impl Debug for MlValidationStrategy
Source§impl Display for MlValidationStrategy
impl Display for MlValidationStrategy
Source§impl FromStr for MlValidationStrategy
impl FromStr for MlValidationStrategy
Source§impl Hash for MlValidationStrategy
impl Hash for MlValidationStrategy
Source§impl Ord for MlValidationStrategy
impl Ord for MlValidationStrategy
Source§fn cmp(&self, other: &MlValidationStrategy) -> Ordering
fn cmp(&self, other: &MlValidationStrategy) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MlValidationStrategy
impl PartialEq for MlValidationStrategy
Source§fn eq(&self, other: &MlValidationStrategy) -> bool
fn eq(&self, other: &MlValidationStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlValidationStrategy
impl PartialOrd for MlValidationStrategy
impl Copy for MlValidationStrategy
impl Eq for MlValidationStrategy
impl StructuralPartialEq for MlValidationStrategy
Auto Trait Implementations§
impl Freeze for MlValidationStrategy
impl RefUnwindSafe for MlValidationStrategy
impl Send for MlValidationStrategy
impl Sync for MlValidationStrategy
impl Unpin for MlValidationStrategy
impl UnsafeUnpin for MlValidationStrategy
impl UnwindSafe for MlValidationStrategy
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