pub struct SequentialLrSchedulerConfig { /* private fields */ }Available on crate feature
std only.Expand description
Configuration for a sequential learning rate scheduler.
Each milestone is the number of completed calls to LrScheduler::step at which the next
scheduler takes over. Therefore, N schedulers require exactly N - 1 milestones. Milestones
must be greater than zero and strictly increasing.
§Example
The linear scheduler below handles the first 100 steps, after which the cosine scheduler starts from its own first step.
use burn_optim::lr_scheduler::{
LrSchedulerConfig,
cosine::CosineAnnealingLrSchedulerConfig, linear::LinearLrSchedulerConfig,
sequential::SequentialLrSchedulerConfig,
};
let config = SequentialLrSchedulerConfig::new(
vec![
LrSchedulerConfig::Linear(LinearLrSchedulerConfig::new(1e-5, 1e-2, 100)),
LrSchedulerConfig::Cosine(CosineAnnealingLrSchedulerConfig::new(1e-2, 900)),
],
vec![100],
);
let scheduler = config.init().unwrap();Implementations§
Source§impl SequentialLrSchedulerConfig
impl SequentialLrSchedulerConfig
Sourcepub fn init(&self) -> Result<ModuleLrScheduler, String>
pub fn init(&self) -> Result<ModuleLrScheduler, String>
Initializes a module learning rate scheduler.
§Errors
An error is returned when there are no schedulers, the number of milestones is not one less than the number of schedulers, milestones are zero or not strictly increasing, or a child scheduler configuration is invalid.
Trait Implementations§
Source§impl Clone for SequentialLrSchedulerConfig
impl Clone for SequentialLrSchedulerConfig
Source§impl Config for SequentialLrSchedulerConfig
impl Config for SequentialLrSchedulerConfig
Source§fn load<P>(file: P) -> Result<Self, ConfigError>
fn load<P>(file: P) -> Result<Self, ConfigError>
Loads the configuration from a file. Read more
Source§fn load_binary(data: &[u8]) -> Result<Self, ConfigError>
fn load_binary(data: &[u8]) -> Result<Self, ConfigError>
Loads the configuration from a binary buffer. Read more
Source§impl Debug for SequentialLrSchedulerConfig
impl Debug for SequentialLrSchedulerConfig
Source§impl<'de> Deserialize<'de> for SequentialLrSchedulerConfig
impl<'de> Deserialize<'de> for SequentialLrSchedulerConfig
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SequentialLrSchedulerConfig> for LrSchedulerConfig
impl From<SequentialLrSchedulerConfig> for LrSchedulerConfig
Source§fn from(config: SequentialLrSchedulerConfig) -> Self
fn from(config: SequentialLrSchedulerConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SequentialLrSchedulerConfig
impl RefUnwindSafe for SequentialLrSchedulerConfig
impl Send for SequentialLrSchedulerConfig
impl Sync for SequentialLrSchedulerConfig
impl Unpin for SequentialLrSchedulerConfig
impl UnsafeUnpin for SequentialLrSchedulerConfig
impl UnwindSafe for SequentialLrSchedulerConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneExpand for Twhere
T: Clone,
impl<T> CloneExpand for Twhere
T: Clone,
fn __expand_clone_method(&self, _: &Scope) -> T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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