How do you measure the quality of a classifier (hint, not by "accuracy")?
1–6 of 6 posts
Re: How do you measure the quality of a classifier (hint, not by "accuracy")?
#2Re: How do you measure the quality of a classifier (hint, not by "accuracy")?
#3Our start on a statistics to English dictionary.
Re: How do you measure the quality of a classifier (hint, not by "accuracy")?
#4Re: How do you measure the quality of a classifier (hint, not by "accuracy")?
#5Fundamentally, you have a threshold. Things above are classified as "positive" and below as "negative". At different threshold values, you get some number of correct positives (was actually positive) and false positives (was actually negative). That's what the ROC curve shows. You want the curve to be as close to the top-left (in this case) corner as possible.
Re: How do you measure the quality of a classifier (hint, not by "accuracy")?
#6That's a lot of text to get to ROC curves...I'd rewrite down to essentials and get to the curves ASAP. Fundamentally, you have a threshold. Things above are classified as "positive" and below as "negative". At different threshold values, you get some number of correct positives (was actually positive) and false positives (was actually negative). That's what the ROC curve shows. You want the curve to be as close to th…
classifiers may have different parameters other than threshold
Area under ROC curves (AUC) are used to evaluate how good the model is considering many parameters can be chosen for it.
However, when you actually want to make a prediction, you still need to pick a value for the parameter (a point on the ROC curve). So F-measure is often more useful for evaluating the predictions. While AUC are more useful at evaluating classifiers.