entrenar 0.7.13

Training & Optimization library with autograd, LoRA, quantization, and model merging
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Multi-epoch training loops
//!
//! This module provides the main training loop implementations for the `Trainer`:
//! - `basic`: Training loop without validation (`Trainer::train`)
//! - `validation`: Training loop with validation support (`Trainer::train_with_val`)

mod basic;
mod validation;

#[cfg(test)]
mod tests;