burn-core 0.18.0

Flexible and Comprehensive Deep Learning Framework in Rust
Documentation
/// Constant learning rate scheduler
pub mod constant;

/// Linear learning rate scheduler
pub mod linear;

/// Noam learning rate scheduler
pub mod noam;

/// Exponential learning rate scheduler
pub mod exponential;

/// Cosine learning rate scheduler
pub mod cosine;

/// Step learning rate scheduler
pub mod step;

mod base;

pub use base::*;