From 011f9b0e26e858fe96e21fed6022daecdaff944e Mon Sep 17 00:00:00 2001 From: Luis Le <110530848+Leci37@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:07:53 +0200 Subject: [PATCH] print("DEBUG {ValueError}Th print("DEBUG {ValueError}Th --- utilW3/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilW3/data.py b/utilW3/data.py index 6860f65..f9b6b0b 100644 --- a/utilW3/data.py +++ b/utilW3/data.py @@ -183,7 +183,7 @@ def normalise_data(X, split_ratio, scaler_path, todict=False): try: output = scaler.transform(X) except ValueError: - print("{ValueError}The feature names should match those that were passed during fit.") + print("DEBUG {ValueError}The feature names should match those that were passed during fit.") output = scaler.transform(X[scaler.feature_names_in_]) output = pd.DataFrame(output, columns=columns, index=index) else: