How the false positive value affects accuracy?
T
P
<mtext> </mtext>
(
t
r
Azzalictpdv
Answered question
2022-05-07
How the false positive value affects accuracy?
In this case the accuracy is . Can I say that I have low accuracy because the value false positive is high? There is any relathion between false positive and the parameters true positive or true negative?
Answer & Explanation
Calvin Oneill
Beginner2022-05-08Added 20 answers
You might be interested in the false positive rate. This is
Your false positive rate is actually very low. You are mostly classifying negatives correctly as negative. But your false negative rate is higher at . You are not detecting enough images that are actually true images. For a more detailed discussion, read on. The accuracy is an overall summary of the success of your tests. It is sometimes helpful to look at a breakdown of it into sensitivity and specificity. Sensitivity is the true positive rate, i.e. the chance your program predicts a positive given that it's supposed to be positive. Specificity is the true negative rate, i.e. the proportion of negatives correctly predicted as negative.
Based on these results, it seems that your test is not as good as identifying positives as it is at correctly identifying negatives. One possible problem could be that there is a difference in the prevalence of images from the truth and produced by your computer algorithm. Here a confusion matrix of the data you have collected:
If you compute the accuracies separately for the true images and the algorithm images, you find that the accuracy for the true images is and the accuracy for your algorithmic images is . (Notice these are the definitions of sensitivity and specificity, the same above.) The reason that your overall accuracy is high is because you have a much higher prevalence of algorithm-generated images; your algorithm tends to guess conservatively, and the fact that there are more algorithm generated images pushes your overall accuracy up. A useful one-number summary combining sensitivity and specificity is the score, defined as
When , a common choice, this is the harmonic average of sensitivity and specificity:
The score of your test is . The closer to , the better. You might try to optimize your algorithm based on the score. There is some difference between your score and accuracy: