-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Add support for customizable interaction graph in SchNet
model
#5919
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hatemhelal
commented
Nov 7, 2022
Codecov Report
@@ Coverage Diff @@
## master #5919 +/- ##
==========================================
+ Coverage 84.41% 84.44% +0.02%
==========================================
Files 351 349 -2
Lines 19524 19511 -13
==========================================
- Hits 16482 16476 -6
+ Misses 3042 3035 -7
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
rusty1s
reviewed
Nov 7, 2022
hatemhelal
force-pushed
the
hydronet-schnet
branch
from
November 9, 2022 09:59
47c2eac
to
6a51807
Compare
rusty1s
approved these changes
Nov 9, 2022
hatemhelal
commented
Nov 9, 2022
…ric-fork into hydronet-schnet
JakubPietrakIntel
pushed a commit
to JakubPietrakIntel/pytorch_geometric
that referenced
this pull request
Nov 25, 2022
…-team#5919) This introduces a new `interaction_graph` arg that defaults to `radius_graph` to allow callers to customize how interatomic edges are defined in the `SchNet` architecture. This removes the support that was added for pre-computed edges in pyg-team#5401 so also updated the example to reflect this change. Co-authored-by: rusty1s <matthias.fey@tu-dortmund.de>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This introduces a new
interaction_graph
arg that defaults toradius_graph
to allow callers to customize how interatomic edges are defined in theSchNet
architecture.This removes the support that was added for pre-computed edges in #5401 so also updated the example to reflect this change.