Enum FeatureExtractionStrategy
Defines strategies for extracting features from higher-dimensional tensors.
public enum FeatureExtractionStrategy
Fields
Flatten = 2Uses the first element as a representative value.
Max = 1Uses the maximum value across all dimensions.
Mean = 0Uses the average value across all dimensions.
WeightedSum = 3Uses a weighted sum with configurable weights.
Remarks
For Beginners: This defines different ways to handle complex data.
When data has multiple values for each feature (like pixels in an image), we need a strategy to condense these into a single value for analysis. Different strategies work better for different types of data.