Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -0
src/streamlit_app.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import joblib
|
| 3 |
import pandas as pd
|
|
|
|
| 4 |
|
| 5 |
def load_model():
|
| 6 |
model_path = os.path.join(os.path.dirname(__file__), '..', 'model', 'model.joblib')
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import joblib
|
| 3 |
import pandas as pd
|
| 4 |
+
import os
|
| 5 |
|
| 6 |
def load_model():
|
| 7 |
model_path = os.path.join(os.path.dirname(__file__), '..', 'model', 'model.joblib')
|