Update app.py
Browse files
app.py
CHANGED
@@ -25,15 +25,15 @@ st.markdown("***")
|
|
25 |
col1, col2, col3 = st.columns((1,1,1))
|
26 |
col1.header("Select Sentiments")
|
27 |
sentiments = col1.multiselect("",["Happy","Sad","Neutral"])
|
28 |
-
col2.header("Select
|
29 |
-
entities = col2.multiselect("",["
|
30 |
-
["
|
31 |
|
32 |
|
33 |
col3.header("Select Reasons")
|
34 |
|
35 |
-
reasons = col3.multiselect("",["
|
36 |
-
["
|
37 |
|
38 |
is_multi_class = st.checkbox("Can have more than one classes",value=True)
|
39 |
|
|
|
25 |
col1, col2, col3 = st.columns((1,1,1))
|
26 |
col1.header("Select Sentiments")
|
27 |
sentiments = col1.multiselect("",["Happy","Sad","Neutral"])
|
28 |
+
col2.header("Select Topics")
|
29 |
+
entities = col2.multiselect("",["Bank Account","Credit Card","Home Loan","Motor Loan"],
|
30 |
+
["Bank Account","Credit Card","Home Loan","Motor Loan"])
|
31 |
|
32 |
|
33 |
col3.header("Select Reasons")
|
34 |
|
35 |
+
reasons = col3.multiselect("",["Poor_Service","No_Empathy","Abuse"],
|
36 |
+
["Poor_Service","No_Empathy","Abuse"])
|
37 |
|
38 |
is_multi_class = st.checkbox("Can have more than one classes",value=True)
|
39 |
|