Enum MlTrainingPhase
pub enum MlTrainingPhase {
PrepareData,
Initialize,
Train,
Validate,
Tune,
Checkpoint,
Evaluate,
Export,
Complete,
}Variants§
Implementations§
§impl MlTrainingPhase
impl MlTrainingPhase
Trait Implementations§
§impl Clone for MlTrainingPhase
impl Clone for MlTrainingPhase
§fn clone(&self) -> MlTrainingPhase
fn clone(&self) -> MlTrainingPhase
Returns a duplicate 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 more§impl Debug for MlTrainingPhase
impl Debug for MlTrainingPhase
§impl Display for MlTrainingPhase
impl Display for MlTrainingPhase
§impl FromStr for MlTrainingPhase
impl FromStr for MlTrainingPhase
§type Err = MlTrainingError
type Err = MlTrainingError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<MlTrainingPhase, <MlTrainingPhase as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlTrainingPhase, <MlTrainingPhase as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for MlTrainingPhase
impl Hash for MlTrainingPhase
§impl Ord for MlTrainingPhase
impl Ord for MlTrainingPhase
§impl PartialEq for MlTrainingPhase
impl PartialEq for MlTrainingPhase
§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