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
15
16
17
//! Sovereign Distribution Manifest (ENT-016)
//!
//! Provides distribution packaging for air-gapped deployment scenarios,
//! like old-school Linux .ISO hosting at universities.

mod component;
mod format;
mod sovereign;
mod tier;

pub use component::ComponentManifest;
pub use format::DistributionFormat;
pub use sovereign::SovereignDistribution;
pub use tier::DistributionTier;

#[cfg(test)]
mod tests;