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
15
16
17
//! Model I/O - Loading and saving models
//!
//! Provides functionality to save and load trained models, supporting
//! multiple serialization formats.

mod format;
mod load;
mod model;
mod save;

#[cfg(test)]
mod tests;

pub use format::{ModelFormat, SaveConfig};
pub use load::load_model;
pub use model::{Model, ModelMetadata, ParameterInfo};
pub use save::save_model;