Update app.py
Browse files
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)
|