Skip to content
Snippets Groups Projects
Commit 60cd1d4c authored by Manuel Günther's avatar Manuel Günther
Browse files

Corrected implementation of open set recognition rate tests (which are failing)

Conflicts:
	bob/measure/test_error.py
parent 5b69b076
No related branches found
No related tags found
No related merge requests found
...@@ -333,23 +333,23 @@ def test_open_set_recognition_rate(): ...@@ -333,23 +333,23 @@ def test_open_set_recognition_rate():
# No error files # No error files
cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt")) cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt"))
normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt")) normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt"))
assert bob.measure.recognition_rate(cmc_scores), 1.0 assert abs(bob.measure.recognition_rate(cmc_scores) - 1.0) < 1e-8
assert bob.measure.recognition_rate(cmc_scores, threshold=0.5), 1.0 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=0.5) - 1.0) < 1e-8
t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value) t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value)
assert bob.measure.recognition_rate(cmc_scores, threshold=t), 1.0 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=t) - 1.0) < 1e-8
# One error # One error
cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt")) cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt"))
normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt")) normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt"))
assert bob.measure.recognition_rate(cmc_scores), 0.857142857143 assert abs(bob.measure.recognition_rate(cmc_scores) - 0.857142857143) < 1e-8
assert bob.measure.recognition_rate(cmc_scores, threshold=0.5), 0.857142857143 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=0.5) - 0.857142857143) < 1e-8
t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value) t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value)
assert bob.measure.recognition_rate(cmc_scores, threshold=t), 0.857142857143 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=t) - 0.857142857143) < 1e-8
# Two errors # Two errors
cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt")) cmc_scores = bob.measure.load.cmc_four_column(F("scores-cmc-4col-open-set.txt"))
normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt")) normal_scores = bob.measure.load.split_four_column(F("scores-cmc-4col-open-set.txt"))
assert bob.measure.recognition_rate(cmc_scores), 0.857142857143 assert abs(bob.measure.recognition_rate(cmc_scores) - 0.857142857143) < 1e-8
assert bob.measure.recognition_rate(cmc_scores, threshold=0.5), 0.857142857143 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=0.5) - 0.857142857143) < 1e-8
t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value) t = bob.measure.far_threshold(normal_scores[0], normal_scores[1],far_value)
assert bob.measure.recognition_rate(cmc_scores, threshold=t), 0.0 assert abs(bob.measure.recognition_rate(cmc_scores, threshold=t)) < 1e-8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment