We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @yyou1996,
Thanks for your efforts in this project.
The bug has been fixed, which is due to the pyG's inconsistent with the specified version (1.0.3). The author has mentioned it here.
The text was updated successfully, but these errors were encountered:
MessagePassing.propagate
torch.LongTensor
[2, num_messages]
torch_sparse.SparseTensor
edge_index
Two things for this bug in transferLearning_MoleculeNet_PPI\bio may help (maybe similar in chem):
cat_dim
__cat_dim__
loader.py
return self.propagate(self.aggr, edge_index, x=x, edge_attr=edge_embeddings)
model.py
return self.propagate(edge_index[0], x=x, edge_attr=edge_embeddings)
return self.propagate(edge_index[0], x=x, edge_attr=edge_embeddings, norm = norm)
Sorry, something went wrong.
No branches or pull requests
Hi @yyou1996,
Thanks for your efforts in this project.
The bug has been fixed, which is due to the pyG's inconsistent with the specified version (1.0.3). The author has mentioned it here.
The text was updated successfully, but these errors were encountered: