Open
Description
🐛 Describe the bug
I am trying to download the ShapeNet
dataset for a project in which I need to use PyTorch Geometric. However, I am dealing with some problems when downloading the dataset. It seems that there might be an error in the url from which the dataset is downloaded or something like that, as it is refusing the connection.
To reproduce the error you can execute the following.
import torch
from torch_geometric.data import Data
import urllib.error
from torch_geometric.datasets import ShapeNet
try:
dataset = ShapeNet(
root='tmp/ShapeNet',
categories = ["Airplane"]
)
except urllib.error.URLError as e:
print(f"Error al intentar descargar el dataset: {e}")
I am getting the following error:
Downloading https://shapenet.cs.stanford.edu/media/shapenetcore_partanno_segmentation_benchmark_v0_normal.zip
Error al intentar descargar el dataset: <urlopen error [Errno 61] Connection refused>
Has anyone already experienced this error? How can I solve it? I need to process the ShapeNet dataset using PyTorch Geometric.
Versions
.