pub struct ReduceLROnPlateau { /* private fields */ }Expand description
Reduce LR on plateau scheduler.
Reduces learning rate when a metric has stopped improving.
Implementations§
Source§impl ReduceLROnPlateau
impl ReduceLROnPlateau
Sourcepub fn new(mode: PlateauMode, factor: f32, patience: usize) -> Self
pub fn new(mode: PlateauMode, factor: f32, patience: usize) -> Self
Create a new ReduceLROnPlateau scheduler.
§Arguments
mode- Whether to minimize or maximize the metricfactor- Factor to reduce LR by (e.g., 0.1)patience- Number of epochs with no improvement before reducing
Sourcepub fn step_with_metric<O: Optimizer>(&mut self, optimizer: &mut O, metric: f32)
pub fn step_with_metric<O: Optimizer>(&mut self, optimizer: &mut O, metric: f32)
Update scheduler with current metric value.
Trait Implementations§
Source§impl Clone for ReduceLROnPlateau
impl Clone for ReduceLROnPlateau
Source§fn clone(&self) -> ReduceLROnPlateau
fn clone(&self) -> ReduceLROnPlateau
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 moreSource§impl Debug for ReduceLROnPlateau
impl Debug for ReduceLROnPlateau
Auto Trait Implementations§
impl Freeze for ReduceLROnPlateau
impl RefUnwindSafe for ReduceLROnPlateau
impl Send for ReduceLROnPlateau
impl Sync for ReduceLROnPlateau
impl Unpin for ReduceLROnPlateau
impl UnwindSafe for ReduceLROnPlateau
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more