Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 ---
|