entrenar/prune/callback/mod.rs
1//! Pruning callback for training loop integration
2//!
3//! This module provides the `PruningCallback` that integrates with Entrenar's
4//! training callback system to apply pruning during training.
5//!
6//! # Toyota Way: Kaizen (Continuous Improvement)
7//! Gradual pruning allows the model to adapt incrementally to sparsity.
8
9mod pruning_callback;
10
11#[cfg(test)]
12mod tests;
13
14// Re-export all public types
15pub use pruning_callback::PruningCallback;