Spaces:
Runtime error
Runtime error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -4,7 +4,7 @@ import numpy as np
|
|
| 4 |
import streamlit as st
|
| 5 |
import sklearn
|
| 6 |
|
| 7 |
-
model_file = "
|
| 8 |
try:
|
| 9 |
with open(model_file,'rb') as file:
|
| 10 |
model = pickle.load(file)
|
|
|
|
| 4 |
import streamlit as st
|
| 5 |
import sklearn
|
| 6 |
|
| 7 |
+
model_file = "/model.pkl"
|
| 8 |
try:
|
| 9 |
with open(model_file,'rb') as file:
|
| 10 |
model = pickle.load(file)
|