WIP: initial implementation of harmonised plots
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
mentioned in issue bob.measure#38 (closed)
@tgentilhomme if you want to run the code in this branch, it works with this bob.measure branch: https://gitlab.idiap.ch/bob/bob.measure/commits/plots
added 1 commit
- d01aada2 - remove the dependency on a fork of bob.measure
added 1 commit
- 165fcc9d - Fix score sorting - they are not before threshold is calculated
41 ------- 42 float 43 The calculated threshold. 44 45 Raises 46 ------ 47 ValueError 48 If method is unknown. 49 """ 50 method = method.lower() 51 if method == 'bpcer20': 52 threshold = far_threshold(neg, pos, 0.05, False) 53 elif method == 'eer': 54 threshold = eer_threshold(neg, pos, False) 55 elif method == 'min-hter': 56 threshold = min_hter_threshold(neg, pos, False) @andre.anjos this function expects the scores to be sorted! it would have been better to sort the score files as soon as you load them instead of changing the code here.
suppressed by !41 (merged)
Please register or sign in to reply