Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

calculate FRR and FAR #40

Open
mahsa631 opened this issue Apr 24, 2019 · 1 comment
Open

calculate FRR and FAR #40

mahsa631 opened this issue Apr 24, 2019 · 1 comment

Comments

@mahsa631
Copy link

Hi
i use this for face recognition and i need calculate False rejection rate and false accept rate ,can you help me?

@ItsSantoshBehera
Copy link

FP: False positive, FN: False Negative, FN: True Negative and TP: True Positive
FAR is calculated as a fraction of negative scores exceeding your threshold.
FAR = imposter scores exceeding threshold/all imposter scores.
imposter scores exceeding threshold = FP
all imposter scores = FP+TN
FAR = FPR = FP/(FP+TN)
FRR is calculated as a fraction of positive scores falling below your threshold.
FRR = genuines scores exceeding threshold/all genuine scores
genuines scores exceeding threshold = FN
all genuine scores = TP+FN
FRR = FNR = FN/(TP+FN)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants