We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi i use this for face recognition and i need calculate False rejection rate and false accept rate ,can you help me?
The text was updated successfully, but these errors were encountered:
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)
Sorry, something went wrong.
No branches or pull requests
Hi
i use this for face recognition and i need calculate False rejection rate and false accept rate ,can you help me?
The text was updated successfully, but these errors were encountered: