entrenar 0.7.12

Training & Optimization library with autograd, LoRA, quantization, and model merging
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cubic pruning schedule methods.
//!
//! This module implements the cubic pruning schedule which provides faster
//! initial pruning that gradually slows down as training progresses.
//!
//! Formula: s_t = s_f * (1 - (1 - t/T)^3)

mod core;

#[cfg(test)]
mod proptests;
#[cfg(test)]
mod tests;