pub struct MrmrConfig { /* private fields */ }Expand description
Configuration for the MRMR (Max-Relevance, Min-Redundancy) feature selector.
Implementations§
Source§impl MrmrConfig
impl MrmrConfig
Sourcepub fn num_features(&self) -> usize
pub fn num_features(&self) -> usize
The number of features to select.
Sourcepub fn target_col(&self) -> usize
pub fn target_col(&self) -> usize
The index of the target column, which is always included in the selection.
Trait Implementations§
Source§impl Clone for MrmrConfig
impl Clone for MrmrConfig
Source§fn clone(&self) -> MrmrConfig
fn clone(&self) -> MrmrConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MrmrConfig
impl Debug for MrmrConfig
Auto Trait Implementations§
impl Freeze for MrmrConfig
impl RefUnwindSafe for MrmrConfig
impl Send for MrmrConfig
impl Sync for MrmrConfig
impl Unpin for MrmrConfig
impl UnsafeUnpin for MrmrConfig
impl UnwindSafe for MrmrConfig
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