-
Notifications
You must be signed in to change notification settings - Fork 97
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
PercentileCluster #616
Merged
RasmusOrsoe
merged 22 commits into
graphnet-team:main
from
RasmusOrsoe:percentile_doms_v2
Oct 19, 2023
Merged
PercentileCluster #616
Changes from 11 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
84f73f5
copy-paste of code
RasmusOrsoe 776e300
copy-paste
RasmusOrsoe f8577a4
add comment
RasmusOrsoe 27d0b3a
introduce set function, refactor
RasmusOrsoe d41af7d
copy-paste utils
RasmusOrsoe d7e9b82
add import statement
RasmusOrsoe a601033
fix output of construct_nodes
RasmusOrsoe 4c7e121
type hint
RasmusOrsoe 57571f2
nb_output property
RasmusOrsoe a1f6b7e
add unit test of node definition
RasmusOrsoe 1e1ffc8
code-climate
RasmusOrsoe 2f0f21a
rename variables
RasmusOrsoe d07115c
rename
RasmusOrsoe b67ba08
rename
RasmusOrsoe 1049765
update pretrained configs
RasmusOrsoe 1d19026
rename arg in KNNGraph
RasmusOrsoe 170c2b3
arg update in dataset
RasmusOrsoe fd27997
update args
RasmusOrsoe 7c921c3
update configs
RasmusOrsoe aaa8dc6
update args in i3modules
RasmusOrsoe 928c221
update args dataset config test
RasmusOrsoe d368159
Merge pull request #19 from RasmusOrsoe/main
RasmusOrsoe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
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.
It makes me a little uneasy that in the forward call the function variable
node_feature_names
might be different from the class instantiatedself._node_feature_names
after the_node_definition
call on line 147. While I do believe this is as intended it might be quite confusing upon revisiting the code later, maybe consider a renaming.