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: DetectionMethodStatistical detection method.
window_size: usizeNumber of most-recent samples kept in the rolling window.
reference_window_size: usizeSize of the reference (baseline) window.
min_samples_before_detect: usizeMinimum samples before drift detection is attempted.
drift_threshold: f64Unified drift threshold (also used inside method-specific logic where needed).