Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UCR_UEA_datasets().list_univariate_datasets() and UCR_UEA_datasets().load_dataset() and Failed #516

Open
LbzSteven opened this issue May 10, 2024 · 4 comments
Labels

Comments

@LbzSteven
Copy link

Describe the bug
When I call the function UCR_UEA_datasets().list_univariate_datasets(), it failed at:
image
Also, many of the datasets I could not load correctly.

Environment (please complete the following information):

  • OS: [linux]
  • tslearn version [e.g. 0.6.3]
@LbzSteven LbzSteven added the bug label May 10, 2024
@LbzSteven
Copy link
Author

The tslearn version is 0.6.3

@LbzSteven
Copy link
Author

I think the issue is www.timeseriesclassification.com website is down right now. Just wonder if we have other resorts.

@nkchangshu
Copy link

URLError: <urlopen error [Errno -2] Name or service not known> I encountered the same issue, and the URL www.timeseriesclassification.com is not accessible. Please help update the source or upload the dataset to GitHub as soon as possible. Thank you very much.

@YannCabanes
Copy link
Contributor

Hello @LbzSteven and @nkchangshu,

Thanks for opening an issue.
It seems that the URL https://www.timeseriesclassification.com/index.php is not done anymore, but it is written on the home page of the website that: "This website has been down for a while."

Using Google Colab, after installing tslearn running !pip install tslearn, I can run:

from tslearn.datasets import UCR_UEA_datasets

X_train, y_train, X_test, y_test = UCR_UEA_datasets().load_dataset("TwoPatterns")

print(X_train.shape)  # (1000, 128, 1)
print(y_train.shape)  # (1000,)

ucr_uea_list_univariate_datasets = UCR_UEA_datasets().list_univariate_datasets()
print(ucr_uea_list_univariate_datasets)  # []

ucr_uea_list_multivariate_datasets = UCR_UEA_datasets().list_multivariate_datasets()
print(ucr_uea_list_univariate_datasets)  # []

It seems that the univariate and multivariate dataset lists are empty, but it is still possible to import the datasets using their names.

The following web pages can be useful to look for the dataset names and features:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants