False positive rate (FPR): Difference between revisions

m
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{see also|Machine learning terms}}
==Introduction==
==Introduction==
False positive rate (FPR) is the proportion of actual negative [[example]]s for which the model mistakenly predicted the positive [[class]]. [[Machine learning models]] use [[classification]] [[models]] to predict whether an [[input]] belongs to a certain [[class]] or not. Unfortunately, these predictions aren't always correct and sometimes the model may indicate that an input belongs in one class when it actually doesn't - this is known as a false positive and the rate at which false positives occur is known as the false positive rate (FPR).
False positive rate (FPR) is the proportion of actual negative [[example]]s for which the model mistakenly predicted the positive [[class]]. [[Machine learning models]] use [[classification]] [[models]] to predict whether an [[input]] belongs to a certain [[class]] or not. Unfortunately, these predictions aren't always correct and sometimes the model may indicate that an input belongs in one class when it actually doesn't - this is known as a false positive and the rate at which false positives occur is known as the false positive rate (FPR).


==What is false positive rate (FPR)?==
==What is false positive rate (FPR)?==
False Positive Rate (FPR) is a performance [[metric]] used to gauge how often [[classification]] models incorrectly classify negative instances as positives. Put differently, FPR measures the proportion of negative instances incorrectly classified as positive by the model. Calculated by dividing total false positives by total true negatives and false positives.
False Positive Rate (FPR) is a performance [[metric]] used to gauge how often [[classification model]]s incorrectly classify negative instances as positives. Put differently, FPR measures the proportion of negative instances incorrectly classified as positive by the model. Calculated by dividing total false positives by total true negatives and false positives.


false positive rate = [[false positive]]s / (false positives + [[true negative]]s)
false positive rate = [[false positive]]s / (false positives + [[true negative]]s)
Line 26: Line 27:
==Explain Like I'm 5 (ELI5)==
==Explain Like I'm 5 (ELI5)==
False positive rate is like when your teacher thinks you did your homework, but you actually didn't. The false positive rate is the number of times your teacher thinks you did your homework when you didn't, divided by the total number of times your teacher thinks you did your homework. A low false positive rate means your teacher doesn't think you did your homework very often when you didn't, which is good. But sometimes it's okay for your teacher to think you did your homework when you didn't, depending on why you didn't do it.
False positive rate is like when your teacher thinks you did your homework, but you actually didn't. The false positive rate is the number of times your teacher thinks you did your homework when you didn't, divided by the total number of times your teacher thinks you did your homework. A low false positive rate means your teacher doesn't think you did your homework very often when you didn't, which is good. But sometimes it's okay for your teacher to think you did your homework when you didn't, depending on why you didn't do it.
[[Category:Terms]] [[Category:Machine learning terms]] [[Category:not updated]]