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.
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 binning capability to AUPRO #1145
Add binning capability to AUPRO #1145
Changes from 22 commits
41ea64a
739ae0e
4d85d32
b2c547c
8fa16bc
e6fe63e
6781574
9ee9c55
ec8043f
18a4abb
a382be6
63a2aca
a0d6fbd
553380a
4d4c6c3
f4fd62a
650e4e8
b82bedf
c08761d
893579d
1a87971
6feeb0b
fb68d7b
16a8732
0a0e31d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Can you use the
roc
function here instead? The reason is thatbinary_roc
maps the predictions to the [0, 1] range using sigmoid, which is exactly what we're trying to avoid. We asked the TorchMetrics developers to make the sigmoid mapping optional, but until then it would be better if we use the legacyroc
function, which does not remap the predictions.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.
@djdameln in fact
roc()
will just callbinary_roc()
(the former is just a wrapper for the argumenttask: str
https://github.com/Lightning-AI/torchmetrics/blob/2a055f5594a624685e26ba64bf20ab0d12225c86/src/torchmetrics/functional/classification/roc.py#L595
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.
indeed, the roc call with thresholds :
This roc function will be soon deprecated so I would suggest to keep it like this.
Also @djdameln we added a comment just above to mention this issue.