Skip to content
Snippets Groups Projects
Commit ba178bef authored by Theophile GENTILHOMME's avatar Theophile GENTILHOMME
Browse files

Change criter in evaluate command, add lines-at option for DET

parent b701cddd
No related branches found
No related tags found
2 merge requests!146Add 4-5-col files related functionalities and add click commands,!143Set of click commands for bio base
Pipeline #
......@@ -123,6 +123,7 @@ def roc(ctx, scores, evaluation, **kargs):
@common_options.const_layout_option()
@common_options.style_option()
@common_options.figsize_option()
@common_options.lines_at_option()
@verbosity_option()
@click.pass_context
def det(ctx, scores, evaluation, **kargs):
......@@ -221,7 +222,7 @@ def cmc(ctx, scores, evaluation, **kargs):
@common_options.scores_argument(nargs=-1)
@common_options.titles_option()
@common_options.sep_dev_eval_option()
@common_options.output_plot_file_option(default_out='dic.pdf')
@common_options.output_plot_file_option(default_out='cmc.pdf')
@common_options.eval_option()
@common_options.semilogx_option(True)
@common_options.axes_val_option(dflt=None)
......@@ -408,7 +409,7 @@ def evaluate(ctx, scores, evaluation, **kwargs):
# the last one closes the file
ctx.meta['closef'] = True
click.echo("Generating score histograms in %s..." % ctx.meta['output'])
ctx.meta['criter'] = 'eer' # no criterion passed in evaluate
ctx.meta['criter'] = 'hter' # no criterion passed in evaluate
ctx.forward(hist)
click.echo("Evaluate successfully completed!")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment