-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement ViSNet #41
Implement ViSNet #41
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You also need to add a CI runner that uses nightly and one that doesn't, I or Ben can show you how to do that.
…to add-conversion-utils
Co-authored-by: kaminow <51923685+kaminow@users.noreply.github.com>
@fyng is this ready for another review? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one more quick change but then I think we're good to go!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the test is actually not at all doing what we think it should be (see comments). should've caught this earlier, sorry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
two more super quick things but the new test looks good!
mtenn/tests/test_model_config.py
Outdated
} | ||
|
||
pyg_model = PyVisNet(**kwargs) | ||
visnet_model = ViSNet(pyg_model) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
visnet_model = ViSNet(pyg_model) | |
visnet_model = ViSNet(model=pyg_model) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch @kaminow, thanks! I almost snuck in a bug 🤧
Co-authored-by: kaminow <51923685+kaminow@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code looks good! just a couple small docstring changes and then we should be good to go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, I think we're finally there!
Description
Implement VisNet from pytorch geometric
Fixes #40
TODO
Status