<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>S. Singh); jps@nitp.ac.in (J. P. Singh); akshayd@nitp.ac.in (A. Deepak)</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Deep Learning based Abstractive Summarization for English Language</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Sangita Singh</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jyoti Prakash Singh</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Akshay Deepak</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>National Institute of Technology Patna</institution>
          ,
          <addr-line>Bihar</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2022</year>
      </pub-date>
      <volume>000</volume>
      <fpage>0</fpage>
      <lpage>0002</lpage>
      <abstract>
        <p>ive text summarizer. In our experiment, we successfully reduced the training loss to 0.036 and demonstrated that our abstractive text summarizer can generate a short summary of English language.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Deep Learning</kwd>
        <kwd>Bi-LSTM</kwd>
        <kwd>Sequence-to-Sequence</kwd>
        <kwd>Encoder-Decoder model</kwd>
        <kwd>NLP</kwd>
        <kwd>ILSUM-2022 Datasets</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Now days, textual content like news articles, novels, legal documents, scientific papers, etc.
is available in abundant quantity, and it is growing rapidly day by day. Because of the large
amount of available information, extracting the required information takes a long time, and the
extracted results are not always as precise as the required information. In this case, automatic
text summarization (ATS) can then assist us in locating the relevant content. ATS is one of the
most dificult tasks in natural language processing (NLP) and artificial intelligence (AI).</p>
      <p>
        There are two approaches to ATS tasks: (i) an abstractive approach and (ii) an extractive
approach. In an extractive approach, it pulls out the key phrases and words from the original text,
separates out some crucial component, and then put everything together to create a summary.
In an abstractive approach, new sentences that do not belong in the original document are
generated. The NLP research community has paid surprisingly close attention to automatic text
summarization for Indian languages. While large-scale datasets exist for languages including
English, Chinese, French, and German, none exist for Indian languages. The vast majority of
existing datasets are either unavailable to the public or are too small to be useful. So, Forum for
Information Retrieval Evaluation (FIRE) [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] will bridge the existing gap by creating reusable
corpora for Indian language summarization through this collaborative project. They provide
datasets in two major Indian languages for this task: Hindi and Gujarati. They also include an
Indian English dataset, a widely recognized dialect that can difer significantly from English
spoken elsewhere.
      </p>
      <p>
        FIRE hosted a competition task for Indian Language Summarization (ILSUM) 2022, in which
the dataset consists of articles and headline pairs from several of the country’s most prominent
newspapers. Each language receives around ≈ 10,000 in news articles. The task for each article is
to write a meaningful xfied-length summary, either extractive or abstractive. In this regard, we
examine all three Indian languages (Hindi, English, and Gujarati) provided by the organisers of
ILSUM-2022 [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. For this task, we develop a deep learning-based encoder-decoder approach for
each dataset separately. To generate an extensive summary, we implemented the
sequence-tosequence model with one layer of bidirectional long short-term memory (Bi-LSTM) on the input
text and one layer of unidirectional long short-term memory (LSTM) using global attention
on the target text. An encoder learns the features of the input text (articles) and generates a
ifxed-length vector, which is passed to the decoder to learn and generate a summary that is
relevant to the article.
      </p>
      <p>The remaining of the paper is formatted as follows. Section 2 provides a synopsis of the
related works. Section 3 presents our proposed framework for ILSUM-2022. Section 4 presents
the proposed systems discovery and analysis of the results. Finally, in Section 5, we conclude
the paper.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>
        A neural machine translator is not the same as a traditional machine translator, but it is a
vast approach to machine translator that has recently been developed Kalchbrenne et al. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
An individual neural network that can perform joint translation, usually with encoder and
decoder. To improve the performance of the basic encoder and decoder, a fixed length of text is
used as input and the decoder generates output in Bahdanau et al 2014 [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Abstractive text
summarization generates a summary of a text document based on its intrinsic characteristics and
selects the key content of the text document based on potential vocabulary. A summary of a text
document is a sequence of actual words as input text in a source text document and predicted
actual words of a sequence. For text summarization task, encoder decoder based RNN attention
model on machine translation has been established by Ramesh Nallapatti et al 2016 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Word
topic distribution of LDA has been combined to the sequence-to-sequence model to improve
abstractive sentence [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. They proposed a heuristic method that used the LDA techniques
to identify the optimal number of independent topics. Furthermore, for summarization, the
two-tiered topic model based on the pachinko allocation model (PAM) is combined with the
TextRank method [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. To capture the sparse candidate topics under that low-rank matrix
factorization model, a novel neighbourhood preserving semantic (NPS) measure was introduced.
These techniques used the topic model as an additional mechanism to improve text generation.
Nonetheless, these models have some sparseness issues and are dificult to train [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. From
another aspect text summarization is further classified into extractive and abstractive models.
Take into account the target user’s lack of background knowledge or reading ability, and propose
a linear combination of feature scores for social networks. Current text summarization research
focuses primarily on word embedding, which represents each element in some way[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ],[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ].
However, word embedding does not completely solve the polysemy problem. To address this
issue, Embeddings from Language Models (ELMOs)[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] used bidirectional LSTM to train the
language model, whereas hierarchical LSTM can grasp diferent levels of granularity information.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Proposed Model</title>
      <p>In this section, we discussed the methodology and datasets. We proposed an
encoder-decoderbased deep learning model for abstractive summarization. The encoder layer consists of
a BI-LSTM layer, which gives fixed-length features to the attention layer (as a value), and
the decoder layer. Then the decoder layer extracts the relative information, which helps in
generating better summaries. The output of the decoder layer is passed to the query vector and
concatenation layers. So, the proposed model generates multi-sentence summaries, and the
overall architecture is shown in Figure 1.</p>
      <sec id="sec-3-1">
        <title>3.1. Problem Assertion</title>
        <p>We have large text corpora of articles and task is to create a relevant short summary (descriptors)
that represents the corpora. Consider the following: the input sequence of article with D words
1, ......... comes from the vocabulary size V, and the generated output sequence is 1, ....
similar to article in meaning,  &lt;  – indicating that a summary sequence (S) is less than the
article sequence (D) from the same vocabulary.</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Data Collection</title>
        <p>
          To achieve better results, deep learning algorithms require a large text corpus to learn
discriminative features, as in our case. We used the FIRE-2022, which provides ILSUM-2022 datasets [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]
in this work. By developing reusable corpora for Indian language summarization, they hope to
ifll the current gap through this joint efort. They cover two important Indian languages in the
ifrst edition: Hindi and Gujarati, with over 350 million and 50 million speakers, respectively.
They also contain Indian English, a well-known dialect that can difer significantly from English
used elsewhere. Several of the nation’s top newspapers’ articles and headline pairs were used to
build the dataset for this task. For each language, they provide 10,000 news articles. The dataset
description is shown in Table 1. The goal is to produce an insightful fixed-length summary for
each article that is either extractive or abstractive.
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Data Preprocessing</title>
        <p>We followed two steps during the data preprocessing phase, as shown in Figure 2. First,
we transform the entire text corpus to lowercase. Second, superfluous elements such as
extra symbols {“@”, “ ∼ ”, “, ”, “′”, “$”} need to be eliminated from the text corpus. These
superfluous elements can be eliminated using regular expression matching. After preprocessing,
a cleaned text corpus has been obtained.
• Convert lowercase:- Changing a word from uppercase to lowercase (NLP to nlp).
Although words like "Book" and "book" have the same meaning when written in lower
case, the vector space model represents them as two distinct words (resulting in more
dimensions).
• Regular Expression:- Regular expressions, also known as RegEx, are string of characters
primarily used to locate or replace patterns in text.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Word embedding</title>
        <p>The importance of words depends on both their frequency and their similarity. We tested
diferent pre-trained word-to-vector files like Glove, ConceptNetNumberbatch, FastText, and
Word2vec to improve our model. In our case, Word2Vec outperformed the others. So, we have
used this pre-trained model for further tasks. The total coverage of rare words in the article
corpus is 1.88%, which is calculated by words having frequency 4 divided by the sum of total
frequencies in the corpus, and the total percentage of rare words in the article corpus is 63.63%,
which is calculated by the number of words having frequency 4 divided by the sum of total
words in the corpus. As a result, we eliminate words that appear less than four times in the text
article (frequency of words less than four). Whereas, in the summary, the total coverage of rare
words in the vocabulary is 8.26%, and the total percentage of rare words in the vocabulary is
77.37%; based upon this, we eliminate words that appear less than six times (a frequency of less
than six) throughout the summary. The above procedures are done after preprocessing steps.
These types of words are eliminated to maintain the importance of the words and the coverage
of these final words (vocabulary) in the article and summary.</p>
      </sec>
      <sec id="sec-3-5">
        <title>3.5. RNN Encoder-Decoder</title>
        <p>
          RNN has demonstrated promising results in tasks involving sequence processing, particularly
when dealing with variable-length sequences[
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. Additionally, RNN based LSTM performs
better in many tasks and is easier to train than vanilla RNN. As a result, we use an LSTM-based
RNN as encoder to produce coarse encoding[14]. The LSTM can adaptively and captively
capture dependencies of diferent time scales, which are defined as the following equations.
 =  ( . +  .ℎ− 1 +  )
 =  (. + .ℎ− 1 + )
 =  (. + .ℎ− 1 + )
′ =  (. + .ℎ− 1 + )
        </p>
        <p>′
 = .− 1 + .</p>
        <p>ℎ = . ()
  sigmoid,   tahh,&lt; . &gt; element wise multiplication.
 is the forget gate.
 is the input gate.
 is the output gate.
 is the cell stte.
ℎ is the hidden state.</p>
        <p>Where  , , ,  and , , ,  are parameter matrices. The symbols  and ℎ
stand for the corresponding input embedding vector and hidden state vector at the time step t,
respectively.</p>
        <p>The encoder’s task is to build the fixed length feature representation from the input sequence.
In this regard, recurrent based bi-directional LSTM is used. It capture both the forward and
backward relationship between the words. The forward LSTM computes hidden state
representations→(−ℎ1→,−ℎ2,.→..−ℎ ,... →−ℎ) at each word position sequentially in accordance with the current
word embedding and the previous hidden state, given a sequence of the input word embeddings
(i.e. (x1, x2, xj,... xm)]. For each word in reversed order, the backward LSTM generates hidden
state representation s− (←ℎ 1−, ←ℎ2,.−.. ←ℎ ,...− ←ℎ) (i.e., from the last word to the first ). The two diferent
categories of hidden states are
Similary, cell states are defined as
→−ℎ =   ( →,−−ℎ− 1)
− ←ℎ =   (− ,− ←ℎ− 1)
→−  =   ( →,−−− 1)
− ←  =   (− ,− ←− 1)</p>
        <p>Next, we initialize the Bi-LSTM’s states to zero vectors, with→−ℎ1 = 0 and− ←ℎ = 0 as well as
→−1 = 0 an d− ← = 0. Each word in the input sequence can be represented as a concatenated
hidden state of a forward LSTM and a backward LSTM using the notation ℎ=→[−ℎ−  ,←ℎ ]. Similarly,
indicate as =→[−  − ,←  ].</p>
        <p>We use LSTM as the decoder to generate the output summary. The encoder and decoder
constitute a basic sequence-to-sequence model. Then, we connect the encoder to the decoder,
by passing these states [ℎ,].
output (ℎ) to the attention layer. at=softmax( ℎ√︁,ℎ ℎ⊤
 ).ℎ</p>
        <p>We incorporate attention mechanism which takes the input from both encoder and decoder
model as value and query respectively. In this regard, we give encoder output (ℎ) and decoder
where at is attention output.</p>
        <p>Then the output of the attention layer and decoder layer is passed to the concatenation
layer. This concatenated output is then passed to time distribution layer, which calulates the
probability distribution for each word in the summary dictionary.</p>
        <p>=  (|1, − 1, ) =  (. + )
where  (|1, − 1, ) is the conditional probability distribution for the target word  over
all words in the vocabulary at time step i,  is the input from the previous layer,and  and
 are the learning parameters.</p>
      </sec>
      <sec id="sec-3-6">
        <title>3.6. Sequence to Sequence Model</title>
        <p>Every sequence-to-sequence model has an encoder that uses a bi-LSTM and a decoder that
uses an LSTM architecture, as shown in Figure 3. The vocabulary now includes some fresh
special tokens, such as "PAD," "EOS," and "START." Each PAD token helps to equalise the length
of each sentence to a specific length. Each sequence contains the EOS token to signal the
encoder model about the end of the statement. The start token instructs the decoder to begin
the decoding process. In this regard, we chose START and EOS from the data before our training
data, which contains words that used sequence translation. Here, the encoder’s input sequence
is represented by x, and the generated output response or sequence is represented by y.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiment and Results</title>
      <p>In this section, we discussed about the experimental setup, evaluation metric, and results.</p>
      <sec id="sec-4-1">
        <title>4.1. Experimental setting</title>
        <p>We have used tensorflow [ 15] version 2.9.1 for creating the proposed end-to-end sequence based
model. Here, encoder Bi-LSTM has hidden state dimension = 128 and decoder lstm has hidden
dimension = 256. The word embedding size = 300 is used. The proposed model will be able
to generate a machine’s own summary once we have finished training part. The proposed
model generate the summary of length = 75. After evaluating and hyper-parameter tuning, we
used rmsprop optimizer[16], sparse categorical crossentropy loss function for fast and better
convergence, epoch = 50, batch size = 32, and learning rate = 0.001 as parameter for training the
ifnal model.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Evaluation Metric</title>
        <p>We used the Recall-Oriented Understudy for Gisting Evaluation (ROGUE) [17] metric to evaluate
our model. ROUGE counts the number of overlapping lexical units to evaluate the quality of
generated summary. In this study, we use the scores like Rouge-1, Rouge-2, Rouge-3 and
Rouge4, which measure, how well the generated summaries match the actual summaries in terms of
unigrams, bigrams, trigrams and 4-grams respectively.</p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Results</title>
        <p>
          In this section, we discussed about the results obtained on validation and test datasets provided
by ILSUM-2022 [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. The produced results by proposed model on validation datasets {Hindi,
English, and Gujarati} for Rouge-1 metric is shown in Table 2. Here, the proposed model
used the embedding from the pre-trained model directly without updating those values during
back-propagation (trainable=False) and overall lower parameters were trained in end-to-end
network as shown in Figure 1. The proposed model produced results on test data {English} is
shown in Table 3. The final results are obtained based on training the embedding during the
back-propagation procedure (trainable = True). The evaluation metric such as precision, recall
and F1-score has been evaluated for each Rouge-1 to Rouge-4. Rouge-1 is evaluated on 1-gram
whereas Rouge-4 is evaluated on 4-gram , and so on. So, on increasing the n-gram from one to
four, Rouge is decreasing for each performance metric. Our proposed model perform better for
Rouge-1.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and Future work</title>
      <p>We extend the sequence-to-sequence framework for abstractive text summarizers by presenting
a successful method for English-to-English text summarization using Bi-LSTM encoding and
LSTM decoding layer. The foundation of our model is a straightforward encoder-decoder
model with an attention mechanism. Extensive testing on the ILSUM-2022 (English dataset)
demonstrates that our model generates state-of-the-art results.</p>
      <p>In our upcoming work, we will intend to concentrate on how to balance precision and recall to
further improve F1 performance by automatically choosing dynamic decoding length based on
deep learning.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>This first author would want to acknowledge the Ministry of Education (MOE), Government of
India for financial support during the research work through the Rajiv Gandhi fellowship Ph.D
scheme (UGC) for computer science &amp; engineering.
phrase representations using RNN encoder-decoder for statistical machine translation,
CoRR abs/1406.1078 (2014). URL: http://arxiv.org/abs/1406.1078. arXiv:1406.1078.
[14] J. Chung, C. Gulcehre, K. Cho, Y. Bengio, Empirical evaluation of gated recurrent neural
networks on sequence modeling, arXiv preprint arXiv:1412.3555 (2014).
[15] M. Abadi, A. Agarwal, P. Barham, E. Brevdo, Z. Chen, C. Citro, G. S. Corrado, A. Davis,
J. Dean, M. Devin, S. Ghemawat, I. Goodfellow, A. Harp, G. Irving, M. Isard, Y. Jia, R.
Jozefowicz, L. Kaiser, M. Kudlur, J. Levenberg, D. Mané, R. Monga, S. Moore, D. Murray,
C. Olah, M. Schuster, J. Shlens, B. Steiner, I. Sutskever, K. Talwar, P. Tucker, V.
Vanhoucke, V. Vasudevan, F. Viégas, O. Vinyals, P. Warden, M. Wattenberg, M. Wicke, Y. Yu,
X. Zheng, TensorFlow: Large-scale machine learning on heterogeneous systems, 2015.</p>
      <p>URL: https://www.tensorflow.org/, software available from tensorflow.org.
[16] O. Wichrowska, N. Maheswaranathan, M. W. Hofman, S. G. Colmenarejo, M. Denil,
N. Freitas, J. Sohl-Dickstein, Learned optimizers that scale and generalize, in: International
Conference on Machine Learning, PMLR, 2017, pp. 3751–3760.
[17] F. Liu, Y. Liu, Exploring correlation between rouge and human evaluation on meeting
summaries, IEEE Transactions on Audio, Speech, and Language Processing 18 (2009)
187–196.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>W. S.</given-names>
            <surname>El-Kassas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. R.</given-names>
            <surname>Salama</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. A.</given-names>
            <surname>Rafea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. K.</given-names>
            <surname>Mohamed</surname>
          </string-name>
          ,
          <article-title>Automatic text summarization: A comprehensive survey</article-title>
          ,
          <source>Expert Systems with Applications</source>
          <volume>165</volume>
          (
          <year>2021</year>
          )
          <fpage>113679</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Satapara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Modha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Modha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mehta</surname>
          </string-name>
          ,
          <article-title>Fire 2022 ilsum track: Indian language summarization</article-title>
          ,
          <source>in: Proceedings of the 14th Forum for Information Retrieval Evaluation</source>
          ,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>S.</given-names>
            <surname>Satapara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Modha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Modha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mehta</surname>
          </string-name>
          ,
          <article-title>Findings of the first shared task on indian language summarization (ilsum): Approaches, challenges and the path ahead</article-title>
          ,
          <source>in: Working Notes of FIRE 2022 - Forum for Information Retrieval Evaluation</source>
          , Kolkata, India, December 9-
          <issue>13</issue>
          ,
          <year>2022</year>
          , CEUR Workshop Proceedings, CEUR-WS.org,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>N.</given-names>
            <surname>Kalchbrenner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Blunsom</surname>
          </string-name>
          ,
          <article-title>Recurrent continuous translation models</article-title>
          ,
          <source>in: Proceedings of the 2013 conference on empirical methods in natural language processing</source>
          ,
          <year>2013</year>
          , pp.
          <fpage>1700</fpage>
          -
          <lpage>1709</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>D.</given-names>
            <surname>Bahdanau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y. Bengio,</surname>
          </string-name>
          <article-title>Neural machine translation by jointly learning to align and translate</article-title>
          ,
          <source>arXiv preprint arXiv:1409.0473</source>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>R.</given-names>
            <surname>Nallapati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Gulcehre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Xiang</surname>
          </string-name>
          , et al.,
          <article-title>Abstractive text summarization using sequence-to-sequence rnns and beyond</article-title>
          ,
          <source>arXiv preprint arXiv:1602.06023</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>H.-X.</given-names>
            <surname>Pan</surname>
          </string-name>
          , H. Liu,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <article-title>A sequence-to-sequence text summarization model with topic based attention mechanism</article-title>
          ,
          <source>in: International Conference on Web Information Systems and Applications</source>
          , Springer,
          <year>2019</year>
          , pp.
          <fpage>285</fpage>
          -
          <lpage>297</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>C.-Y.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <surname>E. Hovy,</surname>
          </string-name>
          <article-title>The automated acquisition of topic signatures for text summarization</article-title>
          ,
          <source>in: COLING 2000 Volume 1: The 18th International Conference on Computational Linguistics</source>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Tu</surname>
          </string-name>
          ,
          <article-title>Exploiting sparse topics mining for temporal event summarization</article-title>
          ,
          <source>in: 2020 IEEE 5th International Conference on Image, Vision and Computing (ICIVC)</source>
          , IEEE,
          <year>2020</year>
          , pp.
          <fpage>322</fpage>
          -
          <lpage>331</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. Van</given-names>
            <surname>Merriënboer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Gulcehre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Bahdanau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bougares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schwenk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bengio</surname>
          </string-name>
          ,
          <article-title>Learning phrase representations using rnn encoder-decoder for statistical machine translation</article-title>
          ,
          <source>arXiv preprint arXiv:1406.1078</source>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>H.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Niu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Improving multi-turn dialogue modelling with utterance rewriter</article-title>
          , arXiv preprint arXiv:
          <year>1906</year>
          .
          <volume>07004</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M. E.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Neumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Iyyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gardner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <article-title>Deep contextualized word representations</article-title>
          , CoRR abs/
          <year>1802</year>
          .05365 (
          <year>2018</year>
          ). URL: http://arxiv.org/ abs/
          <year>1802</year>
          .05365. arXiv:
          <year>1802</year>
          .05365.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. van Merrienboer</given-names>
            ,
            <surname>Ç. Gülçehre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bougares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schwenk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bengio</surname>
          </string-name>
          , Learning
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>