pub struct ARFConfigBuilder { /* private fields */ }Available on crate feature
alloc only.Expand description
Builder for ARFConfig.
Implementations§
Source§impl ARFConfigBuilder
impl ARFConfigBuilder
Sourcepub fn feature_fraction(self, f: f64) -> Self
pub fn feature_fraction(self, f: f64) -> Self
Fraction of features per tree. 0.0 = auto (sqrt).
Sourcepub fn drift_delta(self, d: f64) -> Self
pub fn drift_delta(self, d: f64) -> Self
ADWIN delta for drift detection.
Sourcepub fn warning_delta(self, d: f64) -> Self
pub fn warning_delta(self, d: f64) -> Self
ADWIN delta for warning detection.
Trait Implementations§
Source§impl Clone for ARFConfigBuilder
impl Clone for ARFConfigBuilder
Source§fn clone(&self) -> ARFConfigBuilder
fn clone(&self) -> ARFConfigBuilder
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 ARFConfigBuilder
impl RefUnwindSafe for ARFConfigBuilder
impl Send for ARFConfigBuilder
impl Sync for ARFConfigBuilder
impl Unpin for ARFConfigBuilder
impl UnsafeUnpin for ARFConfigBuilder
impl UnwindSafe for ARFConfigBuilder
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