File size: 387 Bytes
c55eeec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
---
license: mit
tags:
- regression
- scikit-learn
---
# House Price Predictor
This is a simple linear regression model trained with scikit-learn.
## Inputs
- House size (sq ft)
- Number of bedrooms
## Output
- Predicted house price
## Example Usage
```python
import joblib
model = joblib.load("house_price_model.joblib")
prediction = model.predict([[1400, 3]])
print(prediction)
|