Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -32,13 +32,6 @@ input_text = st.text_area(
|
|
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 |
|
44 |
# Parse sample document and break it into sentences
|
|
|
32 |
|
33 |
button=st.button('Get Segments')
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
if (button==True) and input_text != "":
|
36 |
|
37 |
# Parse sample document and break it into sentences
|