Skip to content
Snippets Groups Projects

WIP: initial implementation of harmonised plots

Closed Amir MOHAMMADI requested to merge vulnerability into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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)
  • André Anjos added 1 commit

    added 1 commit

    • ae7974fd - Log HTER and IAPMR on info stream

    Compare with previous version

  • Feel free to undo and redo properly. As it is now, it works.

  • Please register or sign in to reply
    Loading