Spaces:
Build error
Build error
added gitignore and updated UI
Browse files- .gitignore +1 -0
- 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("
|
| 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)
|