From ebe6d11f31bc58babb9b437deb8951ca99baa715 Mon Sep 17 00:00:00 2001 From: Joaquin Torres Bravo Date: Mon, 13 May 2024 10:51:12 +0200 Subject: [PATCH] Renaming --- model_selection/hyperparam_tuning.py | 2 +- .../hyperparamers.xlsx | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename model_selection/{output => output_hyperparam}/hyperparamers.xlsx (100%) diff --git a/model_selection/hyperparam_tuning.py b/model_selection/hyperparam_tuning.py index c4fc431..89d82bf 100644 --- a/model_selection/hyperparam_tuning.py +++ b/model_selection/hyperparam_tuning.py @@ -164,7 +164,7 @@ if __name__ == "__main__": sheets_dict[sheet_name] = hyperparam_df # Write results to Excel file - with pd.ExcelWriter('./output/hyperparamers.xlsx') as writer: + with pd.ExcelWriter('./output_hyperparam/hyperparamers.xlsx') as writer: for sheet_name, data in sheets_dict.items(): data.to_excel(writer, sheet_name=sheet_name) diff --git a/model_selection/output/hyperparamers.xlsx b/model_selection/output_hyperparam/hyperparamers.xlsx similarity index 100% rename from model_selection/output/hyperparamers.xlsx rename to model_selection/output_hyperparam/hyperparamers.xlsx -- 2.24.1