evaluate_regressors¶
- tsml_eval.evaluation.evaluate_regressors(regressor_results, save_path, error_on_missing=True, eval_name=None, estimator_names=None)[source]¶
Evaluate multiple regressors on multiple datasets.
Writes multiple csv files and figures to save_path, one for each statistic evaluated. Provides a summary csv file with the average statistic and average rank for each regressor.
- Parameters:
- regressor_resultslist of RegressorResults
The results to evaluate.
- save_pathstr
The path to save the evaluation results to.
- error_on_missingbool, default=True
Whether to raise an error if results are missing.
- eval_namestr, default=None
The name of the evaluation, used in save_path.
- estimator_nameslist of str, default=None
The names of the estimator for each regressor result. If None, uses the estimator_name attribute of each regressor result.