1. a positive example classified as positive. This is a true positive.
  2. a positive example misclassified as negative. This is a false negative.
  3. a negative example classified as negative. This is a true negative.
  4. a negative example misclassified as positive. This is a false positive.

 

classifier

 

 classifier

 

Here are some metrics you’ll likely come across:

    • true positive rate = TP/(TP+FN) = 1 − false negative rate
    • false positive rate = FP/(FP+TN) = 1 − true negative rate
    • sensitivity = true positive rate
    • specificity = true negative rate
    • positive predictive value = TP/(TP+FP)
    • recall = TP / (TP+FN) = true positive rate
    • precision = TP / (TP+FP)
    • F-score is the harmonic mean of precision and recall: 
      classifier
    • G-score is the geometric mean of precision and recall: 
      classifier

 

 

 

from: http://svds.com/post/basics-classifier-evaluation-part-1

 

相关文章:

  • 2021-10-16
  • 2021-08-28
  • 2022-12-23
  • 2021-09-19
  • 2021-07-15
  • 2022-12-23
  • 2021-09-17
  • 2022-01-13
猜你喜欢
  • 2021-09-18
  • 2021-04-18
  • 2022-02-11
  • 2021-07-02
  • 2022-01-12
  • 2021-08-20
  • 2021-11-18
相关资源
相似解决方案