pub enum FeatureSelection {
None,
TopK(usize),
Correlation(f32),
RFE,
}Expand description
Feature selection methods
Variants§
None
No feature selection
TopK(usize)
Select top-k features by importance
Correlation(f32)
Select features by correlation threshold
RFE
Recursive feature elimination
Trait Implementations§
Source§impl Clone for FeatureSelection
impl Clone for FeatureSelection
Source§fn clone(&self) -> FeatureSelection
fn clone(&self) -> FeatureSelection
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 FeatureSelection
impl RefUnwindSafe for FeatureSelection
impl Send for FeatureSelection
impl Sync for FeatureSelection
impl Unpin for FeatureSelection
impl UnwindSafe for FeatureSelection
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