load_classifier_results

tsml_eval.evaluation.storage.load_classifier_results(file_path, calculate_stats=True, verify_values=True)[source]

Load and return classifier results from a specified file.

This function reads a file containing classifier results and reconstructs the ClassifierResults object. It optionally calculates performance statistics and verifies values based on the loaded data.

Parameters:
file_pathstr

The path to the file from which classifier results should be loaded. The file should be a tsml formatted classifier 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:
crClassifierResults

A ClassifierResults object containing the results loaded from the file.