Remove normalization

As every dataset is already standardized
This commit is contained in:
2021-06-26 13:27:03 +02:00
parent 44b44f33ad
commit 54b73880e3
7 changed files with 73 additions and 8 deletions

11
gen_csv.py Normal file
View File

@@ -0,0 +1,11 @@
import pandas as pd
from experimentation.Sets import Datasets
dt = Datasets(normalize=False, standardize=False, set_of_files="tanveer")
for data in dt:
name = data[0]
X, y = dt.load(name)
z = pd.DataFrame(X)
z[X.shape[1]] = y
print(name, z.shape)
z.to_csv(f"test/{name}.csv", header=False, index=False)