diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-11-27 23:09:38 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-11-27 23:09:38 +0530 |
commit | 54c94edb7a222c7c5585ee18648ce809e5d4ad0e (patch) | |
tree | 49b41f9f782dd37ae735c4cc8b97712c6a001a8e /main.py | |
parent | ab9359ae5b6fa18695df4bb3543672502452cd6f (diff) | |
download | autopredict-54c94edb7a222c7c5585ee18648ce809e5d4ad0e.tar.gz autopredict-54c94edb7a222c7c5585ee18648ce809e5d4ad0e.tar.bz2 autopredict-54c94edb7a222c7c5585ee18648ce809e5d4ad0e.zip |
Added the price preediction output to the predict.py
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(): |