all_tags_for_estimator¶
- all_tags_for_estimator(estimator, names_only=False)[source]¶
Get a filtered dictionary of tags given an estimator or estimator type.
Retrieves tags directly from
aeon.utils.tags.ESTIMATOR_TAGS.- Parameters:
- estimator: str, estimator object, estimator class
Filter tags returned by the type of estimator. Valid input strings can be found in the tags dictionary in
aeon.utils.tags.ESTIMATOR_TAGSunder the class key or inaeon.utils.base.BASE_CLASS_REGISTER.- names_only: bool, default=False
If True, return only the names of the tags as a list.
- Returns:
- tags: dictionary of tags,
filtered version of
aeon.utils.tags.ESTIMATOR_TAGS.