pub struct FeatureExtraction {
pub time_series_features: TimeSeriesFeatures,
pub phase_space_features: PhaseSpaceFeatures,
pub frequency_features: FrequencyFeatures,
pub topological_features: TopologicalFeatures,
pub statistical_features: StatisticalFeatures,
pub normalization: FeatureNormalization,
}Expand description
Feature extraction configuration
Fields§
§time_series_features: TimeSeriesFeaturesTime series features
phase_space_features: PhaseSpaceFeaturesPhase space features
frequency_features: FrequencyFeaturesFrequency domain features
topological_features: TopologicalFeaturesTopological features
statistical_features: StatisticalFeaturesStatistical features
normalization: FeatureNormalizationFeature normalization method
Trait Implementations§
Source§impl Clone for FeatureExtraction
impl Clone for FeatureExtraction
Source§fn clone(&self) -> FeatureExtraction
fn clone(&self) -> FeatureExtraction
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 FeatureExtraction
impl Debug for FeatureExtraction
Auto Trait Implementations§
impl Freeze for FeatureExtraction
impl RefUnwindSafe for FeatureExtraction
impl Send for FeatureExtraction
impl Sync for FeatureExtraction
impl Unpin for FeatureExtraction
impl UnwindSafe for FeatureExtraction
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