Skip to content
Snippets Groups Projects
Commit 241aef27 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch 'roc-det-fix' into 'master'

Compute roc using roc_for_far internally

Closes #26

See merge request !44
parents 3a64d554 f67d3a34
No related branches found
No related tags found
1 merge request!44Compute roc using roc_for_far internally
Pipeline #
......@@ -241,18 +241,15 @@ double bob::measure::minWeightedErrorRateThreshold(
blitz::Array<double, 2>
bob::measure::roc(const blitz::Array<double, 1> &negatives,
const blitz::Array<double, 1> &positives, size_t points) {
double min = std::min(blitz::min(negatives), blitz::min(positives));
double max = std::max(blitz::max(negatives), blitz::max(positives));
double step = (max - min) / ((double)points - 1.0);
blitz::Array<double, 2> retval(2, points);
for (int i = 0; i < (int)points; ++i) {
std::pair<double, double> ratios =
bob::measure::farfrr(negatives, positives, min + i * step);
// preserve X x Y ordering (FAR x FRR)
retval(0, i) = ratios.first;
retval(1, i) = ratios.second;
// Uses roc_for_far internally
// Create an far_list
blitz::Array<double, 1> far_list((int)points);
int min_far = -8; // minimum FAR in terms of 10^(min_far)
double counts_per_step = points / (-min_far) ;
for (int i = 1-(int)points; i <= 0; ++i) {
far_list(i+(int)points-1) = std::pow(10., (double)i/counts_per_step);
}
return retval;
return bob::measure::roc_for_far(negatives, positives, far_list, false);
}
blitz::Array<double, 2>
......@@ -472,9 +469,9 @@ bob::measure::roc_for_far(const blitz::Array<double, 1> &negatives,
if (far_index >= 0) {
// walk to the end of both lists; at least one of both lists should already
// have reached its limit.
while (pos_it++ != pos.end())
while (pos_it != pos.end() && pos_it++ != pos.end())
++pos_index;
while (neg_it++ != neg.end())
while (neg_it != neg.end() && neg_it++ != neg.end())
++neg_index;
// fill in the remaining elements of the CAR list
do {
......
No preview for this file type
No preview for this file type
......@@ -288,7 +288,7 @@ def test_plots():
# This example will test the ROC plot calculation functionality.
xy = roc(negatives, positives, 100)
# uncomment the next line to save a reference value
# save('nonsep-roc.hdf5', xy)
# save(F('nonsep-roc.hdf5'), xy)
xyref = bob.io.base.load(F('nonsep-roc.hdf5'))
assert numpy.array_equal(xy, xyref)
......@@ -310,7 +310,7 @@ def test_plots():
# This example will test the DET plot calculation functionality.
det_xyzw = det(negatives, positives, 100)
# uncomment the next line to save a reference value
# save('nonsep-det.hdf5', det_xyzw)
# save(F('nonsep-det.hdf5'), det_xyzw)
det_xyzw_ref = bob.io.base.load(F('nonsep-det.hdf5'))
assert numpy.allclose(det_xyzw, det_xyzw_ref, atol=1e-15)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment