-
I'm trying to run import os.path as osp
import torch
from torch_geometric.datasets import Reddit
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
path = osp.join(osp.dirname(osp.realpath(__file__)), '..', 'data', 'Reddit')
dataset = Reddit(path) I can see Even in the jupyter notebook, Is it because the dataset is too big for my computer? (I don't think so..) |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Feb 23, 2023
Replies: 1 comment 2 replies
-
Do you see a |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
hkim716
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you see a
Downloading
log file? Otherwise, I am not totally sure. How much RAM do you have on your machine?