Closed tetsu9923 closed 3 years ago
This usually happens if there is already a dataset given at path data
. Either deleting the data/processed
folder or running
from torch_geometric.datasets.last_fm import LastFM
dataset = LastFM(root="data/LastFM")
print(dataset[0])
should fix this error.
Thank you for your quick reply.
deleting the data/processed folder
fixed this error.
Thank you so much!
Hello, thank you for your awesome graph learning library! I am trying to implement LightGCN and use LastFM dataset as its input. However, I cannot check the contents of this dataset due to the following error.
How can I deal with this error? I installed PyG from master via
pip install git+https://github.com/rusty1s/pytorch_geometric.git
. Thank you.