Gabriel commited on
Commit
92c49f6
1 Parent(s): 2a1129c

Update text.py

Browse files
Files changed (1) hide show
  1. text.py +4 -2
text.py CHANGED
@@ -5,8 +5,10 @@ The goal of text summarization is to condense long documents into summaries, whi
5
 
6
  Text summarization methods can either be used as an extractive or abstractive model. An Extractive method does what it sounds like, it concatenates different important sentences or paragraphs without understanding the meaning of those parts. Extractive summarization does not create any new word phrases. For instance, if you presented a page of text to an extractive model, it would just act as a text “highlighter”. However, Abstractive summarization generates text in a fashion that tries to guess the meaning in a summarised way of the page of text it is presented. It would put words together in a meaningful way and add the most important fact found in the text.
7
 
8
- <center style="margin-bottom:0em;">![alt text](file/EX_VS_ABS.png)</center>
9
- <center><i>image_caption</i></center>
 
 
10
 
11
  <h3><center> Abstractive Model </center></h3>
12
 
 
5
 
6
  Text summarization methods can either be used as an extractive or abstractive model. An Extractive method does what it sounds like, it concatenates different important sentences or paragraphs without understanding the meaning of those parts. Extractive summarization does not create any new word phrases. For instance, if you presented a page of text to an extractive model, it would just act as a text “highlighter”. However, Abstractive summarization generates text in a fashion that tries to guess the meaning in a summarised way of the page of text it is presented. It would put words together in a meaningful way and add the most important fact found in the text.
7
 
8
+ <figure>
9
+ <img src="file/EX_VS_ABS.png" alt="Trulli" style="width:100%">
10
+ <figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
11
+ </figure>
12
 
13
  <h3><center> Abstractive Model </center></h3>
14