Fix metrics::auc (#212)

* Fix metrics::auc
This commit is contained in:
Lorenzo
2022-11-01 12:50:46 +00:00
committed by GitHub
parent 083803c900
commit c3093f11f1
3 changed files with 12 additions and 15 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ impl<'a, T: RealNumber + FloatNumber, M: Array2<T>> FastPair<'a, T, M> {
///
/// Brute force algorithm, used only for comparison and testing
///
#[cfg(feature = "fp_bench")]
#[allow(dead_code)]
pub fn closest_pair_brute(&self) -> PairwiseDistance<T> {
use itertools::Itertools;
let m = self.samples.shape().0;