Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.bio.base
Commits
0b5d3c4c
Commit
0b5d3c4c
authored
6 years ago
by
Theophile GENTILHOMME
Browse files
Options
Downloads
Patches
Plain Diff
[script][figure] Remove filenames from plots but use them in log info
parent
9f06fb2d
No related branches found
No related tags found
1 merge request
!167
Various fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/bio/base/script/figure.py
+15
-6
15 additions, 6 deletions
bob/bio/base/script/figure.py
with
15 additions
and
6 deletions
bob/bio/base/script/figure.py
+
15
−
6
View file @
0b5d3c4c
...
@@ -7,6 +7,9 @@ import bob.measure.script.figure as measure_figure
...
@@ -7,6 +7,9 @@ import bob.measure.script.figure as measure_figure
import
bob.measure
import
bob.measure
from
bob.measure
import
(
plot
,
utils
)
from
bob.measure
import
(
plot
,
utils
)
from
tabulate
import
tabulate
from
tabulate
import
tabulate
import
logging
LOGGER
=
logging
.
getLogger
(
"
bob.bio.base
"
)
class
Roc
(
measure_figure
.
Roc
):
class
Roc
(
measure_figure
.
Roc
):
def
__init__
(
self
,
ctx
,
scores
,
evaluation
,
func_load
):
def
__init__
(
self
,
ctx
,
scores
,
evaluation
,
func_load
):
...
@@ -41,10 +44,11 @@ class Cmc(measure_figure.PlotBase):
...
@@ -41,10 +44,11 @@ class Cmc(measure_figure.PlotBase):
mpl
.
figure
(
1
)
mpl
.
figure
(
1
)
if
self
.
_eval
:
if
self
.
_eval
:
linestyle
=
'
-
'
if
not
self
.
_split
else
self
.
_linestyles
[
idx
]
linestyle
=
'
-
'
if
not
self
.
_split
else
self
.
_linestyles
[
idx
]
LOGGER
.
info
(
"
CMC dev. curve using %s
"
,
input_names
[
0
])
rank
=
plot
.
cmc
(
rank
=
plot
.
cmc
(
input_scores
[
0
],
logx
=
self
.
_semilogx
,
input_scores
[
0
],
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
label
=
self
.
_label
(
'
dev
'
,
input_names
[
0
]
,
idx
)
label
=
self
.
_label
(
'
dev
.
'
,
idx
)
)
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
linestyle
=
'
--
'
linestyle
=
'
--
'
...
@@ -52,17 +56,19 @@ class Cmc(measure_figure.PlotBase):
...
@@ -52,17 +56,19 @@ class Cmc(measure_figure.PlotBase):
mpl
.
figure
(
2
)
mpl
.
figure
(
2
)
linestyle
=
self
.
_linestyles
[
idx
]
linestyle
=
self
.
_linestyles
[
idx
]
LOGGER
.
info
(
"
CMC eval. curve using %s
"
,
input_names
[
1
])
rank
=
plot
.
cmc
(
rank
=
plot
.
cmc
(
input_scores
[
1
],
logx
=
self
.
_semilogx
,
input_scores
[
1
],
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
label
=
self
.
_label
(
'
eval
'
,
input_names
[
1
]
,
idx
)
label
=
self
.
_label
(
'
eval
.
'
,
idx
)
)
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
else
:
else
:
LOGGER
.
info
(
"
CMC dev. curve using %s
"
,
input_names
[
0
])
rank
=
plot
.
cmc
(
rank
=
plot
.
cmc
(
input_scores
[
0
],
logx
=
self
.
_semilogx
,
input_scores
[
0
],
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
self
.
_linestyles
[
idx
],
color
=
self
.
_colors
[
idx
],
linestyle
=
self
.
_linestyles
[
idx
],
label
=
self
.
_label
(
'
dev
'
,
input_names
[
0
]
,
idx
)
label
=
self
.
_label
(
'
dev
.
'
,
idx
)
)
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
self
.
_max_R
=
max
(
rank
,
self
.
_max_R
)
...
@@ -84,26 +90,29 @@ class Dir(measure_figure.PlotBase):
...
@@ -84,26 +90,29 @@ class Dir(measure_figure.PlotBase):
mpl
.
figure
(
1
)
mpl
.
figure
(
1
)
if
self
.
_eval
:
if
self
.
_eval
:
linestyle
=
'
-
'
if
not
self
.
_split
else
self
.
_linestyles
[
idx
]
linestyle
=
'
-
'
if
not
self
.
_split
else
self
.
_linestyles
[
idx
]
LOGGER
.
info
(
"
DIR dev. curve using %s
"
,
input_names
[
0
])
plot
.
detection_identification_curve
(
plot
.
detection_identification_curve
(
input_scores
[
0
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
input_scores
[
0
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
label
=
self
.
_label
(
'
dev
'
,
input_names
[
0
],
idx
)
label
=
self
.
_label
(
'
dev
'
,
idx
)
)
)
linestyle
=
'
--
'
linestyle
=
'
--
'
if
self
.
_split
:
if
self
.
_split
:
mpl
.
figure
(
2
)
mpl
.
figure
(
2
)
linestyle
=
self
.
_linestyles
[
idx
]
linestyle
=
self
.
_linestyles
[
idx
]
LOGGER
.
info
(
"
DIR eval. curve using %s
"
,
input_names
[
1
])
plot
.
detection_identification_curve
(
plot
.
detection_identification_curve
(
input_scores
[
1
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
input_scores
[
1
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
color
=
self
.
_colors
[
idx
],
linestyle
=
linestyle
,
label
=
self
.
_label
(
'
eval
'
,
input_names
[
1
],
idx
)
label
=
self
.
_label
(
'
eval
'
,
idx
)
)
)
else
:
else
:
LOGGER
.
info
(
"
DIR dev. curve using %s
"
,
input_names
[
0
])
plot
.
detection_identification_curve
(
plot
.
detection_identification_curve
(
input_scores
[
0
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
input_scores
[
0
],
rank
=
self
.
_rank
,
logx
=
self
.
_semilogx
,
color
=
self
.
_colors
[
idx
],
linestyle
=
self
.
_linestyles
[
idx
],
color
=
self
.
_colors
[
idx
],
linestyle
=
self
.
_linestyles
[
idx
],
label
=
self
.
_label
(
'
dev
'
,
input_names
[
0
],
idx
)
label
=
self
.
_label
(
'
dev
'
,
idx
)
)
)
if
self
.
_min_dig
is
not
None
:
if
self
.
_min_dig
is
not
None
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment