1 2 3 4 5 6 7 8 9 10
//! Step-size adaptation: algorithms and scheduling logic for tuning the leapfrog step size toward a target acceptance rate. mod adam; mod adapt; mod dual_avg; pub use adam::AdamOptions; pub(crate) use adapt::Strategy; pub use adapt::{StepSizeAdaptMethod, StepSizeAdaptOptions, StepSizeSettings}; pub(crate) use dual_avg::AcceptanceRateCollector;