Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -32,10 +32,12 @@ input_text = st.text_area(
|
|
32 |
|
33 |
button=st.button('Get Segments')
|
34 |
|
|
|
35 |
# Radio bar
|
36 |
# BERT or TOPIC
|
37 |
select_names = ["LDA Topic", "BERT"]
|
38 |
model = st.radio(label='Select model', options=select_names, index=0)
|
|
|
39 |
|
40 |
if (button==True) and input_text != "":
|
41 |
|
|
|
32 |
|
33 |
button=st.button('Get Segments')
|
34 |
|
35 |
+
"""
|
36 |
# Radio bar
|
37 |
# BERT or TOPIC
|
38 |
select_names = ["LDA Topic", "BERT"]
|
39 |
model = st.radio(label='Select model', options=select_names, index=0)
|
40 |
+
"""
|
41 |
|
42 |
if (button==True) and input_text != "":
|
43 |
|