-
Notifications
You must be signed in to change notification settings - Fork 96
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
Clustering utilities #770
Merged
Aske-Rosted
merged 19 commits into
graphnet-team:main
from
Aske-Rosted:clustering_utilities
Dec 11, 2024
Merged
Clustering utilities #770
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2233cdd
cluster and pad utility
Aske-Rosted 19122e7
Location default None
Aske-Rosted 1e9e45a
more default none
Aske-Rosted 81416b8
Update PercentileCluster
Aske-Rosted 64b728c
cluster and pad utility
Aske-Rosted b8654fa
Location default None
Aske-Rosted d964efc
more default none
Aske-Rosted e6357b5
Update PercentileCluster
Aske-Rosted f4c4d16
Merge branch 'clustering_utilities' of github.com:Aske-Rosted/graphne…
Aske-Rosted 7fcc7fe
align with prehooks
Aske-Rosted 7f7000f
fix add_counts optional
Aske-Rosted 505a82e
update docstrings
Aske-Rosted 4a4083b
move/use internal functions + output x
Aske-Rosted 87f41c6
remove warning
Aske-Rosted 51da4b0
re-add old function
Aske-Rosted 3e21f7f
remove returns
Aske-Rosted eaa12e5
docstrings udpdates
Aske-Rosted 165fedb
automatic_name_generation
Aske-Rosted 75b3260
small_fix
Aske-Rosted 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
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.
The location parameter could potentially overwrite information, right? E.g. if column 6 already contains some aggregate statistics and the user specifies
location=6
. Maybe a warning/error here would be useful?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.
The location feature is added using insert which does not remove information but instead expands the vector. The only possible confusion that could come from this is that the final ordering of the features might not be as the user expects as since every feature after the insert will have their location incremented by 1.