julesy commited on
Commit
ffe62e6
·
1 Parent(s): a28dfc8

added gitignore and updated UI

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +2 -1
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .vscode/
app.py CHANGED
@@ -12,6 +12,7 @@ choice = st.selectbox("Select Model:", options)
12
 
13
  response = st.text_input("Enter Text to Analyse:", "I am excited to begin working on this CS482 Project!")
14
 
15
- if st.button("Process Text"):
16
  pred = classifier(response)
 
17
  st.write(pred)
 
12
 
13
  response = st.text_input("Enter Text to Analyse:", "I am excited to begin working on this CS482 Project!")
14
 
15
+ if st.button("Submit"):
16
  pred = classifier(response)
17
+ st.header(":blue[Results]")
18
  st.write(pred)