pub trait FeatureExtractor {
// Required methods
fn extract_features(
&self,
algorithm: &AlgorithmInfo,
context: &DiscoveryCriteria,
) -> DeviceResult<Vec<f64>>;
fn get_feature_names(&self) -> Vec<String>;
}Expand description
Feature extractor trait