Skip to content
Snippets Groups Projects
Commit 1cae122f authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixed bob bio dir x_labels and y_labels

parent 46d00036
No related branches found
No related tags found
1 merge request!157Fixed bob bio dir x_labels and y_labels
Pipeline #
...@@ -76,8 +76,8 @@ class Dir(measure_figure.PlotBase): ...@@ -76,8 +76,8 @@ class Dir(measure_figure.PlotBase):
self._semilogx = ctx.meta.get('semilogx', True) self._semilogx = ctx.meta.get('semilogx', True)
self._rank = ctx.meta.get('rank', 1) self._rank = ctx.meta.get('rank', 1)
self._title = self._title or 'DIR curve' self._title = self._title or 'DIR curve'
self._x_label = self._title or 'FAR' self._x_label = self._x_label or 'False Alarm Rate'
self._y_label = self._title or 'DIR' self._y_label = self._y_label or 'Detection and Identification Rate'
def compute(self, idx, input_scores, input_names): def compute(self, idx, input_scores, input_names):
''' Plot DIR for dev and eval data using ''' Plot DIR for dev and eval data using
......
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