pub struct RhoSweepCell {
pub rho_scale: f32,
pub episode_count: u32,
pub tp_count: u32,
pub precision: f32,
pub recall: f32,
pub false_rate: f32,
}Expand description
One cell of the ρ sensitivity sweep.
rho_scale = 1.0 is the Stage III nominal operating point.
Fields§
§rho_scale: f32ρ multiplier applied to ρ_nom = 3σ_healthy. Range: [0.85, 1.15] in steps of 0.03.
episode_count: u32Episode count at this ρ (model estimate for s ≠ 1.0).
tp_count: u32TP episode count (episodes matching a labeled transition event).
precision: f32Episode precision = tp / episode_count.
recall: f32Recall = events covered / NOM_EVENT_TOTAL.
false_rate: f32False episode rate on clean windows at this ρ.
Trait Implementations§
Source§impl Clone for RhoSweepCell
impl Clone for RhoSweepCell
Source§fn clone(&self) -> RhoSweepCell
fn clone(&self) -> RhoSweepCell
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 RhoSweepCell
impl Debug for RhoSweepCell
Source§impl PartialEq for RhoSweepCell
impl PartialEq for RhoSweepCell
impl Copy for RhoSweepCell
impl StructuralPartialEq for RhoSweepCell
Auto Trait Implementations§
impl Freeze for RhoSweepCell
impl RefUnwindSafe for RhoSweepCell
impl Send for RhoSweepCell
impl Sync for RhoSweepCell
impl Unpin for RhoSweepCell
impl UnsafeUnpin for RhoSweepCell
impl UnwindSafe for RhoSweepCell
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