Spaces:
Sleeping
Sleeping
Update streamlit_app.py
Browse files- streamlit_app.py +4 -4
streamlit_app.py
CHANGED
|
@@ -51,10 +51,10 @@ def sahi_karneka_function(x):
|
|
| 51 |
return final_sentence
|
| 52 |
|
| 53 |
# === Load Data and Models ===
|
| 54 |
-
df = pd.read_csv(r"
|
| 55 |
-
model = joblib.load("
|
| 56 |
-
tfidf = joblib.load("
|
| 57 |
-
ml = joblib.load("
|
| 58 |
|
| 59 |
# === Streamlit UI ===
|
| 60 |
st.title("🧠 Multi-Label Question Tag Predictor")
|
|
|
|
| 51 |
return final_sentence
|
| 52 |
|
| 53 |
# === Load Data and Models ===
|
| 54 |
+
df = pd.read_csv(r"c_d.csv")
|
| 55 |
+
model = joblib.load("logistic_models.pkl")
|
| 56 |
+
tfidf = joblib.load("tfidf.pkl")
|
| 57 |
+
ml = joblib.load("multilabels.pkl")
|
| 58 |
|
| 59 |
# === Streamlit UI ===
|
| 60 |
st.title("🧠 Multi-Label Question Tag Predictor")
|