entrenar 0.7.8

Training & Optimization library with autograd, LoRA, quantization, and model merging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Actions taken by the AutoRetrainer.

/// Action taken by the AutoRetrainer
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Action {
    /// No action needed
    None,
    /// Warning logged but no retrain triggered
    WarningLogged,
    /// Retraining was triggered with given job ID
    RetrainTriggered(String),
}