You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AUROC metric for a binary task has an optional thresholds argument. It documents that if it is set to an int, then that number of bins is set, otherwise if its a List of floats, then the AUROC at those thresholds is calculated. This is so that a faster calculation can occur. However, if the thresholds argument is set to either of those things, then an error occurs:
🐛 Bug
The AUROC metric for a binary task has an optional
thresholds
argument. It documents that if it is set to an int, then that number of bins is set, otherwise if its a List of floats, then the AUROC at those thresholds is calculated. This is so that a faster calculation can occur. However, if the thresholds argument is set to either of those things, then an error occurs:To Reproduce
Steps to reproduce the behavior...
of note, removing
.cuda()
also results in an error:Expected behavior
The AUROC should be calculated along the fast O(n_thresholds) rather than the O(n_samples)
Environment
Installed from Conda with the following other relevant libraries:
The text was updated successfully, but these errors were encountered: