pub struct ConfigCell {
pub w: u8,
pub k: u8,
pub tau: f32,
pub episode_count: u32,
pub precision: f32,
pub recall: f32,
pub f_score: f32,
}Expand description
One cell of the W × K × τ configuration grid.
Fields§
§w: u8Observation window W ∈ {5, 10, 15}.
k: u8Persistence threshold K ∈ {2, 3, 4}.
tau: f32DSA score threshold τ ∈ {2.0, 2.5, 3.0}.
episode_count: u32Episode count at this (W, K, τ).
precision: f32Episode precision (TP / episodes).
recall: f32Recall (events covered / NOM_EVENT_TOTAL).
f_score: f32Precision × recall product (figure of merit).
Trait Implementations§
Source§impl Clone for ConfigCell
impl Clone for ConfigCell
Source§fn clone(&self) -> ConfigCell
fn clone(&self) -> ConfigCell
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 ConfigCell
impl Debug for ConfigCell
Source§impl PartialEq for ConfigCell
impl PartialEq for ConfigCell
impl Copy for ConfigCell
impl StructuralPartialEq for ConfigCell
Auto Trait Implementations§
impl Freeze for ConfigCell
impl RefUnwindSafe for ConfigCell
impl Send for ConfigCell
impl Sync for ConfigCell
impl Unpin for ConfigCell
impl UnsafeUnpin for ConfigCell
impl UnwindSafe for ConfigCell
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