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
Currently the sklearn metrics section discusses a whole bunch of metrics but doesn't seem to go into detail on why you would use one particular metric. One point I usually try to make about metrics is that the "correct" metric depends critically on your problem, e.g.,
if you're doing spam detection, maybe a FN isn't so bad, so you can use a metric that focuses on maximizing FP and TP
but if you're doing cancer detection, a FN is disastrous, so you would use a metric that focuses in minimizing FN (even at the expense of others)
etc.
IMO it's a good idea to give students an intuition behind why we choose certain metrics in ML.
The text was updated successfully, but these errors were encountered:
if you're doing spam detection, maybe a FN isn't so bad, so you can use a metric that focuses on maximizing FP and TP
but if you're doing cancer detection, a FN is disastrous, so you would use a metric that focuses in minimizing FN (even at the expense of others)
etc.
Great point! I think we explained this verbally in the tutorial (or maybe it was a different talk?), but it would be great to add this to the notebooks!!
Currently the sklearn metrics section discusses a whole bunch of metrics but doesn't seem to go into detail on why you would use one particular metric. One point I usually try to make about metrics is that the "correct" metric depends critically on your problem, e.g.,
IMO it's a good idea to give students an intuition behind why we choose certain metrics in ML.
The text was updated successfully, but these errors were encountered: