benedekrozemberczki / pytorch_geometric_temporal

PyTorch Geometric Temporal: Spatiotemporal Signal Processing with Neural Machine Learning Models (CIKM 2021)
MIT License
2.58k stars 367 forks source link

Error downloading some datasets #236

Open aurorarossi opened 1 year ago

aurorarossi commented 1 year ago

Hello! when downloading the datasets contained here, there is an error caused by the certificate of the website.

urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1002)>
jeongwhanchoi commented 1 year ago

@aurorarossi , I also faced the same issue when downloading a dataset through a URL. You can solve this issue by using the SSL authentication module. You may solve it by adding the module and code below.

import ssl
ssl._create_default_https_context = ssl._create_unverified_context
boykovdn commented 1 year ago

Looks like the SSL certificate for https://graphmining.ai/temporal_datasets/ which hosts some of the datasets has expired about a week ago.

aurorarossi commented 1 year ago

I was wondering if it was maintained by the same people of this package

boykovdn commented 1 year ago

Judging by the homepage I'd say so. Let's see what they say :)

Ripper346 commented 10 months ago

After two months, the certificates are still expired

massisenergy commented 7 months ago

This happens when using torch_geometric_temporal: loader = METRLADatasetLoader() Python 3.11.2, PyTorch 2.0.1