question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

A little question about downloading datasets through TUDataset()

See original GitHub issue

❓ Questions & Help

hello @rusty1s :

I have downloaded some datasets via TUDataset(root=myroot, name=myname) about 2 weeks ago. But when I downloaded a dataset(for example, Enzymes dataset) through TUDataset(root=myroot, name=myname) to my new computers today, it cannot work. here is my code:

from torch_geometric.datasets import TUDataset
enz = TUDatasets(root='./ENZYMES', name='ENZYMES')

but it raises an error: Certification Error Certification Error: hostname 'ls11-www.cs.uni-dortmund.de' doesn't match 'ls11-www.cs.tu-dortmund.de' (P.S. When I am in Microsoft Windows 10, The way of installing it on Win 10 is just by chance(pip install, Visual Studio 2019 + Python 3.7)) or URLError: <urlopen error [SSL: CERTIFICATION_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'ls11-www.cs.uni-dortmund.de'. (_ssl_c:1056)> (When I am in Ubuntu 16.04)

I don’t know what is the reason for that.

Yours, @wmf1997

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:1
  • Comments:8 (5 by maintainers)

github_iconTop GitHub Comments

2reactions
rusty1scommented, Jun 10, 2019
python setup.py install

or

python setup.py develop

Inside your forked or cloned directory. You may need to install the latest version of torch-cluster via pip.

1reaction
materddcommented, Jun 29, 2019

Quick fix for people having this issue. Change path before downloading dataset: UDataset.path = 'https://ls11-www.cs.tu-dortmund.de/people/morris/graphkerneldatasets' Hope it works!

Thanks for your information, but a little bit mistake. Below is correct one. Anyway, thanks.

TUDataset.url = ‘https://ls11-www.cs.tu-dortmund.de/people/morris/graphkerneldatasets

Read more comments on GitHub >

github_iconTop Results From Across the Web

A little question about downloading datasets through ... - GitHub
I have downloaded some datasets via TUDataset(root=myroot, name=myname) about 2 weeks ago. But when I downloaded a dataset(for example, Enzymes ...
Read more >
TUDataset: A collection of benchmark datasets for learning ...
Abstract. Recently, there has been an increasing interest in. (supervised) learning with graph data, especially using graph neural networks. However, the.
Read more >
natural_questions · Datasets at Hugging Face
The NQ corpus contains questions from real users, and it requires QA systems to ... Size of downloaded dataset files: 42981.34 MB; Size...
Read more >
Creating Your Own Datasets - PyTorch Geometric
Implementing datasets by yourself is straightforward and you may want to take a look at ... InMemoryDataset.download() : Downloads raw data into raw_dir...
Read more >
Datasets - Spektral
Datasets are automatically downloaded and saved locally on first usage. You can configure the path where the data are stored by creating a ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found