pub struct RandomizedSmoothingClassifier {
pub sigma: f64,
pub n_samples: usize,
pub confidence: f64,
}Fields§
§sigma: f64§n_samples: usize§confidence: f64Implementations§
Source§impl RandomizedSmoothingClassifier
impl RandomizedSmoothingClassifier
Trait Implementations§
Source§impl Clone for RandomizedSmoothingClassifier
impl Clone for RandomizedSmoothingClassifier
Source§fn clone(&self) -> RandomizedSmoothingClassifier
fn clone(&self) -> RandomizedSmoothingClassifier
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 moreAuto Trait Implementations§
impl Freeze for RandomizedSmoothingClassifier
impl RefUnwindSafe for RandomizedSmoothingClassifier
impl Send for RandomizedSmoothingClassifier
impl Sync for RandomizedSmoothingClassifier
impl Unpin for RandomizedSmoothingClassifier
impl UnsafeUnpin for RandomizedSmoothingClassifier
impl UnwindSafe for RandomizedSmoothingClassifier
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