naveed92 commited on
Commit
3ab8109
1 Parent(s): 9dfc17e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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