Open
Description
Describe the feature or idea you want to propose
After checking the results for all the estimators, I noticed that MR
is being used as an alias for both MultiROCKETClassifier
and MultiROCKETRegressor
, However, I found that there are no results for MultiROCKETRegressor
.
from aeon.benchmarking.results_loaders import get_estimator_results
cls = "MR"
results = get_estimator_results(estimators=cls, datasets=None, task='regression', measure='mae')
print(results)
Output:
Describe your proposed solution
Removing MultiROCKETRegressor
from the alias mapping until the results are available.
Describe alternatives you've considered, if relevant
No response
Additional context
No response