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
//! HuggingFace Model Fetcher
//!
//! Downloads models from HuggingFace Hub with authentication and caching.

mod hf_fetcher;
mod options;
mod types;

#[cfg(test)]
#[path = "tests/mod.rs"]
mod tests;

// Re-export all public types for API compatibility
pub use hf_fetcher::HfModelFetcher;
pub use options::FetchOptions;
pub use types::{Architecture, ModelArtifact, WeightFormat};