From d23c1f6f379a1ff8953af05c874fc5ca5370b6eb Mon Sep 17 00:00:00 2001 From: joaquintb Date: Fri, 10 May 2024 18:58:58 +0200 Subject: [PATCH] ready to tune --- model_selection/hyperparam_tuning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_selection/hyperparam_tuning.py b/model_selection/hyperparam_tuning.py index 4864b2c..1016803 100644 --- a/model_selection/hyperparam_tuning.py +++ b/model_selection/hyperparam_tuning.py @@ -165,7 +165,7 @@ if __name__ == "__main__": sheets_dict[sheet_name] = hyperparam_df # Write results to Excel file - with pd.ExcelWriter('./output/hyperparamers_pre_and_post') as writer: + with pd.ExcelWriter('./output/hyperparamers.xlsx') as writer: for sheet_name, data in sheets_dict.items(): data.to_excel(writer, sheet_name=sheet_name) -- 2.24.1