Fix normalize error

This commit is contained in:
2021-04-11 02:21:25 +02:00
parent 40d9b02ef2
commit dd83175508
554 changed files with 3891 additions and 7360 deletions

View File

@@ -181,7 +181,7 @@ class Datasets_Tanveer(Dataset_Base):
)
X = data.drop("clase", axis=1).to_numpy()
y = data["clase"].to_numpy()
return X, y
return self.post_process(X, y) # type: ignore
class Datasets_AAAI(Dataset_Base):