Manish-4007 commited on
Commit
aa700c5
·
1 Parent(s): 528ab98
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ whole_text = st.text_input("Enter the text Here: ")
34
 
35
  try:
36
  if st.button('Suggest topic'):
37
- with st.spinner(Scanning content to suggest topics):
38
  topic_classifier = st.session_state.topic_model
39
  predicted_topic = suggest_topic(topic_classifier,whole_text)
40
 
 
34
 
35
  try:
36
  if st.button('Suggest topic'):
37
+ with st.spinner("Scanning content to suggest topics"):
38
  topic_classifier = st.session_state.topic_model
39
  predicted_topic = suggest_topic(topic_classifier,whole_text)
40