pub enum ConvergencePhase {
Cold,
Warming,
ActiveLearning,
Declining,
}Expand description
Gradient-trajectory phase. Enum => gradient_phase ∈ GradientPhases by
construction.
Variants§
Cold
No peak has been observed and the delta remains below threshold.
Warming
The first threshold event has been observed.
ActiveLearning
A post-peak delta is at or above threshold.
Declining
A post-peak delta is below threshold.
Trait Implementations§
impl Copy for Phase
impl Eq for Phase
impl StructuralPartialEq for Phase
Auto Trait Implementations§
impl Freeze for Phase
impl RefUnwindSafe for Phase
impl Send for Phase
impl Sync for Phase
impl Unpin for Phase
impl UnsafeUnpin for Phase
impl UnwindSafe for Phase
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