Spaces:
Sleeping
Sleeping
Gruhit Patel commited on
Update server.py
Browse files
server.py
CHANGED
|
@@ -34,5 +34,5 @@ def predice_house_price(req: PredictReq):
|
|
| 34 |
prediction = ml_model.predict(inp)[0]
|
| 35 |
|
| 36 |
return {
|
| 37 |
-
'price': str(prediction)
|
| 38 |
-
}
|
|
|
|
| 34 |
prediction = ml_model.predict(inp)[0]
|
| 35 |
|
| 36 |
return {
|
| 37 |
+
'price': str(prediction*100)
|
| 38 |
+
}
|