Skip to content
Snippets Groups Projects

Various improvements

Merged Theophile GENTILHOMME requested to merge various 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
254 256 '''
255 257 # first time erase if existing file
256 258 ctx.meta['open_mode'] = 'w'
257 click.echo("Computing metrics with EER...")
258 ctx.meta['criterion'] = 'eer' # no criterion passed to evaluate
259 ctx.invoke(metrics, scores=scores, evaluation=evaluation)
260 # second time, appends the content
261 ctx.meta['open_mode'] = 'a'
262 click.echo("Computing metrics with min-HTER...")
263 ctx.meta['criterion'] = 'min-hter' # no criterion passed in evaluate
264 ctx.invoke(metrics, scores=scores, evaluation=evaluation)
259 criterion = ctx.meta.get('criterion')
260 if criterion is not None:
  • Amir MOHAMMADI mentioned in commit 25a71f54

    mentioned in commit 25a71f54

  • Please register or sign in to reply
    Loading