Parcourir la source

fixed bug in cv composer

tanja il y a 4 ans
Parent
commit
fccc15ba02
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      cdplib/ml_validation/CVComposer.py

+ 1 - 1
cdplib/ml_validation/CVComposer.py

@@ -17,7 +17,7 @@ from cdplib.log import Log
 CVType = NewType("CVType", Iterable[Tuple[List]])
 
 DataSetType = NewType("DataSetType",
-                      Union[pd.DataFrame, pd.Sereis, np.ndarray, List])
+                      Union[pd.DataFrame, pd.Series, np.ndarray, List])
 
 
 class CVComposer: