Skip to main content

EddDetectorConfigAlias

Type Alias EddDetectorConfigAlias 

Source
pub type EddDetectorConfigAlias = EddDetectorConfig;
Expand description

Type alias: EddDetectorConfig is the config for EddEmbeddingDriftDetector.

Aliased Type§

pub struct EddDetectorConfigAlias {
    pub method: DetectionMethod,
    pub window_size: usize,
    pub reference_window_size: usize,
    pub min_samples_before_detect: usize,
    pub drift_threshold: f64,
}

Fields§

§method: DetectionMethod

Statistical detection method.

§window_size: usize

Number of most-recent samples kept in the rolling window.

§reference_window_size: usize

Size of the reference (baseline) window.

§min_samples_before_detect: usize

Minimum samples before drift detection is attempted.

§drift_threshold: f64

Unified drift threshold (also used inside method-specific logic where needed).