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] no ts files for DucksAndGeese #94

Closed TonyBagnall closed 12 months ago

TonyBagnall commented 12 months ago

Which dataset/datasets have you an issue with? DucksAndGeese

Where did you download the data from (e.g. UCR or timeseriesclassification.com)? timeseriesclassification.com Whats the issue? no ts files

TonyBagnall commented 12 months ago

fixed, this works

from aeon.datasets import load_classification
problem = "DucksAndGeese"
X, y, meta = load_classification(problem, split="train")
print(meta)
print(" Train shape of X = ",len(X))
print(" Shape of X[0] = ",X[0].shape)