pub struct PACLearner {
pub eps: f64,
pub delta: f64,
}Expand description
PAC learner: wraps accuracy/confidence parameters.
Fields§
§eps: f64ε: maximum tolerated generalization error.
delta: f64δ: failure probability (confidence 1−δ).
Implementations§
Auto Trait Implementations§
impl Freeze for PACLearner
impl RefUnwindSafe for PACLearner
impl Send for PACLearner
impl Sync for PACLearner
impl Unpin for PACLearner
impl UnsafeUnpin for PACLearner
impl UnwindSafe for PACLearner
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