entrenar 0.7.8

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
15
16
17
18
//! Hansei (反省) Post-Training Report Generator
//!
//! Toyota Way principle: Reflection and continuous improvement through
//! systematic analysis of training outcomes.
//!
//! Reference: Liker, J.K. (2004). The Toyota Way: 14 Management Principles.

mod analyzer;
mod output;
mod types;

#[cfg(test)]
mod tests;

// Re-export all public types
pub use analyzer::HanseiAnalyzer;
pub use output::PostTrainingReport;
pub use types::{IssueSeverity, MetricSummary, TrainingIssue, Trend};