yxmauw commited on
Commit
2f6dde2
·
1 Parent(s): d25dee5

Update ML_model.py

Browse files
Files changed (1) hide show
  1. 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://raw.githubusercontent.com/yxmauw/General_Assembly_Pub/main/project_2/cloud_app/streamlit_data.csv'
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']