Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import pandas as pd
|
|
4 |
#import json
|
5 |
import pickle
|
6 |
|
7 |
-
with open(
|
8 |
model = pickle.load(f)
|
9 |
|
10 |
st.write(""" # Mobile Price-Range Prediction""")
|
|
|
4 |
#import json
|
5 |
import pickle
|
6 |
|
7 |
+
with open("model.pkl", "rb") as f:
|
8 |
model = pickle.load(f)
|
9 |
|
10 |
st.write(""" # Mobile Price-Range Prediction""")
|