Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
bob.measure
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
bob.measure
Commits
ea35dd2e
Commit
ea35dd2e
authored
Jun 29, 2018
by
Theophile GENTILHOMME
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Help parameter customization
parent
6e2065e9
Pipeline
#21462
passed with stage
in 14 minutes and 57 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
bob/measure/script/common_options.py
bob/measure/script/common_options.py
+8
-8
bob/measure/script/gen.py
bob/measure/script/gen.py
+2
-1
No files found.
bob/measure/script/common_options.py
View file @
ea35dd2e
...
...
@@ -11,7 +11,7 @@ from bob.extension.scripts.click_helper import (
bool_option
,
list_float_option
,
verbosity_option
,
open_file_mode_option
)
LOGGER
=
logging
.
getLogger
(
__name__
)
CONTEXT_SETTINGS
=
dict
(
help_option_names
=
[
'-?'
,
'-h'
,
'--help'
])
def
scores_argument
(
min_arg
=
1
,
force_eval
=
False
,
**
kwargs
):
"""Get the argument for scores, and add `dev-scores` and `eval-scores` in
...
...
@@ -589,7 +589,7 @@ def metrics_command(docstring, criteria=('eer', 'min-hter', 'far')):
def
custom_metrics_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
eval_option
()
@
table_option
()
...
...
@@ -636,7 +636,7 @@ def roc_command(docstring):
def
custom_roc_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
titles_option
()
@
legends_option
()
...
...
@@ -691,7 +691,7 @@ def det_command(docstring):
def
custom_det_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
output_plot_file_option
(
default_out
=
'det.pdf'
)
@
titles_option
()
...
...
@@ -744,7 +744,7 @@ def epc_command(docstring):
def
custom_epc_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
min_arg
=
1
,
force_eval
=
True
,
nargs
=-
1
)
@
output_plot_file_option
(
default_out
=
'epc.pdf'
)
@
titles_option
()
...
...
@@ -789,7 +789,7 @@ def hist_command(docstring):
def
custom_hist_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
output_plot_file_option
(
default_out
=
'hist.pdf'
)
@
eval_option
()
...
...
@@ -845,7 +845,7 @@ def evaluate_command(docstring, criteria=('eer', 'min-hter', 'far')):
def
custom_evaluate_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
()
@
click
.
command
(
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
legends_option
()
@
sep_dev_eval_option
()
...
...
@@ -959,7 +959,7 @@ def multi_metrics_command(docstring, criteria=('eer', 'min-hter', 'far')):
def
custom_metrics_command
(
func
):
func
.
__doc__
=
docstring
@
click
.
command
(
'multi-metrics'
)
@
click
.
command
(
'multi-metrics'
,
context_settings
=
CONTEXT_SETTINGS
)
@
scores_argument
(
nargs
=-
1
)
@
eval_option
()
@
n_protocols_option
()
...
...
bob/measure/script/gen.py
View file @
ea35dd2e
...
...
@@ -8,6 +8,7 @@ from click.types import FLOAT
from
bob.extension.scripts.click_helper
import
verbosity_option
from
bob.core
import
random
from
bob.io.base
import
create_directories_safe
from
.
import
common_options
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -73,7 +74,7 @@ def write_scores_to_file(neg, pos, filename):
f
.
write
(
text
)
@
click
.
command
()
@
click
.
command
(
context_settings
=
common_options
.
CONTEXT_SETTINGS
)
@
click
.
argument
(
'outdir'
)
@
click
.
option
(
'--mean-neg'
,
default
=-
1
,
type
=
FLOAT
,
show_default
=
True
)
@
click
.
option
(
'--mean-pos'
,
default
=
1
,
type
=
FLOAT
,
show_default
=
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment