Paula Leonova
commited on
Commit
·
e68a5f1
1
Parent(s):
96aa704
Switch radio button
Browse files
app.py
CHANGED
|
@@ -33,7 +33,7 @@ with st.form(key='my_form'):
|
|
| 33 |
|
| 34 |
radio = st.radio(
|
| 35 |
"Are ground truth labels available?",
|
| 36 |
-
('
|
| 37 |
|
| 38 |
if radio == 'Yes':
|
| 39 |
glabels = st.text_input('Enter known labels (comma-separated):',ex_glabels, max_chars=1000)
|
|
|
|
| 33 |
|
| 34 |
radio = st.radio(
|
| 35 |
"Are ground truth labels available?",
|
| 36 |
+
('No', 'Yes'))
|
| 37 |
|
| 38 |
if radio == 'Yes':
|
| 39 |
glabels = st.text_input('Enter known labels (comma-separated):',ex_glabels, max_chars=1000)
|