pub enum MlTrainingPhase {
PrepareData,
Initialize,
Train,
Validate,
Tune,
Checkpoint,
Evaluate,
Export,
Complete,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlTrainingPhase
impl Clone for MlTrainingPhase
Source§fn clone(&self) -> MlTrainingPhase
fn clone(&self) -> MlTrainingPhase
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 MlTrainingPhase
impl Debug for MlTrainingPhase
Source§impl Display for MlTrainingPhase
impl Display for MlTrainingPhase
Source§impl FromStr for MlTrainingPhase
impl FromStr for MlTrainingPhase
Source§impl Hash for MlTrainingPhase
impl Hash for MlTrainingPhase
Source§impl Ord for MlTrainingPhase
impl Ord for MlTrainingPhase
Source§fn cmp(&self, other: &MlTrainingPhase) -> Ordering
fn cmp(&self, other: &MlTrainingPhase) -> 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 MlTrainingPhase
impl PartialEq for MlTrainingPhase
Source§fn eq(&self, other: &MlTrainingPhase) -> bool
fn eq(&self, other: &MlTrainingPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlTrainingPhase
impl PartialOrd for MlTrainingPhase
impl Copy for MlTrainingPhase
impl Eq for MlTrainingPhase
impl StructuralPartialEq for MlTrainingPhase
Auto Trait Implementations§
impl Freeze for MlTrainingPhase
impl RefUnwindSafe for MlTrainingPhase
impl Send for MlTrainingPhase
impl Sync for MlTrainingPhase
impl Unpin for MlTrainingPhase
impl UnsafeUnpin for MlTrainingPhase
impl UnwindSafe for MlTrainingPhase
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