summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-11-27 23:09:38 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-11-27 23:09:38 +0530
commit54c94edb7a222c7c5585ee18648ce809e5d4ad0e (patch)
tree49b41f9f782dd37ae735c4cc8b97712c6a001a8e /main.py
parentab9359ae5b6fa18695df4bb3543672502452cd6f (diff)
downloadautopredict-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.py2
1 files changed, 1 insertions, 1 deletions
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():