Skip to main content

entrenar/prune/schedule/cubic/
mod.rs

1//! Cubic pruning schedule methods.
2//!
3//! This module implements the cubic pruning schedule which provides faster
4//! initial pruning that gradually slows down as training progresses.
5//!
6//! Formula: s_t = s_f * (1 - (1 - t/T)^3)
7
8mod core;
9
10#[cfg(test)]
11mod proptests;
12#[cfg(test)]
13mod tests;