Gregoryjr commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,9 +5,9 @@ text = st.text_input("write a statement")
|
|
| 5 |
import streamlit as st
|
| 6 |
|
| 7 |
options = ["zero-shot-classification", "nill", "nill3"]
|
| 8 |
-
|
| 9 |
|
| 10 |
-
model = st.write("You selected:", selected_option)
|
| 11 |
|
| 12 |
con = st.button("submit")
|
| 13 |
if con:
|
|
|
|
| 5 |
import streamlit as st
|
| 6 |
|
| 7 |
options = ["zero-shot-classification", "nill", "nill3"]
|
| 8 |
+
model = st.selectbox("Select an option", options)
|
| 9 |
|
| 10 |
+
##model = st.write("You selected:", selected_option)
|
| 11 |
|
| 12 |
con = st.button("submit")
|
| 13 |
if con:
|