load_estimator_results¶
- tsml_eval.utils.results_loading.load_estimator_results(file_path, calculate_stats=True, verify_values=True)[source]¶
Load and return estimator results from a specified file.
This function reads a file containing estimator results and reconstructs the EstimatorResults object. It optionally calculates performance statistics and verifies values based on the loaded data.
- Parameters:
- file_pathstr
The path to the file from which estimator results should be loaded. The file should be a tsml formatted estimator results file.
- calculate_statsbool, default=True
Whether to calculate performance statistics from the loaded results.
- verify_valuesbool, default=True
If the function should perform verification of the loaded values.
- Returns:
- erEstimatorResults
A EstimatorResults object containing the results loaded from the file.