Problems when tried to use NELL dataset #2277
Unanswered
jianchaoji
asked this question in
Q&A
Replies: 1 comment 8 replies
-
The Indeed, x = data.x.to_torch_sparse_coo_tensor().to(device)
...
def forward(self, x, adjs):
x = self.lin(x) # Reduce to dense `hidden_channels` representation.
... |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Thank you for your updata of NELL dataset! I met some problems when I tried to use this dataset on graph_sage_unsup.py:
The first problem is, the dataset is too large. Since we should input a tensor dataset instead of sparseTensor dataset for the model,I used the x.to_dense() function to transform it. But when I tried to do so, it exceeded the memory of the GPU.Can I have any potential solution ? Thank you!
I met the sencond problem when I tried to use data.num_nodes to assign other variable. I fixed it by changing the data.num_nodes to 65755 which is the number of nodes of NELL dataset. Is it a correct using or I made some mistakes here?
Beta Was this translation helpful? Give feedback.
All reactions