-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
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
ACNN not working with dgl batch #117
Comments
Also do pos1 and pos2 have to be the positions of the ligand after docking i.e. the docked pose? |
What's the version for
If you want to use the model for docking, then right. |
The |
Why did you do the following? batch = dgl.graph([g1, g2]) If you want to batch two graphs, you need to do batch = dgl.batch([g1, g2]) |
Apologies. I gave the incorrect snippet.
When I use
I tracked it down to
Something happens to the edges in the graph here which causes the KeyError. Before this line the Key distance exists in the graph.
|
Can you share |
4WTG is just something I picked randomly |
I think the code snippet does not involve passing the input to the model. Can you also include those lines of code? |
The last line of the code snippet
|
I've figured out what's going on.
We may want to support edge types with no edges for feature concatenation in |
To recreate
This throws the following error
The text was updated successfully, but these errors were encountered: