nickmuchi commited on
Commit
e18707d
·
1 Parent(s): a9ea74e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -197,7 +197,7 @@ if summarize:
197
  # extractive summarizer
198
 
199
  with st.spinner(
200
- text="Extracting summary. This might take a few seconds depending on the length of your document/text ..."
201
  ):
202
  summarizer_model = pipeline_model()
203
  summarized_text = summarizer_model(text_to_summarize, max_length=100, min_length=30)
 
197
  # extractive summarizer
198
 
199
  with st.spinner(
200
+ text="Loading Model and Extracting summary. This might take a few seconds depending on the length of your document/text..."
201
  ):
202
  summarizer_model = pipeline_model()
203
  summarized_text = summarizer_model(text_to_summarize, max_length=100, min_length=30)