The-Adnan-Syed commited on
Commit
c5789a1
·
verified ·
1 Parent(s): ece248b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,13 +3,13 @@ import streamlit as st
3
  import pandas as pd
4
  import joblib
5
 
 
 
6
  st.markdown("<h1 style='font-size:40px;color:darkred;text-align:center'>Stress Categorization Using BERT Algorithm</h1>",unsafe_allow_html=True)
7
 
8
 
9
  posts = st.text_area("Enter your concern")
10
 
11
- st.set_page_config(page_title="Stress Classification",layout="wide")
12
-
13
  if st.button("Predict"):
14
  vector = joblib.load("stress.h5")
15
 
 
3
  import pandas as pd
4
  import joblib
5
 
6
+ st.set_page_config(page_title="Stress Classification",layout="wide")
7
+
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
  posts = st.text_area("Enter your concern")
12
 
 
 
13
  if st.button("Predict"):
14
  vector = joblib.load("stress.h5")
15