Feature
- class pmrf.evaluators.Feature(alias: str | Sequence[str] | list[AbstractEvaluator])
Bases:
AbstractEvaluatorExtracts an RF feature using a string-based alias.
Parses regex patterns to automatically route strings like ‘s11_db’ or ‘amplifier.y21_deg’ to the appropriate Method and Indexing chain.
Initialize the feature evalutor.
- Parameters:
alias (str | Sequence[str] | list[Evaluator]) – A string alias, list of string aliases, or list of other evaluators for the feature.
- __call__(model: Model, frequency: Frequency, **kwargs) Array
Evaluate the model response over the specified frequency range.
- expression: AbstractExpression
The underlying expression created that does the final feature extraction.