saritha commited on
Commit
9136363
1 Parent(s): 7e44f72

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -1,5 +1,6 @@
1
  import pickle as pkl
2
  import streamlit as st
 
3
 
4
  #Step 2: Open the saved file with read-binary mode
5
  lr_pickle = pkl.load(open('linear_saved_model', 'rb'))
 
1
  import pickle as pkl
2
  import streamlit as st
3
+ from sklearn.linear_model import LinearRegression
4
 
5
  #Step 2: Open the saved file with read-binary mode
6
  lr_pickle = pkl.load(open('linear_saved_model', 'rb'))