You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
importtorchfromtorch_geometric.dataimportDataimporturllib.errorfromtorch_geometric.datasetsimportShapeNettry:
dataset=ShapeNet(
root='tmp/ShapeNet',
categories= ["Airplane"]
)
excepturllib.error.URLErrorase:
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
.
The text was updated successfully, but these errors were encountered:
🐛 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.
I am getting the following error:
Has anyone already experienced this error? How can I solve it? I need to process the ShapeNet dataset using PyTorch Geometric.
Versions
.
The text was updated successfully, but these errors were encountered: