Spaces:
Sleeping
Sleeping
Update ML_model.py
Browse files- ML_model.py +1 -1
ML_model.py
CHANGED
@@ -9,7 +9,7 @@ from sklearn.impute import KNNImputer
|
|
9 |
import pickle
|
10 |
|
11 |
def ml_model():
|
12 |
-
url = 'https://
|
13 |
df = pd.read_csv(url, header=0) # load data
|
14 |
X = df.drop('SalePrice', axis=1)
|
15 |
y = df['SalePrice']
|
|
|
9 |
import pickle
|
10 |
|
11 |
def ml_model():
|
12 |
+
url = 'https://huggingface.co/spaces/yxmauw/ames-houseprice-recommender/raw/main/streamlit_data.csv'
|
13 |
df = pd.read_csv(url, header=0) # load data
|
14 |
X = df.drop('SalePrice', axis=1)
|
15 |
y = df['SalePrice']
|