nickmuchi commited on
Commit
e0fc9e2
·
1 Parent(s): 6b2c7bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -149,13 +149,15 @@ st.markdown(
149
  st.markdown(
150
  """The app supports extractive summarization which aims to identify the salient information that is then extracted and grouped together to form a concise summary.
151
  For documents or text that is more than 500 words long, the app will divide the text into chunks and summarize each chunk.
152
- There are two models available to choose from:
 
 
153
  - Facebook-Bart, trained on large [CNN and Daily Mail](https://huggingface.co/datasets/cnn_dailymail) news articles.
154
- - Sshleifer-Distilbart, which is a distilled (smaller) version of the large Bart model.
155
-
156
- Please do note that the model will take longer to generate summaries for documents that are too long""", unsafe_allow_html=True
157
  )
158
 
 
 
159
  st.markdown(
160
  "The app only ingests the below formats for summarization task:"
161
  )
 
149
  st.markdown(
150
  """The app supports extractive summarization which aims to identify the salient information that is then extracted and grouped together to form a concise summary.
151
  For documents or text that is more than 500 words long, the app will divide the text into chunks and summarize each chunk.
152
+ There are two models available to choose from:""")
153
+
154
+ st.markdwon("""
155
  - Facebook-Bart, trained on large [CNN and Daily Mail](https://huggingface.co/datasets/cnn_dailymail) news articles.
156
+ - Sshleifer-Distilbart, which is a distilled (smaller) version of the large Bart model."""
 
 
157
  )
158
 
159
+ st.markdown("""Please do note that the model will take longer to generate summaries for documents that are too long""")
160
+
161
  st.markdown(
162
  "The app only ingests the below formats for summarization task:"
163
  )