time-series-machine-learning / tsml-repo

Discussion, problems and donations of data hosted at
http://www.timeseriesclassification.com
GNU General Public License v3.0
45 stars 6 forks source link

[ISSUE] SharePriceIncrease #89

Closed e-delaney closed 1 year ago

e-delaney commented 1 year ago

Which dataset/datasets have you an issue with?

SharePriceIncrease

Where did you download the data from (e.g. UCR or timeseriesclassification.com)?

I got it from timeseriesclassification.com.

Whats the issue?

The data does not load due to the fact that it is incorrectly formatted. On inspection of the data it appears that the metadata also describes other datasets in the archive (possible copy/paste error - see screenshot) which is the root cause of the issue.

When I remove these lines and save the data the issue is solved, and the data can be loaded using sktime functionality. I attach an image of the code issue using sktime loader and also the data on inspection.

Also thanks for the repo.

error_notebook error_ts_data

TonyBagnall commented 1 year ago

thanks for that, I'll upload the correct version

TonyBagnall commented 1 year ago

sorry this took so long! Fixed now, you can load with this

from aeon.datasets import load_classification
X, y, meta = load_classification("SharePriceIncrease")
print(meta)