Transformer Model for Human-Like Summarization
Transformer Model for Human-Like Summarization
Abstract
In recent times, extracting valuable information from large text is making sig-
nificant progress. Especially in the current era of social media, people expect
quick bites of information. Automatic text summarization seeks to tackle this
by slimming large texts down into more manageable summaries. This impor-
tant research area can aid in decision-making by digging out salient content
from large text. With the progress in deep learning models, significant work in
language models has emerged. The encoder-decoder framework in deep learn-
ing has become the central approach for automatic text summarization. This
work leverages transformer-based BART model for human-like summarization
which is an open-ended problem with many challenges. On training and fine-
tuning the encoder-decoder model, it is tested with diverse sample articles and
the quality of summaries of diverse samples is assessed based on human evalu-
ation parameters. Further, the finetuned model performance is compared with
the baseline pretrained model based on evaluation metrics like ROUGE score
and BERTScore. Additionally, domain adaptation of the model is required for
improved performance of abstractive summarization of dialogues between inter-
locutors. On investigating, the above popular evaluation metrics are found to be
insensitive to factual errors. Further investigation of the summaries generated
by finetuned model is done using the contemporary evaluation metrics of factual
consistency like WeCheck and SummaC. Empirical results on BBC News articles
1
highlight that the gold standard summaries written by humans are more factually
consistent by 17% than the abstractive summaries generated by finetuned model.
1 Introduction
Enormous amount of data is available in unstructured format in the internet age as
compared to structured data. Such data is generated on a daily basis like online news
articles, research papers, e-mail messages, e-books to name a few. With the rapid
rise in web text data, extracting semantic value from long text is a vitally important
research. The sequence-to-sequence(seq2seq) framework in deep learning has become
the predominant approach for automatic text summarization. The end-to-end training
in seq2seq framework learns the semantic mapping between the source documents and
its corresponding summaries. Despite huge advances in automatic text summarization
models, it is still challenging to generate abstractive summaries of good quality.
Humans summarize written text by first understanding the content of the docu-
ment. The next step is to identify most important or salient information. Finally, this
information is reworded in a compressed form. Hence, for a synopsis identify impor-
tant information, delete non-essential extraneous information and then, rewrite the
remaining information to make it more general and more compact. It is important to
comprehend the content of the document to get the central theme and summarize it.
There exist two overarching approaches for text summarization. Extractive sum-
marization directly copies content straight from the input text to create synopsis. The
model may copy whole sentences or copy words/phrases. One can think of it as using
a highlighter to point out the important parts of the document. This is the approach
employed by many classical summarization works, especially before the advent of neu-
ral networks. Abstractive summarization creates a summary without being limited to
only words and sentences within the source document. Often this is done by generat-
ing a summary one word at a time by picking a word from a set vocabulary, until a
whole summary has been created. One can think of it as how a human might write a
summary in their own words. This method allows for more compression since lengthy
sentences can be reworded into simpler expressions [1]. Neural abstractive summariza-
tion has reached novel heights, especially with the progress in deep learning models.
End-to-end abstractive summarization models must perform two tasks implicitly at the
same time. 1) Content selection: salient sentences or words from the source text must
be selected. 2) Surface realization: a summary must be generated which successfully
merges the selected content together [1].
This paper addresses the following questions. Q1: Does the baseline pre-trained
BART-LARGE-CNN model when finetuned on a small dataset boost the abstractive
summarization performance? Q2: If the input is much diverse from the training dataset
say dialogues between interloculators, will domain adaptation give the enhanced per-
formance on abstractive summarization? Q3: Is there an alignment or correlation
2
between the popular evaluation metrics like ROUGE score, BERTScore and the human
evaluation of the synopsis generated of diverse articles? Do the existing evaluation
metrics capture the factual errors? If not, How is the factual consistency of the gen-
erated synopsis measured and is it correlated to the human evaluation? Q4: Are the
summaries generated by the finetuned model factually consistent in comparison to the
corresponding gold standard summaries written by humans?
Fig. 1 depicts the categories of document summarization techniques which can span
from single documents to multiple documents [2] including only text or text augmented
with multimedia content like images, audio and video. The objective of summarization
spans from generic to query-specific. The output of the task is purely extractive if
it extracts salient phrases, sentences from the source to create the abridged version.
Alternatively, with the introduction of novel words and re-phrasing, the approach is
more human-like or abstractive.
Fig. 2 depicts the five key elements of the conceptual framework for abstrac-
tive human-like summarization [2]. The principal component is the encoder-decoder
3
framework which is further finetuned on custom dataset with specific training strate-
gies. Standard metrics like ROUGE score and BertScore are used for evaluating the
performance of the encoder-decoder models.
Fig. 3 depicts the structure of simple seq2seq model based on LSTM in the pre-
transformer era. In the pre-transformer era, the encoder-decoder architecture includes
RNN, LSTM, GRU adept for processing sequential data. However, they fail to handle
long range dependencies. Further, due to sequential processing of input, the training
time and inference time is longer while handling long range dependencies.
4
ability to capture context and relationships within the data. This work leverages the
transformer-based BART model for abstractive summarization.
Fig. 5 depicts the timeline of NLP from BOW up to the attention-based Trans-
formers in 2017. In the pre-transformers era, the Bag of Words scores were improved
in the TF-IDF where frequently occurring words were assigned low scores. This was
further replaced by word embeddings like word2vec, glove, fasttext. Recurrent Neu-
ral Networks was more contextual with further advances like Bidirectional RNNs and
encoder-decoder RNNs. LSTMs were further preferred for sequential input to capture
long range dependencies [3].
Fig. 6 gives a glimpse of the transformer family alongwith the timeline. The atten-
tion mechanism in transformers computes contextual word embeddings and is able to
capture the semantic alignment between the input and the output [4]. The encoder only
models include BERT [5] and its variations like ALBERT, RoBERTa, DistilBERT,
XLM-RoBERTa, ELECTRA. The decoder only models its GPT and its improvements.
The encoder-decoder transformer models include pegasus, BART, T5.
5
each made up of layers containing a multi-head self-attention mechanism and a feed-
forward neural network. The encoder is responsible to give the context vector that
contains information of the input sequences. Such a vector gives the summary of the
input. The objective to form a context vector is to get a numerical representation such
that ideally there is no loss of information. Decoder generates the output sequence with
the help of the context vector [4]. The attention mechanism in transformers ranges
from self-attention in the encoder as well as the decoder to the cross-attention from
the encoder to the decoder.
The input is vectorized in the embedding layer. Positional Encoding layer tracks
the relative position of words such that the relationship between words and the overall
context and semantics is better captured. The number of encoders in the Encoder
Layer can vary from 6 to 12 depending on the complexity of the transformer model.
The encoders are stacked one over the other in the Encoder layer. The same pattern is
duplicated in the decoder stack. Each encoder/decoder layer has self-attention which
is looped several times which is called multi-head attention. This iterative multi-head
attention teamed up with the feed-forward layer makes the transformer very powerful.
It is able to process long sequences of text and capture the context as well as the
semantics of the text in a very effective manner [4]. The decoder output is fed to a
softmax layer through a linear layer for a probability distribution.
6
supervising learning of text ranging from text classification, sentiment analysis, sum-
marization, translation to question answering, the model could have either only
encoder, or only decoder. For some tasks such as translation and summarization, the
encoder-decoder model is preferred. BART is one such encoder-decoder sequence to
sequence model which is also applied for comprehension tasks [6]. One example is
Bart-Large-CNN model wherein the base BART model is trained on CNN Daily Mail
which is a huge dataset of text-summary pairings. A very popular transformer model
which has only encoder is BERT [5]. It is commonly used for text classification and
sentiment analysis. GPT is another transformer model which is having only decoder
and popularly used for text generation.
BART is a type of transformer which has a bidirectional encoder and an autoregres-
sive decoder. Hence, justifiably BART stands for Bidirectional and Auto Regressive
Transformers. This sequence-to-sequence model has BERT-like encoder and decoder-
like GPT. Depending on the number of layers in the encoder stack as well as the
decoder stack, the complexity of the model can be varied. Hence, the base model
can range from 6 layers to 12 layers in the encoder/decoder stack. Also, the huge
labelled dataset for pre-training, can lead to multiple versions of the model ranging
from BART-LARGE-CNN to BART-SAMSUM. The pretraining objective is denois-
ing where the original sentences are re-shuffled alongwith replacement of text spans
with a single mask token [6].
3 Related Work
The recent trend is the use of deep neural networks for the task of summarization which
is abstractive. Basic deep sequence-to-sequence models have the problem of long-term
dependencies in long sequences. Convolutional neural networks (CNNs) have met great
success in abstractive summarization [7], [8] but fail to tackle long documents. One
approach is to augment attention mechanism which would enable the encoder to focus
only on the most salient parts of text. This is an efficient way of memory usage. The
encoder-decoder attention-based transformer models like BART [6] from Facebook AI,
Pegasus [9] and T5 [10] from Google are the state-of-the-art models for abstractive
summarization. Another approach is to leverage Pointer Generator networks which is
a solution to the problem of inaccurate factual details and out-of-vocabulary words
problem [11].As discussed in [12], the encoder-decoder model is based on a double
attention pointer network (DAPT). In DAPT, the self-attention mechanism make
the model apt for long-term dependencies in long sequences and the pointer network
generates accurate summaries. In [12], the coverage mechanism is augmented over
the double attention pointer network to avoid duplication by keeping track of what
has been generated in the summary. Generative adversarial networks [13] have been
used in many applications with promising results. Previous research has shown the
effectiveness of generative adversarial networks in text summarization. Researchers
in [14] propose a novel Hierarchical Human-like deep neural network for ATS (HH-
ATS), inspired by the process of how humans comprehend an article and write the
corresponding summary. Specifically, this hybrid model consists of dual discrimina-
tor generative adversarial network, attention-based knowledge-enhanced module and
7
a multitask learning module. The human reading cognition consists of rough reading,
active reading and postediting. The novel Hierarchical Human-like deep neural network
for ATS (HH-ATS) apes the three phases of human reading cognition. Sequence-to-
Sequence models with various deeplearning-based mechanisms like attention, coverage
still suffer from exposure-bias problem, loss/evaluation mismatch, and lack of general-
ization. These problems are solved by leveraging Reinforcement Learning in [15]-[17].
Despite all the advances in deep learning and the recent trends in NLP task, assess-
ment of the summaries based on human evaluation parameters like factual consistency
and faithfulness of the generated summary to the source text is a challenging task.
This work investigates the performance of the BART model for human-like abstrac-
tive summarization which is a gap in related work. It focusses on training and
fine-tuning the BART model on BBC News Dataset, to generate concise summaries.
The evaluation metrics used include ROUGE Score, BERTScore, and FactCC, to
measure the quality and factual consistency of the generated summaries.
4 Experimental Setup
4.1 Dataset
The transformer-based BART-LARGE-CNN model is pre-trained on huge corpus of
CNN/DailyMail Dataset. It consists of more than 300k unique English news articles
penned by authors at CNN and the Daily Mail. This dataset includes article-highlights
pairings. The dataset is further split into huge amount of training data and equivalent
portion of validation and test data. Post pre-training, the BART-LARGE-CNN model
is finetuned with BBC News Dataset. It comprises of BBC News articles which are
classified as business articles, entertainment articles, political articles, sports articles
and technical articles. Each category consists of article-summary pairings.
The dataset is available at [Link]
news/data. Table I illustrates the dataset statistics of BBC News Dataset. This dataset
has news documents with it’s corresponding synopsis. Table II illustrates the cate-
gorization of the news articles into business articles, entertainment articles, political
articles, sports articles and technical articles. The dataset has a fair distribution of the
different categories of news articles. Thus, there is a good balance in the categorization
of documents.
8
Table 2 BBC NEWS Dataset Description Of 2225 Documents
The maximum length is set for the output and input sequences. Finally, the
predictions are generated and the results of the trained model are evaluated.
The performance metrics are evaluated for the finetuned BART-LARGE-CNN
model. The finetuned BART-LARGE-CNN model is tested with samples and the
generated summaries are evaluated.
The quality of the summary generated is evaluated with ROUGE score [18] as well
as BERTScore [19].
5 Empirical Results
The ‘facebook/bart-large-cnn’ pre-trained model from huggingface is used in the exper-
iments. The Bart tokenizer is used for the encoding which takes into consideration
the position of the words in the sentence. The Bart tokenizer is built from the GPT-
2 tokenizer. The summaries generated were fluent. Hence, the summaries generated
by the BART pre-trained model demonstrating the effectiveness of the BART model
for text understanding. There was significant improvement in the ROUGE score after
9
fine-tuning the pre-trained BART-LARGE-CNN model with the BBC News Dataset.
The ROUGE scores for finetuned BART-LARGE-CNN during training for 10 epochs
are compiled in Table 3.
10
Table 4 Fine Tuning Results of BERTScore Upto 10 Epochs of Bart-Large-CNN.
reference summary is the summary manually written by a human and hence is coher-
ent, salient, accurate without deviating from the source text. It captures the semantics
of the document. ROUGE score [18] has many variations ranging from ROUGE1,
ROUGE2, ROUGEL to ROUGELsum. ROUGE1 indicates 1-gram overlap between
the predicted summary and the reference summary while ROUGE2 indicates 2-gram
overlap between the two. ROUGEL is the overlap of the longest subsequence between
the generated summary and the reference summary. However, since ROUGE score fol-
lows n-gram matching or overlap, it falls short of capturing the semantics of the text.
Another evaluation metric which captures the semantics and the similarity between
the generated summary and the reference summary is BERTScore [19]. It can be fur-
ther split into precision, recall and F1-score. Hence, BERTScore is more contextual
and hence is an improvised evaluation metric. In addition to the evaluation metrics
ROUGE score and BERTScore, the human evaluation provides further validation.
11
Table 5 Input Samples For Testing.
Input Type
Sample1 Technical Article
Sample2 Article with many numeric facts
Sample3 Article with flow (cause, effect, solution)
Sample4 Sports News Article
Sample5 Health News Article
Sample6 Political News Article
Sample7 Dialogue between two interlocutors
Table 6 lists the human evaluation parameters for assessment of the generated sum-
Parameter Meaning
Coherence Logical/clear
Factual Consistency/Accuracy Correctness
Duplication Redundancy/Repetition
Saliency Main points coverage
Fluency Grammatical Correctness
Faithfulness Deviation From source
maries by the deep learning model. The human evaluation based on the parameters
specified in Table 6 evaluates the quality of the summaries generated. The human eval-
uation parameters range from coherence, saliency, fluency, faithfulness to accuracy.
The fine-tuned BART-LARGE-CNN model is evaluated on the testing samples. The
predicted summaries are used to calculate the ROUGE score [18] and the BERTScore
[19].
Table 7 compares the performance metrics between the pretrained model and
the finetuned model for Sample1 clearly showing an improvement in the quality of
summaries generated by the finetuned model.
12
Table 8 ROUGE score and BERTScore for Sample2.
Table 8 compares the performance metrics between the pretrained model and the
finetuned model for Sample2 which is an article with many numeric facts. The results
show a much improved performance with the finetuned model.
Table 9 compares the performance metrics between the pretrained model and the
finetuned model for Sample3 which is an article with a flow. The finetuned results
show no improvement when tested with Sample3 indicating that the BART model has
to be finetuned further with articles with a reasoning.
Table 10, Table 11 and Table 12 show an improvement in the quality of summaries
generated by the finetuned model for Sample4, Sample5 and Sample6 respectively.
Table 14 compares the performance metrics between the pretrained model and the
finetuned model for Sample7 which is a dialogue between two interlocutors. It was
13
Table 11 ROUGE score and BERTScore for Sample5.
observed that the model finetuned on BBC News gave poor performance on testing
with Sample7. Since Sample7 is a conversation between two people, domain adapta-
tion was required by training the model on new dataset SAMSum. It is available on
huggingface for research purposes which consists of conversations between two or more
interlocutors and their respective summaries in third person. The empirical results on
finetuning BART-LARGE-CNN on SAMSum dataset is displayed in Table 13.
After the domain adaptation of the model with Samsum dataset, the model shows
higher ROUGE scores and BERTScore on testing with Sample7 as visible in Table 14.
Table 15 below depicts the human evaluation by 5 raters with Cohen-kappa-score
of 0.75 for each sample manually evaluated. The human evaluators are briefed on
the human evaluation parameters so that they can carry out the analysis of different
samples. Thus, the model-generated synopsis of above seven diverse articles is assessed,
based on human evaluation parameters like coherence, factual consistency, duplication,
saliency, fluency, faithfulness. The human score for each of the sample is evaluated
by giving a score of 1 if the evaluation of ’yes’ or ’no’ matches the meaning of the
parameter else it is given a score of 0. The average score is assigned as the human
14
Table 14 ROUGE score and BERTScore for Sample7.
score for each of the sample. Table 16 below depicts the comparison of popular metrics
like ROUGEL, BERTScoreF1-score with the human score computed for the model
generated synopsis of each of the seven samples.
15
Table 17 Comparison of Factual Consistency Evaluation Metrics like WeCheck and SummaC with
the HumanScore of model generated synopsis.
Table 18 The Pearson correlation of ROUGEL, BERTScoreF1, and Factual Consistency Metrics
like WeCheck, SummaC with HumanScore.
One of the key findings of this work was that existing evaluation metrics like
ROUGE score and BERTScore fail to capture the factual inconsistency in the synop-
sis generated in terms of both factual accuracy and deviation from the source text.
Though BERTScore is more semantic than ROUGE score which is based on n-gram
overlap, it is still not sensitive to factual errors and fails to capture factual incon-
sistency in the synopsis generated. This has been validated by manual evaluation of
the generated synopsis based on human evaluation parameters. Hence, contemporary
metrics are investigated which capture the factual consistency of the text to check
whether the synopsis generated is faithful to the source text.
Table 19 The average ROUGEL score and BERTScoreF1-score for 100 articles of
BBC News Dataset with Average Length of Summaries Generated.
16
Table 20 The Average Factual Consistency Metrics for model-generated synopsis of 100 articles
of BBC News Dataset in comparison with the gold standard summaries written by humans.
The metrics analysed for factual consistency include WeCheck [22], and Sum-
maC[23]. WeCheck [22] is a weakly supervised metric model trained with the real
generated text rather than synthetic text. WeCheck framework consists of noise-aware
fine-tuning and weak annotation. Thus, WeCheck is a factual consistency metric
trained from weakly annotated samples. SummaC [23] is a NLI-based metric for sum-
mary inconsistency detection. It is further forked into the zero-short model and the
model with the convolution layer. It combines sentence-level entailment scores for the
final factual consistency score. Since SummaC [23] captures the factual consistency
score at the sentence-level rather than document level, this contemporary metric has
empirically proved to give best results for factual consistency score.
Further experiments are conducted with 100 articles of BBC News dataset
described in Section 4.1. Table 19 above gives the mean value of the ROUGE score and
BERTScore for 100 BBC News Summaries generated by the finetuned BART model.
The scores are computed by comparing the model generated summaries with the gold
standard summaries written by humans. Table 19 below also depicts the average length
in tokens of summaries generated in comparison with human summaries.
Table 20 above displays the average summarization performance metrics for factual
consistency of model-generated synopsis of 100 articles of BBC News dataset in com-
parison with corresponding gold standard summaries written by humans. It depicts
the mean value of the WeCheck score, SummaCzs , and SummaCconv scores for 100
BBC News Summaries generated by the finetuned BART model.
17
salient and coherent. This was based on the human evaluation as per the parameters
listed in Table 6. However, for some samples, the generated summary had factual
errors and deviated from the source text on human evaluation. For Sample2 which is
an article with many numerical facts, the summary generated by the finetuned model
had some factual errors and hence inaccurate. Therefore, it deviated from the source
text. For sample3 which is a article with a flow starting with a problem and ending in
a solution, the summary generated by the finetuned model deviated from the source
text and hence not faithful to the source text. For sample4 which is a sports news
article, the summary generated by the finetuned model did not include all the salient
points of the sports news article.
On testing with Sample7 which is a dialogue between two interlocutors, the evalua-
tion metrics like ROUGE score and BERTScore showed a poor score in comparison to
the baseline pretrained model. For domain adaptation, the pretrained model was fine-
tuned with SAMSum dataset with consists of more than 16k tuples of conversations.
Each tuple of the dataset contains conversations between two or more interlocutors
and their corresponding summaries in third person. Further on testing this model fine-
tuned on SAMSum dataset with Sample7, there was a much boosted performance with
higher ROUGE score and BERTScore. However, the summary in third person was
found to be fluent, free of grammatical errors, devoid of duplication, salient and coher-
ent but with some factual errors and unfaithful on human evaluation. This attempts
to answer Q2 where domain adaptation give the boosted performance on abstractive
summarization for dialogues between interloculators as input.
The correlation measures indicate a low and negative correlation between the
human score and popular metrics like ROUGEL and BERTScoreF1-score. This sug-
gests that popular metrics like ROUGE and BERTScore are not in alignment with
human evaluation and fails to capture factual consistency and faithfulness of the sum-
mary. This attempts to answer Q3 where in for some samples, inspite of enhanced
ROUGE score and BERTScore, the synopsis deviates from the source text and con-
tains factual errors. Hence, it is not in alignment with the human evaluation which
identifies the factual inconsistency. Thus, it is confirmed that popular metrics of sum-
marization like ROUGE score, BERTScore are insensitive to factual errors and any
deviation from the source text. Hence, contemporary metrics for evaluating factual
inconsistency in the synopsis like WeCheck and SummaC are investigated. They are
found to have a strong and positive correlation with the human score of the model
generated summaries of the seven samples. This correlation is found to be statistically
significant.
The abstractive summaries of 100 BBC News articles generated by finetuned model
are evaluated using contemporary metrics for factual consistency such as WeCheck
and SummaC as well as popular metrics like ROUGE and BERTScore. The BBC News
Dataset contains the gold standard summaries written by humans for the 100 BBC
News articles. Using contemporary metrics like WeCheck and SummaC, the factual
consistency score for the gold standard summaries written by humans are evaluated.
This attempts to answer Q4 as the empirical results highlight that abstractive sum-
maries generated by the finetuned BART model are not as factually consistent as
the gold standard summaries written by humans. This is exhibited in Table 20 above
18
based on the factual consistency metrics like Wecheck and SummaC. In comparison
with the gold standard summaries written by humans, there is a decrease of 9% in
the WeCheck score, 27% in the SummaCzs score and 14% in the SummaCconv score.
Taking average of all the factual consistency metric scores, it is observed that there
is a decrease of 17% in the factual consistency evaluation metric of the BART gener-
ated abstractive summaries in comparison to the gold standard summaries written by
humans.
The study addresses the challenges of factual inconsistency and domain adapta-
tion, suggesting that existing evaluation metrics are inadequate in capturing factual
errors and leveraging contemporary metrics for factual consistency. The study high-
lights that factual errors and deviations from the source text remain significant issues
in the abstractive summaries generated by the finetuned deep learning model in com-
parison to the human summaries. The study addresses challenges related to factual
inconsistency and domain adaptation.
7 Conclusion
Transformer-based deeplearning models are the SOTA for various NLP tasks. This
paper investigates the performance of the SOTA encoder-decoder BART model for
the summarization task. The empirical details shows good performance with fine-
tuned approach as is evident by the ROUGE score and BERTScore. As against the
pre-trained model, the finetuned model shows improved performance metrics with
newspaper articles. However, domain adaptation was required for dialogues between
interlocutors. However, some problems of factual inconsistency and deviation from
the source still persisted inspite of good ROUGE score and BERTScore in case of
some sample articles. Human evaluation of the generated summaries were based on
parameters such as coherence, factual consistency, duplication, saliency, fluency and
faithfulness. Based on the human evaluation metrics, the quality of summaries was
assessed. The summaries were found to be fluent, free of grammatical errors, devoid
of duplication, salient and coherent. However, for some samples it deviated from the
source text and hence not faithful to the source text. This factual inconsistency of the
predicted summaries would hamper the usability of the deeplearning summarization
systems especially in sensitive domains like medical, military operations, news media
as it would be misleading with serious consequences. Design of innovative evaluation
metrics which capture the factual accuracy and alignment of the generated synop-
sis with source text is an active research area since the existing evaluation metrics
are insensitive to factual errors. Contemporary evaluation metrics for factual consis-
tency like WeCheck and SummaC highlight the factual inconsistency in the abstractive
summaries generated by the finetuned BART model.
The authors have no competing interests to declare that are relevant to the content
of this article.
8 Declarations
Ethical Approval : not applicable.
Funding : No funding was received for conducting this study.
19
Availability of data and materials : The dataset is available at [Link]
com/antoniobap/datamining-bbc-news/data
References
[1] T. Young, D. Hazarika, S. Poria and E. Cambria : Recent Trends in Deep Learn-
ing Based Natural Language Processing [Review Article], in IEEE Computational
Intelligence Magazine, vol. 13, no. 3, pp. 55-75 [Link]
2840738 (2018)
[7] Liu, Y., Luo, Z., Zhu, and K.Q.: Controlling length in abstractive summariza-
tion using a convolutional neural network, In: Proc. 2018 Conf. Empir. Methods
[Link]. Process. EMNLP 2018, pp. 4110–4119 [Link]
D18-1444 (2020)
[8] S. Narayan, S. B. Cohen, and M. Lapata: “Don’t give me the details, just the
summary! Topic-aware convolutional neural networks for extreme summarization,
in Proceedings of the Conference on Empirical Methods in Natural Language
Processing (EMNLP) [Link] (2018)
[9] Zhang, J., Zhao, Y., Saleh, M., Liu, P.J. : PEGASUS: pre-training with extracted
gap-sentences for abstractive summarization, Int. Conf. Mach. Learn.11328–11339
20
(2020)
[10] Raffel, C., Shazeer, N., Roberts, A., Lee, K., Narang, S., Matena, M., Zhou, Y.,
Li, W., Liu, and P.J. : Exploring the Limits of Transfer Learning with a Unified
Text-to-Text Transformer. arXiv Prepr. arXiv1910.10683 (2019)
[12] Z. Li, Z. Peng, S. Tang, C. Zhang and H. Ma: Text Summarization Method Based
on Double Attention Pointer Network, in IEEE Access, vol. 8, pp. 11279-11288
[Link] (2020)
[14] M. Yang, C. Li, Y. Shen, Q. Wu, Z. Zhao and X. Chen: Hierarchical Human-Like
Deep Neural Networks for Abstractive Text Summarization, in IEEE Transactions
on Neural Networks and Learning Systems, vol. 32, no. 6, pp. 2744-2757 https:
//doi:10.1109/TNNLS.2020.3008037 (2021)
[16] H. Jang and W. Kim : Reinforced Abstractive Text Summarization With Seman-
tic Added Reward, in IEEE Access, vol. 9, pp. 103804-103810, [Link]
ACCESS.2021.3097087 (2021)
[20] Yuanjie Lyu, Chen Zhu, Tong Xu, Zikai Yin, and Enhong Chen: Faithful
abstractive summarization via fact-aware consistency-constrained transformer. In
21
Proceedings of the 31st ACM International Conference on Information and Knowl-
edge Management, CIKM ’22, page 1410–1419, New York, NY, USA. Association
for Computing Machinery (2022)
[21] Alex Wang, Kyunghyun Cho,and Mike Lewis : Asking and Answering Ques-
tions to Evaluate the Factual Consistency of Summaries (2020). [Link]
10.48550/arXiv.2004.04228
[22] Wenhao Wu, Wei Li, Xinyan Xiao, Jiachen Liu, Sujian Li, and Yajuan Lv :
WeCheck: Strong Factual Consistency Checker via Weakly Supervised Learning
(2023). [Link]
[23] Philippe Laban, Tobias Schnabel, Paul N. Bennett, and Marti A. : SummaC: Re-
Visiting NLI-based Models for Inconsistency Detection in Summarization (2021).
[Link]
22