pub enum MetaFeatureStrategy {
Show 14 variants
Raw,
Statistical,
Interactions,
ConfidenceBased,
DiversityBased,
Comprehensive,
Temporal,
Spatial,
Spectral,
InformationTheoretic,
NeuralEmbedding,
KernelBased,
BasisExpansion,
MetaLearning,
}Expand description
Advanced meta-feature engineering strategies
Variants§
Raw
Raw predictions only (default)
Statistical
Include statistical transformations (mean, std, skew, etc.)
Interactions
Include pairwise interactions between predictions
ConfidenceBased
Include confidence-based features
DiversityBased
Include diversity measures between base learners
Comprehensive
Comprehensive feature engineering (all of the above)
Temporal
Temporal features for time-series data
Spatial
Spatial features for geographic data
Spectral
Spectral features using FFT and wavelets
InformationTheoretic
Information-theoretic features (mutual information, entropy)
NeuralEmbedding
Neural embedding features
KernelBased
Kernel-based features
BasisExpansion
Advanced polynomial and basis expansions
MetaLearning
Meta-learning features
Trait Implementations§
Source§impl Clone for MetaFeatureStrategy
impl Clone for MetaFeatureStrategy
Source§fn clone(&self) -> MetaFeatureStrategy
fn clone(&self) -> MetaFeatureStrategy
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 moreSource§impl Debug for MetaFeatureStrategy
impl Debug for MetaFeatureStrategy
Source§impl Default for MetaFeatureStrategy
impl Default for MetaFeatureStrategy
Source§impl PartialEq for MetaFeatureStrategy
impl PartialEq for MetaFeatureStrategy
impl StructuralPartialEq for MetaFeatureStrategy
Auto Trait Implementations§
impl Freeze for MetaFeatureStrategy
impl RefUnwindSafe for MetaFeatureStrategy
impl Send for MetaFeatureStrategy
impl Sync for MetaFeatureStrategy
impl Unpin for MetaFeatureStrategy
impl UnwindSafe for MetaFeatureStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more