Skip to main content

sensorlm/training/
mod.rs

1//! Training infrastructure.
2//!
3//! | Module | Contents |
4//! |--------|----------|
5//! | [`learner`]   | Main `train()` function, model save/load helpers |
6//! | [`scheduler`] | Rsqrt LR scheduler with warm-up and cool-down |
7
8pub mod learner;
9pub mod scheduler;