Kuaaangwen commited on
Commit
1716434
1 Parent(s): cd6e5f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -27,7 +27,9 @@ sidebar_selectbox = st.sidebar.selectbox(
27
  ("Compare two sentences", "Bulk upload and mark")
28
  )
29
 
30
- # Streamlit form elements (default)
 
 
31
 
32
  with st.form("submission_form", clear_on_submit=False):
33
 
@@ -39,7 +41,10 @@ with st.form("submission_form", clear_on_submit=False):
39
 
40
 
41
  if sidebar_selectbox == "Bulk upload and mark":
42
- with st.form("submission_form", clear_on_submit=False):
 
 
 
43
 
44
  sentence_1 = st.text_input("Sentence 1 input")
45
 
 
27
  ("Compare two sentences", "Bulk upload and mark")
28
  )
29
 
30
+ # Streamlit form elements (default to "Compare two sentences)
31
+
32
+ st.subheader("Compare the similarity between two sentences")
33
 
34
  with st.form("submission_form", clear_on_submit=False):
35
 
 
41
 
42
 
43
  if sidebar_selectbox == "Bulk upload and mark":
44
+
45
+ st.subheader("Bulk compare similarity of sentences")
46
+
47
+ with st.form("bulk_submission_form", clear_on_submit=False):
48
 
49
  sentence_1 = st.text_input("Sentence 1 input")
50