SimMTM
SimMTM copied to clipboard
sktime version?
ImportError: cannot import name 'load_data' from 'sktime.utils'.how did you slove this problem?
I meet this problem too.
Change from sktime.utils import load_data to from sktime.datasets import load_from_tsfile_to_dataframe.
df, labels = load_from_tsfile_to_dataframe(filepath, return_separate_X_and_y=True, replace_missing_vals_with='NaN').