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
//! SQLite Backend implementation for Experiment Storage.
//!
//! Sovereign, local-first storage using SQLite with WAL mode.
//!
//! # Toyota Way: (Heijunka)
//!
//! SQLite provides consistent, predictable performance without external dependencies.

pub(crate) mod schema;
mod sqlite_backend;

pub use sqlite_backend::SqliteBackend;

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