mahesh1209 commited on
Commit
0e03373
·
verified ·
1 Parent(s): fb9d7f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ model = train_model()
33
  # ✅ Gradio UI function
34
  def gradio_predict(area, bedrooms, age):
35
  price = predict_price(model, area, bedrooms, age)
36
- return f"Predicted Price: ₹{round(price, 2):,.0f}"
37
 
38
  # ✅ Launch Gradio interface
39
  demo = gr.Interface(
 
33
  # ✅ Gradio UI function
34
  def gradio_predict(area, bedrooms, age):
35
  price = predict_price(model, area, bedrooms, age)
36
+ return f"🏠 Estimated House Price: ₹{round(price, 2):,.0f}"
37
 
38
  # ✅ Launch Gradio interface
39
  demo = gr.Interface(