RMWeerasinghe commited on
Commit
a4f8505
1 Parent(s): 00742e9

Initial Commit

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -89,10 +89,9 @@ def load_app():
89
  - .txt, .pdf, .docx file formats"""
90
  )
91
  st.markdown(
92
- """This app supports two type of summarization:
93
 
94
- 1. **Extractive Summarization**: The extractive approach involves picking up the most important phrases and lines from the documents. It then combines all the important lines to create the summary. So, in this case, every line and word of the summary actually belongs to the original document which is summarized.
95
- 2. **Abstractive Summarization**: The abstractive approach involves rephrasing the complete document while capturing the complete meaning of the document. This type of summarization provides more human-like summary"""
96
  )
97
  st.markdown("---")
98
  # ---------------------------
 
89
  - .txt, .pdf, .docx file formats"""
90
  )
91
  st.markdown(
92
+ """This app supports abstractive summarization of documents:
93
 
94
+ **Abstractive Summarization**: The abstractive approach involves rephrasing the complete document while capturing the complete meaning of the document. This type of summarization provides more human-like summary"""
 
95
  )
96
  st.markdown("---")
97
  # ---------------------------