jonl521 commited on
Commit
c55eeec
·
verified ·
1 Parent(s): ce71800

Upload README.md

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