17 lines
478 B
Python
17 lines
478 B
Python
class HousePricePredictor:
|
|
"""
|
|
Mock ML model that predicts house prices.
|
|
In a real scenario, this would load a trained model.
|
|
"""
|
|
|
|
async def predict(
|
|
self, square_feet: float, bedrooms: int, bathrooms: float
|
|
) -> float:
|
|
base_price = square_feet * 200
|
|
bedroom_value = bedrooms * 25000
|
|
bathroom_value = bathrooms * 15000
|
|
|
|
predicted_price = base_price + bedroom_value + bathroom_value
|
|
|
|
return predicted_price
|