entrenar 0.7.11

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
//! Model loading and teacher model abstraction
//!
//! Provides format-agnostic model loading with memory estimation.

mod memory;
mod safetensors;
mod teacher;

#[cfg(test)]
mod tests;

pub use memory::MemoryEstimate;
pub use safetensors::SafeTensorsTeacher;
pub use teacher::TeacherModel;