Mayank-2002 commited on
Commit
766aaba
1 Parent(s): 7159d1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def predict_price(location, sqft, bath, bhk):
17
 
18
  return abs(lr_clf.predict([x])[0])
19
 
20
- with open('./banglore_home_prices_model.pickle', 'rb') as f:
21
  lr_clf = pickle.load(f)
22
 
23
  # Create the Streamlit app
 
17
 
18
  return abs(lr_clf.predict([x])[0])
19
 
20
+ with open('./model.pkl', 'rb') as f:
21
  lr_clf = pickle.load(f)
22
 
23
  # Create the Streamlit app