Add 10 random seeds run in crossval

Add testwodt comparison
This commit is contained in:
2021-03-10 16:42:18 +01:00
parent d4cfe77b18
commit e791d2edf5
5 changed files with 127 additions and 15 deletions

View File

@@ -117,7 +117,7 @@ if dataset == "all":
)
print(f"5 Fold Cross Validation with 10 random seeds {random_seeds}")
for dataset in dt:
print(f"- {dataset[0]:20s} ", end="")
print(f"- {dataset[0]:30s} ", end="")
scores = process_dataset(dataset[0], verbose=False)
print(f"{np.mean(scores):6.4f}±{np.std(scores):6.4f}")
else: