entrenar 0.7.9

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
//! Safety Andon for Inference (ENT-110)
//!
//! Toyota Way 自働化 (Jidoka): Automation with human touch.
//! Inference-specific Andon rules: low confidence, high latency, drift.

mod andon;
mod emergency;
mod sil;

#[cfg(test)]
mod tests;

// Re-export all public types
pub use andon::SafetyAndon;
pub use emergency::EmergencyCondition;
pub use sil::SafetyIntegrityLevel;