Various improvements
1 unresolved thread
1 unresolved thread
Fix #41 (closed) and #42 (closed)
Merge request reports
Activity
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: mentioned in commit 25a71f54
Please register or sign in to reply