pub enum TrainingAnomaly {
NonFiniteLoss,
GradientExplosion {
norm: f64,
threshold: f64,
},
GradientVanishing {
norm: f64,
threshold: f64,
},
LossSpike {
z_score: f64,
loss: f64,
},
LowConfidence {
confidence: f64,
threshold: f64,
},
}Expand description
Training anomaly types for Jidoka detection.
Variants§
NonFiniteLoss
Loss became NaN or Infinity.
GradientExplosion
Gradient norm exceeded threshold.
GradientVanishing
Gradient norm fell below threshold.
LossSpike
Loss spike detected (statistical outlier).
LowConfidence
Prediction confidence below threshold.
Trait Implementations§
Source§impl Clone for TrainingAnomaly
impl Clone for TrainingAnomaly
Source§fn clone(&self) -> TrainingAnomaly
fn clone(&self) -> TrainingAnomaly
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TrainingAnomaly
impl Debug for TrainingAnomaly
Source§impl<'de> Deserialize<'de> for TrainingAnomaly
impl<'de> Deserialize<'de> for TrainingAnomaly
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TrainingAnomaly
impl Display for TrainingAnomaly
Source§impl PartialEq for TrainingAnomaly
impl PartialEq for TrainingAnomaly
Source§impl Serialize for TrainingAnomaly
impl Serialize for TrainingAnomaly
impl Copy for TrainingAnomaly
impl StructuralPartialEq for TrainingAnomaly
Auto Trait Implementations§
impl Freeze for TrainingAnomaly
impl RefUnwindSafe for TrainingAnomaly
impl Send for TrainingAnomaly
impl Sync for TrainingAnomaly
impl Unpin for TrainingAnomaly
impl UnsafeUnpin for TrainingAnomaly
impl UnwindSafe for TrainingAnomaly
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ValidateIp for Twhere
T: ToString,
impl<T> ValidateIp for Twhere
T: ToString,
Source§fn validate_ipv4(&self) -> bool
fn validate_ipv4(&self) -> bool
Validates whether the given string is an IP V4
Source§fn validate_ipv6(&self) -> bool
fn validate_ipv6(&self) -> bool
Validates whether the given string is an IP V6
Source§fn validate_ip(&self) -> bool
fn validate_ip(&self) -> bool
Validates whether the given string is an IP