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
//! Cost-Performance Benchmarking (ENT-011)
//!
//! Provides benchmarking infrastructure with Pareto frontier analysis
//! for cost-performance optimization.

mod collection;
mod entry;
mod statistics;

pub use collection::CostPerformanceBenchmark;
pub use entry::BenchmarkEntry;
pub use statistics::BenchmarkStatistics;

// Re-export types needed by this module's public API

#[cfg(test)]
mod tests;