Answers Unite! Unsupervised Metrics for Reinforced Summarization Models

Thomas Scialom, Sylvain Lamprier, Benjamin Piwowarski, Jacopo Staiano

Introduction

Summarization systems aim at generating relevant and informative summaries given a variable-length text as input. They can be roughly divided under two main categories, those adopting an extractive approach, i.e. identifying the most informative pieces from the input text and concatenating them to form the output summary; and those producing abstractive summaries, i.e. generating an output text whose tokens are not necessarily present in the input text.

While closer to human summarization, abstractive summarization is a much harder task and the need for faithful evaluation metrics is crucial to measure and drive the progress of such systems. The standard for evaluation of summarization systems is ROUGE Lin (2004): this metric can be considered as an adaptation of BLEU Papineni et al. (2002), a scoring method for evaluation of machine translation systems; both based on n-gram co-occurrences, the latter favors precision while the former emphasizes recall.

Recent research works Paulus et al. (2017); Pasunuru and Bansal (2018); Arumae and Liu (2019) have proposed to use evaluation metrics – and ROUGE in particular – to learn the model parameters through Reinforcement Learning (RL) techniques. This makes the choice of a good evaluation metric even more important. Unfortunately, ROUGE is known to incur several problems: in particular, its poor accounting for fluency and readability of the generated abstracts, as well as its bias towards lexical similarity Ng and Abrecht (2015). To emphasize the latter point, since ROUGE evaluates a summary against given human references, summarization models incur the risk of being unfairly penalized: a high quality summary might still have very few tokens/n-grams in common with the reference it is evaluated against.

In this work, we propose to overcome n-gram matching based metrics, such as ROUGE, by developing metrics which are better predictors of the quality of summaries. The contributions of this paper can be summarized as follows:

Extending recent works Eyal et al. (2019); Chen et al. (2018), we introduce new metrics, based on Question Answering, that do not require human annotations.

We report a quantitative comparison of various summarization metrics, based on correlations with human assessments.

We leverage the accuracy of the proposed metrics in several reinforcement learning schemes for summarization, including two unsupervised settings: in-domain (raw texts from the target documents) and out-of-domain (raw texts from another document collection).

Besides a quantitative evaluation of the generated summarizes, we qualitatively evaluate the performances of the different approaches through human assessment.

Our main results can be summarized as follows:

We show that fitting human judgments from carefully chosen measures allows one to successfully train a reinforcement learning-based model, improving over the state-of-the-art (in terms of ROUGE and human assessments).

we show that dropping the requirement for human-generated reference summaries, as enabled by the proposed metrics, allows to leverage texts in a self-supervised manner and brings clear benefits in terms of performance.

Section 2 introduces the metrics. Section 3 reviews related summarization systems and presents our proposed approaches. Section 4 presents our experimental results and discussions.

Evaluation Metrics

This section first describes our selection of existing summarization metrics and introduces our proposals. Then, we quantitatively compare them for abstractive summarization. For a comprehensive list of evaluation metrics, we refer the reader to Liu et al. (2016).

Automated summarization started with the development of extractive text summarization models. Many unsupervised models, that aim at computing a score between a sentence and document(s) were developed – the score attempting to reflect whether the sentence should be selected for building a summary Nenkova (2011). Such scores can thus be used as a proxy of the summary quality. We chose Text-Rank Mihalcea and Tarau (2004) – an extractive non-parametric summarization system inspired by PageRank Page et al. (1999) – since it is well performing for extractive tasks and could be easily adapted for our needs. The algorithm builds a graph of sentences within a text based on their co-occurrences. Then, it assigns an importance score for each sentence based on a random walk on the resulting graph. The most important elements of the graph are considered as the ones that best describe the text. As a derivative usage, we propose to consider these importance scores to assess the quality of abstractive summaries in our study. This metric is referred to as Text-Rank in the following.

Arguably the most popular metric for summarization at the moment, it provides a set of measures to compare automatically generated texts against one or more references Lin (2004). In particular, ROUGE-N is based on the count of overlapping n-grams, while ROUGE-L accounts for the longest common sub-sequence between the candidate and its corresponding reference(s).

As noted by See et al. (2017), abstractive summarization models do not produce novel n-grams as often as the reference summaries. Thus, to favor the generation of unseen words and produce more abstractive summaries, Kryściński et al. (2018) integrated novelty as a reward for reinforcement learning. It is defined as the fraction of unique n-grams in the summary that are novel, normalized by the length ratio of the generated and reference summaries.

2 Beyond n-grams

We investigate the use of language models as an evaluation metric. ShafieiBavani et al. (2018) proposed to exploit word embeddings to train a model able to rate the generated summaries. Following neural language models (LM), we propose to consider the perplexity of the generated summary according to the BERT LM Devlin et al. (2019), which demonstrated state of the art results in many NLP tasks. For our experiments, we used the publicly available pre-trained English “base” model.

2.2 Question-Answering based Metrics

Question-Answering is related to summarization: the first work in this direction Wu et al. (2002) introduced the notion of Answer-Focused Summarization, where answers to relevant questions on the source text are used to build the corresponding summary. Based on the intuition that a good-quality summary should provide the answers to the most relevant questions on a given input text, several works have proposed to adapt Question Answering (QA) for summary quality evaluation.

In that vein, Pasunuru and Bansal (2018) proposed to measure if answers contain the most salient tokens. Closer to our work, Eyal et al. (2019) proposed APES, a novel metric for evaluating summarization, based on the hypothesis that the quality of a generated summary is linked to the number of questions (from a set of relevant ones) that can be answered by reading it. In their proposed setup, two components are thus needed: (a) a set of relevant questions for each source document; and (b) a QA system. For each summary to assess, questions are successively generated from a reference summary, by masking each of the named entities present in this reference, following the methodology described in Hermann et al. (2015). This results in as many triplets (input,question,answer)(input,question,answer) as named entities present in the reference summary, where input denotes the summary to assess, question refers to the sentence containing the masked entity and answer refers to this masked entity to retrieve. Thus, for each summary to assess, metrics can be derived from the ability of the QA system to retrieve the correct answers from each of the associated triplets.

For each triplet, an F1 score is computed according to the responses retrieved by the considered QA system. This score, commonly used for QA evaluation Rajpurkar et al. (2016), measures the average overlap between predictions and ground truth answers. For each summary to assess, the is the average of the F1 score computed over each triplet. In the following, we denote this metric as QAfscorefscore(sup).

Complementary to the F1 score, we propose to also consider the confidence of the QA system for its retrieved answer. This corresponds, for each triplet, to the probability of the true answer according to the QA model. Confidence scores are averaged for each summary to assess over its associated triplets. In the following, we denote this metric as QAconfconf(sup).

Besides considering the simple presence of the expected answers in the generated summary, QA-based metrics also account to some extent for readability. They indeed require that the considered QA system, trained on natural language, be able to find the answer in the input to assess, despite the variability of the generated texts.

While being a useful complement to ROUGE, the two QA-based metrics described above still need human-generated summaries. In this paper, we investigate and propose extending the previously described QA-based approach in an unsupervised setting.

With this aim, we extended the above metrics at the document level (i.e., questions and answers are generated from the source article text rather than from the reference summary), dispensing of the need for human-generated reference summaries. Thus, in line with the APES approach described above, we propose two unsupervised QA-based metrics, to which we refer to as QAfscorefscore(unsup) and QAconfconf(unsup). Accounting for both quality and informativeness of a generated summary, those metrics have the appealing property of not requiring reference summaries.

3 Quantitative Analysis

We exploit human judgments obtained for 3 types of automatically generated summaries by Paulus et al. (2017) on 100 samples of the CNN/Daily Mail summarization dataset (see detail in section 4.1), in terms of readability (how well written the summary is) and relevance (how well does the summary capture the important parts of the article). The summaries are generated by the three different systems proposed in the original work. Those samples have been scored, via Amazon Mechanical Turk, for Readability and Relevance (scores from 1 to 10 for both metrics).

In Table 1, we report Spearman’s rank correlations on this data, where we compare summaries rankings obtained according to the assessed metrics. Scores render the ability of the various metrics to reproduce human preferences (in terms of readability and relevance). First, we observe that readability and relevance are naturally intertwined: intuitively, an unreadable summary will bear very little information, one of the facts that explains the high correlation between readability and relevance.

From this correlation analysis against human judgments, we observe that, as expected, the Language Model metric captures readability better than ROUGE, while falling short on relevance.

On the other hand, the results obtained using the proposed QA-based metrics indicate their potential benefits especially under the unsupervised setting, with QAconfconf and QAfscorefscore capturing readability and relevance better than all the others reported metrics, including ROUGE. We thus conclude that the proposed metrics, which favorably correlate with readability and relevance under human evaluation, are worth of a deeper experimental investigation: in the following sections we provide a thorough evaluation of their contributions as Reinforcement Learning rewards signals.

4 Learned Metric

Finally, we also leverage the qualitative data obtained by Paulus et al. (2017) – which compounds to 50 samples evaluated by annotators in terms of readability and relevance – to learn an aggregate metric for evaluation. We use a Ridge regression (with a regularization λ=1\lambda=1) to learn to predict the geometric mean of readability and relevance from the metrics defined above. The geometric means was chosen since we want the generated summary to be both readable and relevant.

We randomly sampled 50% of the data to fit the linear model with various subsets of our base metrics. Then, we measured the correlation w.r.t. the expected geometric mean on the remaining 50% data. We performed this procedure 1000 times. Our experiments show that the best performing set of metrics consists of ROUGE-L in conjunction with QAconfconf and QAfscorefscore, both computed at an article-level, and hence unsupervised.

This learned metric is thus defined as (with unsup versions of QA-based scores):

with α=0.8576\alpha=0.8576, β=2.274\beta=2.274 and δ=0.6413\delta=0.6413. We leverage this learned metric in our RL-based summarization model, as described below.

5 Implementation details

As QA system we use the BERT “base” pre-trained model Devlin et al. (2019), finetuned on the SQuAD dataset Rajpurkar et al. (2016) using the recommended parameters for the taskhttps://github.com/huggingface/pytorch-transformers.. This differs from the approach adopted by Eyal et al. (2019) who trained their QA model on CNN-DM (the same data used for the summarization task).

Summarization Models

Abstractive summarization systems were originally designed as a post-processing of an extractive system – by compressing sentences Nenkova (2011). A lot of activity takes place nowadays in designing neural networks sequence to sequence architectures Sutskever et al. (2014), which allow to consider the problem as a whole rather than a two-step process. Such models reached state-of-the-art performance. To tackle the summarization, which deals with a long text and possibly out-of-vocabulary tokens, See et al. (2017) proposed to leverage an attention over the input Bahdanau et al. (2014), as well as a copy mechanism Vinyals et al. (2015).

One problem of sequence-to-sequence models is that they tend to repeat text in the output. To deal with this problem, See et al. (2017) use a coverage mechanism, and Paulus et al. (2017) introduced Intra-Decoder Attention with the same goal of avoiding duplicate information within the output sequences.

More recently, the model proposed by See et al. (2017) was further extended Gehrmann et al. (2018), with the addition of an attention mask during inference: a pre-trained sequence tagger trained to select which input tokens should be copied and used to filter the copy mechanism. Such a filter, called Bottom-Up Copy Attention, was shown to help prevent copying from the source text sequences that are too long, hence resulting in more abstractive summaries. On the CNN/Daily Mail dataset, Gehrmann et al. (2018) found this two-step process to yield significant improvements in terms of ROUGE – resulting in the current state-of-the-art system. We base our experiments on this model.

The differentiable loss function commonly used for training summarization models, negative log-likelihood, has several known limitations. Among those, exposure bias and failure to cope with the large number of potentially valid summaries.

To overcome this, approaches based on reinforcement learning have recently been proposed, allowing the models to learn via reward signals. Ranzato et al. (2015) used the REINFORCE algorithm Williams (1992) to train RNNs for several generation tasks, showing improvements over previous supervised approaches. Narayan et al. (2018) used such an approach in an extractive summarization setting, learning to select the most relevant sentences within the input text in order to construct its summary. Paulus et al. (2017) combined supervised and reinforcement learning, demonstrating improvements over competing approaches both in terms of ROUGE and on human evaluation. However, the main limit of these works is that they rely on standard summarization metrics which are known to be biased.

Finally, closer to our work, Arumae and Liu (2019) proposed to use question-answering rewards to learn an extractive summarization model in a reinforcement learning setup. Compared to what we propose, their system is extractive, and relies on hand-written summaries.

In our experiments, we follow the reinforcement learning scheme described below. The main difference with previous works is our reward function, which was based on our study of metrics (section 2). We consider a mixed loss Lml+rlL_{ml+rl} combining supervised and reinforcement learning schemes:

where we define the reinforcement loss LrlL_{rl} and the maximum likelihood LmlL_{ml} in the following paragraphs.

Under a supervised training setup, the teacher forcing algorithm Williams and Zipser (1989) can be applied, and corresponds to maximizing the likelihood (ML) or equivalently to minimizing the negative log likelihood (NLL) loss defined as:

where X=[x1,...,xn]X=[x_{1},...,x_{n}] is the input text of nn tokens and Y=[y1,...,ym]Y^{*}=[y_{1}^{*},...,y_{m}^{*}] is the corresponding reference summary of mm tokens.

Several RL-based summarization Kryściński et al. (2018); Li et al. (2018); Pasunuru and Bansal (2018); Paulus et al. (2017) apply the self-critical policy gradient training algorithm Rennie et al. (2017). Following Paulus et al. (2017) we use REINFORCE algorithm, using as the baseline a greedy decoding algorithm according to the conditional distribution p(yX)p(y|X), giving rise to a sequence Y^\widehat{Y}. The model is sampled using its Markov property, that is, one token at a time, giving rise to the sequence YsY^{s}.

Following the standard RL actor-critic scheme, with r(Y)r(Y) the reward function for an output sequence Y, the loss to be minimized is then defined as:

As ROUGE is the most widely used evaluation metric, Paulus et al. (2017) used ROUGE-L as the reward rr for the LrlL_{rl} function and tested the following three different setups:

ML: the model trained with LmlL_{ml} (γ=0\gamma=0);

RL: the model trained with LrlL_{rl} (γ=1\gamma=1);

ML+RL: the model trained with Lml+rlL_{ml+rl} (γ=0.9984\gamma=0.9984).

The human evaluation conducted on the three models shows that RL performs worse than ML, and ML+RL performs best for both readability and relevance. The authors also conclude that “despite their common use for evaluation, ROUGE scores have their shortcomings and should not be the only metric to optimize on summarization model for long sequences”, which is translated in the very high optimal γ\gamma. We show that using a more sensible metric to optimize leads to a better model, and to a lower γ\gamma.

Experiments

In our experiments, we evaluate the effect of substituting the ROUGE reward in the reinforcement-learning model of Paulus et al. (2017) by our proposed metric (section 2). We, moreover, study the effect of using metrics that do not necessitate human-generated summaries.

Task-specific corpora for building and evaluating summarization models associate a human-generated reference summary with each text provided. We resort to the CNN/Daily Mail (CNN-DM) dataset Hermann et al. (2015); Nallapati et al. (2016) for our experiments. It includes 287,113 article/summary pairs for training, 13,368 for validation, and 11,490 for testing. The summary corresponding to each article consists of several bullet points displayed on the respective news outlet webpage. In average, summaries contain 66 tokens (σ=26\sigma=26) and 4.9 bullet points. Consistently with See et al. (2017) and Gehrmann et al. (2018), we use the non-anonymized version of the dataset, the same training/validation splits, and perform truncation of source documents and summaries to 400 and 100 tokens, respectively.

To assess the possible benefits of reinforcing over the proposed QG-based metric, which does not require human-generated reference summaries, we employ TL;DRhttps://tldr.webis.de, a large-scale dataset for automatic summarization built on social media data, compounding to 4 Million training pairs Völske et al. (2017). Both CNN-DM and TL;DR datasets are in English.

2 Models

For all our experiments, we build on top of the publicly available OpenNMT implementationhttp://opennmt.net/OpenNMT-py/Summarization.html, consistently with Gehrmann et al. (2018) to which we refer to as a baseline. The encoder is composed of a one-layer bi-LSTM with 512 hidden states, and 512 hidden states for the one-layer decoder. The embedding size is set at 128. The model is trained with Adagrad, with an initial learning rate of 0.15, and an initial accumulator value of 0.1. We continue training until convergence; when the validation perplexity does not decrease after an epoch, the learning rate is halved. We use gradient-clipping with a maximum norm of 2.

Gehrmann et al. (2018) showed that increasing the number of hidden states leads to slight improvements in performance, at the cost of increased training time; thus, as reinforcement learning is computationally expensive, we build on top of the smallest model – nonetheless, we include the largest model by Gehrmann et al. (2018) in our discussion of results.

All the experimented reinforcement approaches use the mixed training objectives defined in equation 2, with the ML part corresponding to the previously described baseline model pretrained on the CNN-DM dataset. Compared models differ on the considered reward signals. They also differ on their use of additional unsupervised data, either In-Domain or Out-of-Domain, as discussed below.

The three reward signals used throughout our experiments, are detailed below:

ROUGE: We use only ROUGE-L as reward signal within the baseline architecture, consistently with Paulus et al. (2017);

QAlearnedlearned: Conversely, we compute the reward by applying the learned coefficients to the three components of the learned metric, as obtained in Section 2.4.

QAequallyequally: We apply the mixed training objective function, using as a reward the three metric components of the learned metric (ROUGE-L, QAconfconf, and QAfscorefscore) equally weighted: this corresponds to setting a value of 1 for α\alpha, β\beta and δ\delta in Eq. 1. This allows to see to which extent learning is sensitive to fitting human assessments.

For (2) and (3), we set γ\gamma (Eq. 2) to 0.5We have run experiments with γ=0.5\gamma=0.5, and γ=0.9984\gamma=0.9984 as Paulus et al. (2017); we report here the best performance which was obtained with the former.. This shows that, compared to Paulus et al. (2017), we do not need to use NLL to avoid the model from generating unreadable summaries.

2.2 In-Domain vs Out-of-Domain

Finally, we experiment with the proposed QAconfconf and QAfscorefscore metrics in an unsupervised fashion, as they can be computed at article level – i.e. without accessing the reference human-generated summaries. We investigate the potential benefits of using this approach both in-domain and out-of-domain: for the former, we resort to the test set of the CNN-Daily Mail (CNN-DM) dataset; for the latter, we leverage the TL;DR corpus.

As the CNN-Daily Mail is built from mainstream news articles, and the TL;DR data comes from social media sources, we consider the latter as out-of-domain in comparison. From the latter, which includes circa 4 million samples, we randomly draw sample subsets of size comparable with CNN-DM for training, validation and testing splits.

Due to computational costs, we restrict these experiments to the model trained under reinforcement using the QAlearnedlearned metric. Under this setup, the model has access at training time both to:

supervised samples for which a reference summary is given (and thus all metrics, including ROUGE and NLL, can be computed as a training objective), coming from the training set of CNN-Daily Mail corpus ;

unsupervised samples, for which no reference is available, thus allowing to only compute QAconfconf(unsup) and QAfscorefscore(unsup). Three unsupervised settings are considered in the following:

TL;DR, corresponding to the out-of-domain setting where we use articles from the TL;DR dataset;

CNN-DM (VAL), corresponding to an in-domain setting where we use texts from the validation set from the CNN/Daily Mail dataset;

and, CNN-DM (TEST) for an in-domain setting where we use the articles from the test set (thus containing texts used for evaluation purposes).

While all the data is from the CNN-DM train dataset in the supervised setups, for the unsupervised setups, we set the proportion of unsupervised data to 50% (either CNN-DM VAL, CNN-DM TEST for in-domain or TL;DR for out-of-domain data). Thus, for 50% of the data, the model has access only to the QAconfconf and QAfscorefscore reward signals, since the ROUGE-L reward can only be computed on supervised batches.

Therefore, for all the unsupervised setups, in order to keep consistency in the reward signal throughout the training, we multiply by a factor of 2 the weight associated with ROUGE-L when this reward is computable, and set it to 0 otherwise.

3 Results

In Table 2, we report the results obtained from our experiments in comparison with previously proposed approaches. We observe that, unsurprisingly, reinforcing on ROUGE-L allows to obtain significant improvements over the state-of-the-art, in terms of ROUGE but at the cost of lower QA-based metrics. Conversely, reinforcing on the proposed metric improves consistently all its components (ROUGE-L, QAconfconf and QAfscorefscore).

However, increasing the reward does not necessarily correlate with better summaries. The human inspection as reported by Paulus et al. (2017) shows that the generated summaries reinforced on ROUGE-L are consistently on the low end in terms of readability and relevance.

A closer inspection of the generated summaries revealed that the sequences generated by this model seem to qualitatively degrade as the number of produced tokens grows: they often start with a reasonable sub-sequence, but quickly diverge towards meaningless outputs. This can be explained by the aforementioned drawbacks of ROUGE, which are likely amplified when used both as evaluation and reward: the system might be optimizing for ROUGE, at the price of losing the information captured with the NLL loss by its language model.

We hence conducted a human evaluation for the different setups, reported in Table 4, assessing their outputs for readability and relevance in line with Paulus et al. (2017). We randomly sampled 50 articles from the CNN-DM test set; since the learned metric used in our experiments is derived from the subset manually evaluated in Paulus et al. (2017) we ensured that there was no overlap with it. For each of those 50 articles, three English speakers evaluated the summaries generated by the 7 different systems reported in Table 2.

We observe that reinforcing using the proposed metric – which includes QA based metrics, leads to comparable performance in terms of ROUGE w.r.t. state-of-the-art approaches, while clear benefits emerge from the results of the human evaluation: a significant improvement in terms of relevance, particularly when leveraging in-domain data in an unsupervised setup. Not surprisingly, we observe an improvement for our model when reinforced through the learned metric compared to the one equally weighted. The slightly lower relevance scores observed for the QAlearnedlearned w.r.t. QAequallyequally are consistent with the lower ROUGE-L and QAfscorefscore reported in Table 2. This is explained by the lower coefficients for ROUGE-L and QAfscorefscore (see 2.4), and the relatively stronger correlation of those two metrics with relevance (see Table 1).

Consistently with the figures reported in Table 2, the human evaluation results – reported in Tables 4 and 4 – confirm the progressive improvements of our different proposed models when using unsupervised data closer to the test set documents:

adding unsupervised data from the out-of-domain TL;DR brings a slight improvement using QAlearnedlearned;

when it comes to the same domain (i.e. CNN-DM validation) the improvements increase;

finally, when unsupervised samples come from the same set as those used for testing, we observe even better results.

These results show that using the proposed QA-based metrics, that do not depend on reference summaries, allows to leverage raw text data; and, that fine-tuning (without supervision) on the documents to be summarized is beneficial.

To elaborate further, we notice that applying the learned coefficients for 1 to the results obtained by models reinforced on QAlearned and QAequally, see Table 2, we obtain very similar scores (namely, 136.43 for QAequally and 136.4 for QAlearned). However, the qualitative analysis reported in Tables 4 and 4 shows that while they perform similarly in terms of relevance, a significantly lower score for readability is obtained using QAequally. This can be explained by the stronger weight of ROUGE_L for this setup, a fact which might lead to a degradation of the quality of the output consistently with the observations reported in Paulus et al. (2017) as well as in our ROUGE experiment.

Another observation from Tables 4 and 4 is that while QAlearned performs significantly better in term of readability than QAlearned + CNN-DM (VAL), the opposite holds for relevance. This could be explained by the setup difference during training: as detailed in section 4.2.2, for unsupervised setups (i.e. QAlearned + CNN-DM (VAL)) only the QA-based metrics are computed for the portion of data for which no reference is available. While testing (TEST) and validation (VAL) splits come the same dataset (CNN-DM), we observe that using the samples from TEST in an unsupervised fashion allows for maintaining comparably high relevance compared to QAlearned + CNN-DM (VAL), while also obtaining similar readability to QAlearned. This shows the possible benefits that can be obtained by exposing the model to the evaluation data in unsupervised setups. To further study our unsupervised metrics, we performed additional experiments on the TL;DR corpus. We observed more than one absolute point of improvement w.r.t CNN-DM TEST in terms of ROUGE-L, QAfscorefscore (unsup) and QAconfconf (unsup).

This indicates that the proposed unsupervised metrics allow the model to better transfer to new domains such as TL;DR. These results pave the way for leveraging large numbers of texts, in a self-supervised manner, to train automatic summarization models.

Conclusions

We have presented the analysis of novel QA-based metricsA python package will be made available at https://www.github.com/recitalAI/summa-qa., and have shown promising results when using them as a reward in a RL setup. Crucially, those metrics do not require a human reference, as they can be computed from the text to be summarized.

From our experiments this proves particularly beneficial, allowing to leverage both in-domain and out-of-domain unlabeled data.

The promising results obtained indicate a path towards partially self-supervised training of summarization models, and suggest that progress in automated question generation can bring benefits for automatic summarization.

Finally, to our knowledge, this paper is the first to compare two architectures with the same reinforcement setup on the same data: the one proposed by See et al. (2017) and extended by Gehrmann et al. (2018), versus the one by Paulus et al. (2017). In terms of ROUGE, we observe better results than those reported by Paulus et al. (2017) – see Table 2 – indicating a possible edge for the architecture proposed by See et al. (2017).

References