feat: adds F1 and roc_auc_score

This commit is contained in:
Volodymyr Orlov
2020-06-08 14:47:59 -07:00
parent ee581abf70
commit 14113b4152
10 changed files with 167 additions and 6 deletions
+5
View File
@@ -27,6 +27,11 @@ impl<T: FloatExt> BaseVector<T> for Vec<T> {
fn len(&self) -> usize {
self.len()
}
fn to_vec(&self) -> Vec<T> {
let v = self.clone();
v
}
}
#[derive(Debug, Clone)]