pub struct StagedConfig {
pub alpha: f64,
pub max_calibration: usize,
pub min_calibration: usize,
pub lambda: f64,
}Expand description
Configuration for staged conformal prediction.
Fields§
§alpha: f64Significance level alpha per stage. Default: 0.05.
max_calibration: usizeMaximum calibration window per stage. Default: 500.
min_calibration: usizeMinimum calibration samples before alerting. Default: 10.
lambda: f64E-process betting fraction. Default: 0.5.
Trait Implementations§
Source§impl Clone for StagedConfig
impl Clone for StagedConfig
Source§fn clone(&self) -> StagedConfig
fn clone(&self) -> StagedConfig
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 StagedConfig
impl Debug for StagedConfig
Auto Trait Implementations§
impl Freeze for StagedConfig
impl RefUnwindSafe for StagedConfig
impl Send for StagedConfig
impl Sync for StagedConfig
impl Unpin for StagedConfig
impl UnsafeUnpin for StagedConfig
impl UnwindSafe for StagedConfig
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