gamaba commited on
Commit
9b7ab28
·
verified ·
1 Parent(s): d131fc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -67,6 +67,7 @@ def predict_price(
67
  ])
68
 
69
  prediction = model.predict(input_data)[0]
 
70
  return f"Predicted Price: ₹{prediction:,.2f}", "VISIT AGAIN 😊"
71
 
72
  # --- 4. Create Gradio Interface ---
 
67
  ])
68
 
69
  prediction = model.predict(input_data)[0]
70
+ prediction = int(prediction)
71
  return f"Predicted Price: ₹{prediction:,.2f}", "VISIT AGAIN 😊"
72
 
73
  # --- 4. Create Gradio Interface ---