trustformers 0.1.1

TrustformeRS - Rust port of Hugging Face Transformers
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Model weight loading utilities.
//!
//! Provides sequential and parallel weight loading for transformer models,
//! with progress reporting and statistics.

pub mod parallel_loader;

pub use parallel_loader::{
    load_model_parallel, LoadingProgress, LoadingStats, ParallelLoaderConfig,
    ParallelWeightLoader, WeightChunk,
};