entrenar 0.7.8

Training & Optimization library with autograd, LoRA, quantization, and model merging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Pruning callback for training loop integration
//!
//! This module provides the `PruningCallback` that integrates with Entrenar's
//! training callback system to apply pruning during training.
//!
//! # Toyota Way: Kaizen (Continuous Improvement)
//! Gradual pruning allows the model to adapt incrementally to sparsity.

mod pruning_callback;

#[cfg(test)]
mod tests;

// Re-export all public types
pub use pruning_callback::PruningCallback;