y_pred when metric is roc_auc #276
-
NannyML is interesting tool. My use case is scoring not strictly binary prediction. I've a question regarding relevant example: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @mglowacki100 , good question. You are completely correct, We are thinking about splitting up the metrics into separate runnable pieces, which would allow to only ask for parameters we actually need. Hope that helps, let me know if you need anything else! |
Beta Was this translation helpful? Give feedback.
Hey @mglowacki100 , good question.
You are completely correct,
roc_auc
only requires they_pred_proba
values. Asking fory_pred
is a consequence of us allowing multiple metrics to be calculated at once. Hence we'll need all the information those other metrics might require, such asy_pred
. The way we've implemented it at this time is a bit lacking since we do expect ay_pred
column to be present even when you're only estimatingroc_auc
. It will not be used, however, so you can pass a random values column there when only estimatingroc_auc
.We are thinking about splitting up the metrics into separate runnable pieces, which would allow to only ask for parameters we actually need.
Hope that …