Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ import pickle
|
|
| 16 |
# st.write(f'Predicted House Price: ${prediction[0]:.2f}')
|
| 17 |
|
| 18 |
#Load the model
|
| 19 |
-
with open('
|
| 20 |
model = pickle.load(f)
|
| 21 |
|
| 22 |
avg_train_score = st.text_input("AVG Train Score", "")
|
|
|
|
| 16 |
# st.write(f'Predicted House Price: ${prediction[0]:.2f}')
|
| 17 |
|
| 18 |
#Load the model
|
| 19 |
+
with open('best_model.pkl', 'rb') as f:
|
| 20 |
model = pickle.load(f)
|
| 21 |
|
| 22 |
avg_train_score = st.text_input("AVG Train Score", "")
|