Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,8 @@ st.set_page_config(page_title="Stress Classification",layout="wide")
|
|
| 8 |
st.markdown("<h1 style='font-size:40px;color:darkred;text-align:center'>Stress Categorization Using BERT Algorithm</h1>",unsafe_allow_html=True)
|
| 9 |
|
| 10 |
|
| 11 |
-
|
|
|
|
| 12 |
|
| 13 |
if st.button("Predict"):
|
| 14 |
vector = joblib.load("stress.h5")
|
|
|
|
| 8 |
st.markdown("<h1 style='font-size:40px;color:darkred;text-align:center'>Stress Categorization Using BERT Algorithm</h1>",unsafe_allow_html=True)
|
| 9 |
|
| 10 |
|
| 11 |
+
st.markdown("Enter your concern")
|
| 12 |
+
posts = st.text_area("")
|
| 13 |
|
| 14 |
if st.button("Predict"):
|
| 15 |
vector = joblib.load("stress.h5")
|