AUROC with reorder? #219
-
I'm currently using the AUROC metric for my binary classifier. However, as I am working with multi-task learning, I sometimes have to keep iterating over epochs although the binary classifier part of the system already is overfitted. When I try to do this, the training sometimes crashes as a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @FluidSense, |
Beta Was this translation helpful? Give feedback.
Hi @FluidSense,
The reason that a
reorder
argument is not exposed in the AUROC metric is becauseauc
is not called directly on the inputs (therefore they do not need to be sorted) but on calculatedfpr
andtpr
scores that should already be sorted. Could you provide a reproducible example?