From 54c94edb7a222c7c5585ee18648ce809e5d4ad0e Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 27 Nov 2024 23:09:38 +0530 Subject: Added the price preediction output to the predict.py --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.py') diff --git a/main.py b/main.py index a8bdec8..b0d6673 100644 --- a/main.py +++ b/main.py @@ -90,7 +90,7 @@ def train_model(df, target, model_name): # Save the model model_file = f'{model_name}.pkl' joblib.dump(best_model, model_file) - print("Model saved as '{model_file}'") + print(f"Model saved as '{model_file}'") # Main Function def main(): -- cgit v1.2.3-59-g8ed1b