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
+2
View File
@@ -22,6 +22,8 @@ pub trait BaseVector<T: FloatExt>: Clone + Debug {
fn set(&mut self, i: usize, x: T);
fn len(&self) -> usize;
fn to_vec(&self) -> Vec<T>;
}
pub trait BaseMatrix<T: FloatExt>: Clone + Debug {