--- 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)