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
14
//! Model Paradigm Classification (ENT-010)
//!
//! Provides classification of ML model paradigms with associated
//! memory and performance characteristics.

mod fine_tune;
mod model_paradigm;

#[cfg(test)]
mod tests;

// Re-export all public types
pub use fine_tune::FineTuneMethod;
pub use model_paradigm::ModelParadigm;