REVIEW 5 major objections 7 minor 33 references
Sentence Embeddings as an intermediate target in end-to-end summarisation
T0 review · 5 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Predicting a summary's sentence embedding, rather than word-level selection probabilities, improves end-to-end hotel review summarisation when source and target text are only loosely aligned.
desk verdict Genuinely novel embedding-targeted extractor, but the end-to-end comparison is confounded and the 'prove' claim overreaches. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the angle-drop objective built on a Maximal Marginal Relevance-style update. At step $i$, the model keeps a running estimate $\hat{y}_{i-1}$ of the summary embedding; after reading input embedding $x_i$, it updates to $\hat{y}_i = \hat{y}_{i-1} - \mathrm{score}\cdot(\hat{y}_{i-1} - x_i)$, and the training loss is $\mathrm{acos}(\hat{y}_{i-1},\mathrm{target}) - \mathrm{acos}(\hat{y}_i,\mathrm{target})$, the reduction in arccosine distance to the target. This objective is what lets weakly aligned training pairs still teach sentence ranking: a sentence that moves the predicted embedding closer to the target, even if it is not identical to it, receives positive gradient. The abstractive Transformer with copy attention then turns the three selected sentences into the final summary.
What would settle it
Train the same end-to-end architecture on a held-out split of the hotel-review dataset, but replace the embedding-regression objective with a sentence-selection probability objective over the same Universal Sentence Encoder embeddings; if the probability-based selector matches or beats USESUM's BLEU, ROUGE-L, and METEOR scores, the paper's central claim that embedding prediction is the better intermediate target is refuted.
Extended reading notes
Core claim
The paper argues and demonstrates that the angle between pre-trained sentence embeddings can serve as the training signal for extractive content selection in an end-to-end summariser. In USESUM, a bi-directional LSTM reads sentence embeddings produced by the Universal Sentence Encoder, an LSTM-style decoder updates a predicted summary embedding by moving it toward each candidate sentence proportionally to a learned score, and the loss at each step is the reduction in arcus-cosine distance to the target summary embedding. The extractor then chooses the three input sentences whose embeddings are closest to the final predicted embedding and passes them to a Transformer abstractive model. The paper's experiments on hotel-review data show that this embedding-prediction objective leads to better end-to-end summaries than word-level sentence-selection probabilities used by the compared extractive systems, and the human evaluation shows the generated summaries more often cover the target semantics.
Load-bearing premise
The load-bearing premise is that the angle between Universal Sentence Encoder embeddings measures how much of the target summary's content a source sentence carries, so that reducing that angle toward a predicted summary embedding selects sentences that the abstractive model can use.
Editorial extensions
If this is right
- The comparison on the hotel-review data shows that an embedding-prediction extractor can outperform word-level sentence-selection extractors in end-to-end BLEU, ROUGE-L, and METEOR when source and target have low lexical overlap.
- Weakly aligned source-target pairs, which cannot be used to train a sentence-selection classifier, can still contribute training signal to the embedding-regression extractor.
- The extractor reduces the input to three sentence embeddings, making the abstractive stage independent of the original document length, up to 800 sentences in the dataset.
- The paper's human evaluation shows that the improvement in automatic metrics is accompanied by higher semantic coverage, not merely higher lexical overlap.
- The beam-search named-entity promotion step improves all compared end-to-end systems on the dataset.
Reading between the lines
- If the mechanism is real, a natural extension is to make the number of selected sentences learnt or adaptive rather than fixed at three; the current system hard-codes three based on the LEAD-3 heuristic.
- The paper's observation that cosine similarity rewards averaging suggests that a diversity-aware or coverage-aware variant of the angle-drop objective might close the gap to the BOTTOM-UP system's cosine score while keeping the semantic advantage.
- A direct test of the central claim would be to replace the Universal Sentence Encoder with a different sentence-embedding model; if the advantage over word-level selection disappears, the effect is encoder-specific rather than a general property of embedding targets.
- For multilingual review summarisation, language-agnostic sentence encoders could make the same weakly aligned training strategy applicable without parallel sentence-level data.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes USESUM, a two-stage summarisation system for hotel review data (USEG). In the first stage, an extractive LSTM with a gated update rule is trained to predict the Universal Sentence Encoder (USE) embedding of the target summary sentence, using as loss the change in arccos distance between the predicted embedding and the target embedding (Eq. 11). At inference, the three input sentences whose USE embeddings have the smallest angle to the predicted embedding are selected. In the second stage, an abstractive Transformer (customised OpenNMT with copy attention, focal loss, and beam-search entity promotion) generates the final summary from these three sentences. The paper compares USESUM against BASELINE, BERTSUM, NEUSUM, REFRESH, and BOTTOM-UP on USEG, reporting that USESUM achieves the highest BLEU, ROUGE-L, and METEOR in the end-to-end experiment (Table 2), with a human evaluation showing higher semantic coverage but much lower grammaticality than BOTTOM-UP. The authors argue that predicting sentence-level embeddings is a better intermediate objective than predicting sentence-selection probabilities when source and target have low lexical overlap.
Significance. If the results are correct, the idea of using pre-trained sentence embeddings as an intermediate regression target for content selection is a plausible and potentially useful contribution for summarisation tasks with large, loosely aligned inputs. The paper ships code and models, uses a real-world public dataset, and includes both automatic and human evaluation. The main scientific claim—that embedding prediction outperforms word-level selection probabilities for weakly aligned corpora—is interesting and testable. However, the current empirical support is not conclusive because of a design confound in the end-to-end comparison, the lack of statistical testing on very small margins, and the absence of direct validation of the angle-to-information monotonicity that the learning objective assumes. The strengths of code release and a non-standard dataset are appreciated, but the load-bearing evidence needs substantial strengthening before the central claim can be accepted.
major comments (5)
- [Section 4.3 and Section 6.2] The abstractive Transformer is trained on the three sentences selected by angle similarity to the target embedding (the oracle selection described in Section 4.3), but the end-to-end evaluation in Table 2 feeds this same model with sentences selected by NEUSUM, BERTSUM, REFRESH, and BASELINE. Those inputs come from a different distribution than the training data, so the observed BLEU, ROUGE-L, and METEOR advantage of USESUM may reflect the abstractive model's specialization to its training distribution rather than a general superiority of the embedding-prediction objective. A fair comparison would train a separate abstractive model for each extractive system, or train one abstractive model on a mixture of selections from all systems so that the extractive component is the only variable.
- [Section 4.2.1 and Section 6.5] The training signal in Eq. (11) assumes that decreasing the angle between the predicted embedding and the target embedding is a monotone proxy for accumulating summary-relevant information. Section 6.5 concedes that angle similarity can be misleading and can 'overly promote' the BASELINE, which simply averages document vectors. This concession directly undermines the central mechanism unless the monotonicity is validated on the USEG domain; the paper provides no oracle-style experiment showing that sentences selected by minimal angle to the target embedding yield higher end-to-end ROUGE than sentences selected by other scoring functions. The reader's strongest concern is that the extractive signal may reward embedding averaging rather than content selection.
- [Table 2 and Section 6.3] No significance tests, confidence intervals, or error bars are reported anywhere in the results. The BLEU difference between USESUM (0.0225) and NEUSUM (0.0208) is small in absolute terms, and the human evaluation covers only 100 outputs per system, with USESUM at 60% grammaticality versus 91% for BOTTOM-UP. Given the small automatic-metric margins and the manually tuned beam-search factors, the paper's claim of consistent superiority is not statistically supported. The authors should report variance or significance tests and discuss the grammar gap in the human evaluation more prominently.
- [Section 5, BERTSUM paragraph] BERTSUM is restricted to 512 input tokens while the other systems process up to 800 sentences, so its low performance is partly an artifact of the input limit rather than a comparison of summarisation quality. The comparison should either adapt BERTSUM to handle the full input (as is done for NEUSUM) or report results on a subset of documents for which all models receive the same input length; otherwise the baseline is not on equal footing.
- [Section 6.1] The extractive evaluation in Table 1 reports only the first selected sentence, whereas the abstractive component in Section 4.3 uses the top three sentences. To support the claim that the embedding-based selector is better for the end-to-end task, the paper should compare the quality of the three-sentence selections across extractors (e.g., ROUGE-L or METEOR of the selected set against the target summary) and show that the USESUM-selected set is indeed more informative. Without this, the connection between the extractive objective and the end-to-end result remains indirect.
minor comments (7)
- [Throughout] There are several typos and notation inconsistencies: 'METOR' for METEOR in Section 5, 'NEOSUM' for NEUSUM in Table 2, 'week alignment' for weak alignment in Section 4.2.1, 'challange' in Section 3, and '0,5115' with a comma decimal in Table 2.
- [Abstract] The word 'prove' is too strong for an empirical study; 'demonstrate' or 'provide evidence that' would be more appropriate, since the paper presents experimental results rather than a mathematical proof.
- [Section 3] Dataset statistics are missing: the number of hotels, the train/validation/test split sizes, and the average number of reviews and sentences per hotel should be reported for reproducibility and context.
- [Section 4.3] The hyperparameters of the abstractive Transformer (number of layers, hidden sizes, training steps, batch size, learning rate) are not fully specified; only some features are described, which makes replication difficult.
- [Section 6.2] The candidate-selection heuristic that compares each candidate sentence embedding with the embedding of the three input sentences (or the whole document for BOTTOM-UP) should be described precisely, as it affects the reported scores and may interact with the USE embedding space in a way that favors USESUM.
- [References] The reference 'Lew, 2004' in Section 3 should be 'Lin, 2004' for ROUGE, and the reference for Yang (2016) is a technical report without a formal venue; please check the citation format.
- [Figure 1] Figure 1 is referenced in Section 4 but is not visible in the manuscript text; please ensure the figure is included and referenced correctly.
Circularity Check
No significant circularity: the headline claims are measured with word-overlap and human metrics external to the USE embedding space used for training and selection.
full rationale
USESUM's extractor is trained with Eq. 11, loss_i = acos(yhat_{i-1}, target) - acos(yhat_i, target), which is the negative of the Eq. 1 information-gain definition; this is a coherent training objective, not a hidden reuse of the evaluation quantity. The abstractive decoder is trained on oracle sentences selected by angle to the target embedding, and at inference USESUM selects by angle to its predicted embedding, so the end-to-end comparison shares a selection distribution with the decoder's training data; this is a fairness and robustness concern about distribution shift for NEUSUM, BERTSUM, REFRESH, and BASELINE, but it does not make the BLEU, ROUGE-L, METEOR, or human-evaluation numbers equivalent to the training target by construction. The cosine-similarity evaluation metric is computed in the same Universal Sentence Encoder space used by the extractor, and Section 6.5 explicitly concedes that this metric can be misleading and overly promotes the averaging BASELINE; because the paper's main claims rest on external word-overlap metrics and human semantic ratings, this internal-metric circularity is not load-bearing. There are no self-citations, imported uniqueness theorems, or ansatz-by-citation steps. The abstract's word 'prove' overstates what is an empirical demonstration, but overclaiming is a correctness issue, not a circular derivation.
Assumptions & free parameters
free parameters (3)
- Beam-search unseen-entity penalty factor =
50
- Beam-search source-entity promotion factor =
0.4
- Number of extracted sentences K =
3
assumptions (3)
- domain assumption Universal Sentence Encoder embeddings are semantically meaningful for hotel review text such that cosine angle reflects content similarity.
- domain assumption Maximal Marginal Relevance (MMR) improves extractive summarization.
- domain assumption Source reviews contain recoverable semantic signal for the target USP summary for a majority of examples.
Cite this review
Pith. "Pith review of Sentence Embeddings as an intermediate target in end-to-end summarisation." pith.science (2026). https://pith.science/paper/Q2CL7MX4
@misc{pith2026250503481,
author = {Pith},
title = {Pith review of: Sentence Embeddings as an intermediate target in end-to-end summarisation},
year = {2026},
howpublished = {\url{https://pith.science/paper/Q2CL7MX4}},
note = {Machine review of arXiv:2505.03481}
}
read the original abstract
Current neural network-based methods to the problem of document summarisation struggle when applied to datasets containing large inputs. In this paper we propose a new approach to the challenge of content-selection when dealing with end-to-end summarisation of user reviews of accommodations. We show that by combining an extractive approach with externally pre-trained sentence level embeddings in an addition to an abstractive summarisation model we can outperform existing methods when this is applied to the task of summarising a large input dataset. We also prove that predicting sentence level embedding of a summary increases the quality of an end-to-end system for loosely aligned source to target corpora, than compared to commonly predicting probability distributions of sentence selection.
Figures
Reference graph
Works this paper leans on
-
[1]
URL: " 'urlintro :=
ENTRY address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRINGS urlintro eprinturl eprintpr...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Jaime Carbonell and Jade Goldstein. 1998. The use of MMR , diversity-based reranking for reordering documents and producing summaries. In SIGIR '98 Proceedings of the 21st annual international ACM SIGIR conference on Research and development in information retrieval, pages 335--336, Melbourne, Australia. Association for Computing Machinery
work page 1998
-
[4]
Asli Celikyilmaz, Antoine Bosselut, Xiaodong He, and Yejin Choi. 2018. Deep communicating agents for abstractive summarization. In Proceedings of the NAACL Conference
work page 2018
-
[5]
Daniel Cer, Yinfei Yang, Sheng yi Kong, Nan Hua, Nicole Limtiaco, Rhomni St. John, Noah Constant, Mario Guajardo-Cespedes, Steve Yuan, Chris Tar, Yun-Hsuan Sung, Brian Strope, and Ray Kurzweil. 2018. Universal sentence encoder. arXiv preprint arXiv:1803.11175
arXiv 2018
-
[6]
Yen-Chun Chen and Mohit Bansal. 2018. Fast ab- stractive summarization with reinforce-selected sentence rewriting. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL)
work page 2018
-
[7]
Jacob Devlin, Ming - Wei Chang, Kenton Lee, and Kristina Toutanova. 2018. BERT: pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805
arXiv 2018
-
[8]
Bonnie Dorr, David Zajic, and Richard Schwartz. 2003. Hedge trimmer: A parse-and-trim approach to headline generation. In Proceedings of the HLT-NAACL 03 on Text Summarization Workshop - Volume 5, HLT-NAACL-DUC '03, pages 1--8, Stroudsburg, PA, USA. Association for Computational Linguistics
work page 2003
Show all 33 references
-
[9]
Greg Durrett, Taylor Berg-Kirkpatrick, and Dan Klein. 2016. Learning-based single-document summarization with compression and anaphoricity constraints. arXiv preprint arXiv:1603.08887
2016 arXiv
-
[10]
Sebastian Gehrmann, Yuntian Deng, and Alexander M. Rush. 2018. Bottom-up abstractive summarization. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pages 4098---4109. Association for Computational Linguistics
2018
-
[11]
Ng, and Bita Nejat
Shima Gerani, Yashar Mehdad, Giuseppe Carenini, Raymond T. Ng, and Bita Nejat. 2014. Abstractive Summarization of Product Reviews Using Discourse Structure . In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP). Association for Comp...
2014
-
[12]
Jiatao Gu, Zhengdong Lu, Hang Li, and Victor OK Li. 2016. Incorporating copying mechanism in sequence-to-sequence learning . arXiv preprint arXiv:1603.06393
2016 arXiv
-
[13]
Karl Moritz Hermann, Tom \' a s Kocisk \' y , Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Suleyman, and Phil Blunsom. 2015. Teaching Machines to Read and Comprehend . In Advances in Neural Information Processing Systems 28 (NIPS 2015)
2015
-
[14]
Sepp Hochreiter and J\" u rgen Schmidhuber. 1997. Long Short-Term Memory . Neural Computation , 9(8):1735--1780
1997
-
[15]
Guillaume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. 2017. Open NMT : Open-source toolkit for neural machine translation. In Proceedings of ACL
2017
-
[16]
Wojciech Kry \'s ci \'n ski, Romain Paulus, Caiming Xiong, and Richard Socher. 2018. Improving abstraction in text summarization. arXiv preprint arXiv:1808.07913
2018 arXiv
-
[17]
Florian Kunneman, Sander Wubben, Emiel Krahmer, and Antal van den Bosch. 2018. Aspect-based summarization of pros and cons in unstructured product reviews. In Proceedings of the 27th International Conference on Computational Linguistics
2018
-
[18]
Chin-Yew Lew. 2004. ROUGE : A package for automatic evaluation of summaries. Text Summarization Branches Out
2004
-
[19]
Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollar. 2017. Focal Loss for Dense Object Detection . In The IEEE International Conference on Computer Vision (ICCV)
2017
-
[20]
Yang Liu. 2019. Fine-tune BERT for extractive summarization. arXiv preprint arXiv:1903.10318
2019 arXiv
-
[21]
Ramesh Nallapati, Bowen Zhou, Cicero Nogueira dos santos, Caglar Gulcehre, and Bing Xiang. 2016. Abstractive text summarization using sequence-to-sequence rnns and beyond. arXiv preprint arXiv:1602.06023
2016 arXiv
-
[22]
Shashi Narayan, Shay B Cohen, and Mirella Lapata. 2018. Ranking sentences for extractive summarization with reinforcement learning. In Proceedings of the 16th Annual Conference of the North American Chapter of the Association for Computational Linguistics Human Language Techno...
2018
-
[23]
Paul Over and James Yen. 2003. An Introduction to DUC-2003: Intrinsic Evaluation of Generic News Text Summarization Systems . In Proceedings of Document Understanding Workshop 2003. National Institute of Standards and Technology
2003
-
[24]
Paul Over and James Yen. 2004. An Introduction to DUC-2004: Intrinsic Evaluation of Generic News Text Summarization Systems . In Proceedings of Document Understanding Workshop 2004. National Institute of Standards and Technology
2004
-
[25]
Romain Paulus, Caiming Xiong, and Richard Socher. 2017. A deep reinforced model for abstractive summarization. eprint arXiv:1705.04304
2017 arXiv
-
[26]
Samuel Pecar. 2018. Towards opinion summarization of customer reviews. In Proceedings of ACL 2018, Student Research Workshop, pages 1--8. Association for Computational Linguistics
2018
-
[27]
Jeffrey Pennington, Richard Socher, and Christopher D. Manning. 2014. Glove: Global vectors for word representation. In Empirical Methods in Natural Language Processing (EMNLP), pages 1532--1543
2014
-
[28]
Rush, Sumit Chopra, and Jason Weston
Alexander M. Rush, Sumit Chopra, and Jason Weston. 2015. A neural attention model for abstractive sentence summarization. In Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pages 379--389. Association for Computational Linguistics
2015
-
[29]
Evan Sandhaus. 2008. The New York Times Annotated Corpus Overview. The New York Times Company, Research and Development, 620 8th Ave 28th Floor New York, NY 10018
2008
-
[30]
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, ukasz Kaiser, and Illia Polosukhin. 2017. Attention Is All You Need . In Advances in Neural Information Processing Systems , pages 5998--6008
2017
-
[31]
Yuxiang Wu and Baotian Hu. 2018. Learning to extract coherent summary via deep reinforcement learning. In The Thirty-Second AAAI Conference on Aritifical Intelligence (AAAI-18), pages 5602--5609
2018
-
[32]
Lu Yang. 2016. Abstractive summarization for amazon reviews. Technical report, Stanford University
2016
-
[33]
Qingyu Zhou, Nan Yang, Furu Wei, Shaohan Huang, Ming Zhou, and Tiejun Zhao. 2018. Neural document summarization by jointly learning to score and select sentences. In Proceedings of the ACL Conference
2018
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.