REVIEW 4 major objections 6 minor 42 references
Abstract Meaning Representation for Hospital Discharge Summarization
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that AMR graph alignment lets a model generate discharge summaries whose every sentence is traceable to a source note, with perfect human correctness scores.
desk verdict A reproducible, novel extractive pipeline for multi-section discharge summaries, but the traceability guarantee is asserted, not demonstrated, and the evaluation is too weak to support the abstract's reliability claim. 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 CALAMR alignment method parses all note antecedents and the discharge summary into AMR graphs and connects them into one bipartite flow network; sentence matches are selected by the information gain derived from max-flow values. The flow-derived sentence pairs provide automatic training labels for a BiLSTM classifier (with GatorTron embeddings and note-category features) that predicts the discharge summary section for each source sentence, and the same alignments provide the traceability links for every sentence in the generated summary.
What would settle it
A human-annotated sample of more than one hundred discharge summary sentences with their correct source sections, compared against the CALAMR-derived labels; if alignment precision is materially below the classifier's reported agreement, the traceability and training-label arguments collapse.
Extended reading notes
Core claim
The central claim is that combining AMR graph alignment (CALAMR) with a BiLSTM sentence classifier yields discharge summaries whose content is restricted to source text and whose sentences are traceable via alignment flow. The paper presents this as the first peer-reviewed work attempting complete discharge summary generation from EHR notes with an extractive method, and reports that human evaluators gave generated summaries perfect correctness scores, with readability around 3 out of 5. The authors argue that extractive selection is the right design choice for the clinical domain because abstractive methods offer no structural guarantee against hallucination.
Load-bearing premise
The automatic CALAMR alignments are accurate enough to serve both as training labels for the section classifier and as the traceability mechanism, but the paper never checks them against human section annotations.
Editorial extensions
If this is right
- If correct, the method gives clinical summarization a provenance guarantee without the context-window limits of LLMs.
- The alignment-derived labels offer a weak-supervision route for section classification when gold section annotations are unavailable.
- The pipeline produces one output per admission, so it scales to admissions with hundreds of notes.
- Because every included sentence is drawn verbatim from source notes, faithfulness is structural rather than probabilistic.
- The same CALAMR-based sectioning can organize source notes by discharge section for downstream abstractive models.
Reading between the lines
- The paper's traceability claim depends entirely on the accuracy of CALAMR alignments, which are never validated against human section annotations; if alignments are noisy, the classifier may merely replicate that noise.
- The high weighted F1 is driven by the no-section majority class; macro F1 of 20.41 suggests the model is weak on the actual clinical sections, so the generated summaries are terse.
- A natural testable extension is to compare the section labels produced by CALAMR against a small human-annotated sample to measure alignment precision and recall.
- The approach could be combined with an abstractive refinement step that edits extracted sentences while checking faithfulness against the alignment graph.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes an extractive approach to hospital discharge summarization that combines AMR-based graph alignments (CALAMR) with a supervised sentence classifier. CALAMR aligns note-antecedent sentences to discharge summary sentences; the aligned discharge summary section is used as a training label for a BiLSTM 'source section model.' At inference, each note sentence is classified into a discharge summary section (or 'no-section' and discarded), and the selected sentences are concatenated under predicted section headers. The method is evaluated on MIMIC-III and a private UI Health dataset using classifier metrics, a small informal human Likert evaluation, and qualitative examples. The paper claims the resulting summaries are faithful (only source content) and traceable (each sentence traceable via CALAMR alignments) and reports 'impressive reliability results.'
Significance. If the central claims were substantiated, the work would be a meaningful step toward provenance-aware clinical summarization: an extractive pipeline with explicit source-to-summary alignment could provide a practical alternative to hallucination-prone LLM generation for long multi-document admissions. The paper also contributes source code, trained models, and generated output examples, which are useful for reproducibility. However, the evidence as presented does not support the 'impressive reliability' characterization: traceability is not actually implemented at inference, the classifier labels are circularly derived from the same alignment tool that is never validated, the classifier's macro F1 is about 20, the human completeness and sectioning scores are 1/5, and there are no baselines. The core idea is defensible and the gaps are in principle addressable, but the current manuscript substantially overstates what is demonstrated.
major comments (4)
- [Sec. 4.4-4.4.1 and Sec. 7] The traceability claim is not supported by the implemented pipeline. At inference, the source section model predicts a section label for each antecedent sentence and either adds the sentence to that section or discards it; CALAMR is never invoked on the generated output and no alignment path is attached to any generated sentence. A classifier prediction is not an alignment. The conclusion in Sec. 7 that 'each sentence can be traced back via the CALAMR alignments' is therefore a non-sequitur; the appendix example (Appendix A) shows only extracted sentences and header rows, with no provenance mapping. To substantiate the claim, the authors need to actually compute alignments for the generated summaries and present the source-to-summary mapping, or explicitly weaken the claim to 'the selection is based on alignments learned during training.'
- [Sec. 4.2-4.3 and Table 5] The training labels and the evaluation labels for the source section model both come from CALAMR alignments, and the alignment quality is never validated against human section annotations. The hyperparameters (Λ and μ_s) are tuned on a development set (Sec. 4.4) to produce more alignments. The high weighted F1 of 88.72 is therefore circular to a substantial degree: it measures how well the BiLSTM reproduces the aligner's labels, not how well it learns true discharge-summary section structure. The macro F1 of 20.41, which the authors acknowledge, further shows that the model effectively predicts the majority 'no-section' class. The authors should validate CALAMR alignments against human annotated section labels, or use independently produced labels for evaluation, and they should report per-section precision/recall/F1.
- [Sec. 5.1 and Table 6] The human evaluation is too weak to support the 'impressive reliability results' stated in the abstract. The evaluation is described by the authors as 'informal,' uses only two raters, and reports no inter-rater reliability statistics such as Cohen's kappa or per-rater scores. The average Likert scores of 1 for completeness, sections, and preference (MIMIC-III) directly undermine the reliability claim; a readability score of 3.05 and a correctness score of 5 are encouraging but do not compensate for the near-minimal completeness and sectioning scores. The authors need a more rigorous evaluation protocol (e.g., multiple trained raters, dual annotation with adjudication, reliability metrics), and they should report the distribution of scores rather than only means.
- [Sec. 5 (Experimental Setup)] The experiments include no baselines. Table 3 computes ROUGE/BLEU between original EHR notes and gold discharge summaries, but that is not a baseline for the generated summaries; it merely motivates human evaluation. Without comparing the proposed method to at least a simple extractive baseline (e.g., random sentence selection, lead-based selection, or a classifier trained on human section labels), the claim of 'promising results' cannot be assessed. Adding baselines is essential to interpret both the classifier metrics and the human evaluation.
minor comments (6)
- [Abstract] The abstract contains garbled text: 'rovide our method, generated discharge ary output examples' should read 'We provide our method, generated discharge summary output examples, source code and trained models.'
- [Sec. 2.2] The word 'tracability' is misspelled; it should be 'traceability.'
- [Table 1] The column header 'Descripton' is misspelled; it should be 'Description.'
- [Table 6] The word 'cateogry' in the table caption should be 'category.'
- [Sec. 6.1] The model is referred to as 'MedSecId' in Sec. 6.1, but this name is not introduced earlier; the paper uses 'source section model' elsewhere. Please use a consistent name throughout.
- [Appendix A and B] The de-identified examples contain several typos and formatting artifacts, such as 'waterhsed' in Appendix A and 'takingthe past 5 months' in Appendix B. These should be corrected or the examples should be replaced with cleaner excerpts.
Circularity Check
Section-label F1 is measured against labels produced by the same CALAMR alignment pipeline that generated the training labels, so the headline reliability result is partially self-referential.
-
fitted input called prediction
[Sec 4.4, Sec 4.4.1, Sec 5 (Table 5)]
"CALAMR was used to create supervised training examples using the flow data of the alignment graphs to match note antecedent source sentences to discharge summary sentences. ... The source section model results are summarized in Table 5. The weighted F1 score of 88.72 on the MIMIC-III trained corpus shows good results for the sentences’ discharge summary section classification."
The Source Section Dataset labels are created by the CALAMR sentence-matching algorithm (Sec 4.2), and the same algorithm's hyperparameters were tuned on a development set (Sec 4.4). The BiLSTM is trained to predict exactly those CALAMR-derived section labels, and then evaluated on held-out labels produced by the same CALAMR pipeline. Therefore the weighted F1 in Table 5 measures how well the classifier reproduces CALAMR's alignments, not whether the predicted sections are correct by any independent standard. The conclusion in Sec 7 that 'generated training data from the CALAMR alignments produces a model that learns how to classify for extractive summarization' restates this self-agreement rather than validating it against human section annotations.
full rationale
The paper is not wholly circular: the extractive design guarantees faithfulness by construction, and the human expert evaluation in Table 6 is an independent external check on the generated summaries. The BiLSTM is also a separate model that could fail to reproduce CALAMR's assignments, so the F1 is not a tautology. However, the headline 'reliability' result in the abstract and Sec 5 rests on labels generated by the authors' own CALAMR tool, with no validation of those alignments against human section annotations. The high weighted F1 (88.72) is dominated by the no-section majority (macro F1 is 20.41) and mainly shows self-consistency with the alignment pipeline. The traceability claim in Sec 7—'each sentence can be traced back via the CALAMR alignments'—is not demonstrated by the inference pipeline in Sec 4.4.1, which places sentences by BiLSTM predictions and does not compute alignments on generated output; that is a missing proof rather than a circular reduction, so it does not further raise the score. Overall, the central reliability claim is partially circular because the prediction target and the evaluation target both come from the same unvalidated alignment process, yielding a score of 6.
Assumptions & free parameters
free parameters (5)
- Lambda (CALAMR kth order neighbor set) =
not reported (tuned)
- Mu_s (minimum sentence flow) =
not reported (tuned)
- Bipartite edge similarity threshold =
not reported
- BiLSTM hyperparameters =
hidden size 500, dropout 0.15, LR 5e-4, 30 epochs
- Discharge summary section set =
14 MIMIC sections, 12 UI Health sections (per Table 2)
assumptions (6)
- domain assumption The text-to-graph AMR parser produces semantically accurate graphs for noisy clinical notes.
- domain assumption CALAMR alignment flows correctly identify which note antecedent sentences correspond to which discharge summary sections.
- domain assumption GatorTron static clinical embeddings capture enough semantics for sentence-level section classification without fine-tuning.
- domain assumption The physician-selected set of discharge summary sections is the appropriate target schema for evaluation.
- domain assumption Extractive summarization, i.e., copying whole sentences, is an acceptable way to produce a clinical discharge summary.
- domain assumption Two-annotator Likert ratings, without inter-rater reliability or sampling detail, provide a valid measure of summary quality.
Cite this review
Pith. "Pith review of Abstract Meaning Representation for Hospital Discharge Summarization." pith.science (2026). https://pith.science/paper/NXMUYI27
@misc{pith2026250614101,
author = {Pith},
title = {Pith review of: Abstract Meaning Representation for Hospital Discharge Summarization},
year = {2026},
howpublished = {\url{https://pith.science/paper/NXMUYI27}},
note = {Machine review of arXiv:2506.14101}
}
read the original abstract
The Achilles heel of Large Language Models (LLMs) is hallucination, which has drastic consequences for the clinical domain. This is particularly important with regards to automatically generating discharge summaries (a lengthy medical document that summarizes a hospital in-patient visit). Automatically generating these summaries would free physicians to care for patients and reduce documentation burden. The goal of this work is to discover new methods that combine language-based graphs and deep learning models to address provenance of content and trustworthiness in automatic summarization. Our method shows impressive reliability results on the publicly available Medical Information Mart for Intensive III (MIMIC-III) corpus and clinical notes written by physicians at Anonymous Hospital. rovide our method, generated discharge ary output examples, source code and trained models.
Figures
Figures from the paper (6 more)
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]
Griffin Adams, Emily Alsentzer, Mert Ketenci, Jason Zucker, and Noémie Elhadad. 2021. https://doi.org/10.18653/v1/2021.naacl-main.382 What’s in a Summary ? Laying the Groundwork for Advances in Hospital-Course Summarization . In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics : Human Langua...
-
[4]
Rohan Anil, Sebastian Borgeaud, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M. Dai, Anja Hauth, Katie Millican, David Silver, Melvin Johnson, Ioannis Antonoglou, Julian Schrittwieser, Amelia Glaese, Jilin Chen, Emily Pitler, Timothy Lillicrap, Angeliki Lazaridou, Orhan Firat, James Molloy, Michael Isard, Paul R. Barham, Tom Hen...
-
[5]
Rexhina Blloshmi, Rocco Tripodi, and Roberto Navigli. 2020. https://doi.org/10.18653/v1/2020.emnlp-main.195 XL-AMR : Enabling Cross-Lingual AMR Parsing with Transfer Learning Techniques . In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing ( EMNLP ) , pages 2487--2500. Association for Computational Linguistics
-
[6]
Lukin, Stephen Tratz, Matthew Marge, Ron Artstein, David Traum, and Clare Voss
Claire Bonial, Lucia Donatelli, Mitchell Abrams, Stephanie M. Lukin, Stephen Tratz, Matthew Marge, Ron Artstein, David Traum, and Clare Voss. 2020. https://aclanthology.org/2020.lrec-1.86 Dialogue- AMR : Abstract Meaning Representation for Dialogue . In Proceedings of the 12th Language Resources and Evaluation Conference , pages 684--695. European Languag...
work page 2020
-
[7]
Lester Randolph Ford and Delbert Ray Fulkerson. 1962. https://press.princeton.edu/books/hardcover/9780691651842/flows-in-networks Flows in networks . In Flows in Networks, Princeton Landmarks in Mathematics and Physics , page 212. Princeton University Press
arXiv 1962
-
[8]
Boris Galitsky. 2020. https://doi.org/10.1007/978-3-030-52167-7_5 Summarized Logical Forms Based on Abstract Meaning Representation and Discourse Trees . In Boris Galitsky, editor, Artificial Intelligence for Customer Relationship Management : Keeping Customers Informed , Human– Computer Interaction Series , pages 151--191. Springer International Publishing
Show all 42 references
-
[9]
Yanjun Gao, Dmitriy Dligach, Timothy Miller, Dongfang Xu, Matthew M. M. Churpek, and Majid Afshar. 2022 a . https://aclanthology.org/2022.coling-1.264 Summarizing Patients ' Problems from Hospital Progress Notes Using Pre-trained Sequence-to-Sequence Models . In Proceedings of...
2022
-
[10]
Liu, and Richard Peng
Yu Gao, Yang P. Liu, and Richard Peng. 2022 b . https://doi.org/10.1109/FOCS52979.2021.00058 Fully Dynamic Electrical Flows : Sparse Maxflow Faster Than Goldberg-Rao . In 2021 IEEE 62nd Annual Symposium on Foundations of Computer Science ( FOCS ) , pages 516--527
2022
-
[11]
Graves and J
A. Graves and J. Schmidhuber. 2005. https://doi.org/10.1109/IJCNN.2005.1556215 Framewise phoneme classification with bidirectional LSTM networks . In Proceedings. 2005 IEEE International Joint Conference on Neural Networks , volume 4, pages 2047--2052. IEEE
2005
-
[12]
Jamie S Hirsch, Jessica S Tanenbaum, Sharon Lipsky Gorman, Connie Liu, Eric Schmitz, Dritan Hashorva, Artem Ervits, David Vawdrey, Marc Sturm, and Noémie Elhadad. 2015. https://doi.org/10.1136/amiajnl-2014-002945 HARVEST , a longitudinal patient record summarizer . Journal of ...
2015 doi
-
[13]
Alistair E. W. Johnson, Tom J. Pollard, Lu Shen, Li-wei H. Lehman, Mengling Feng, Mohammad Ghassemi, Benjamin Moody, Peter Szolovits, Leo Anthony Celi, and Roger G. Mark. 2016. https://doi.org/10.1038/sdata.2016.35 MIMIC-III , a freely accessible critical care database . Scien...
2016 doi
-
[14]
Paul Kingsbury and Martha Palmer. 2002. http://www.lrec-conf.org/proceedings/lrec2002/pdf/283.pdf From TreeBank to PropBank . In Proceedings of the Third International Conference on Language Resources and Evaluation ( LREC '02) . European Language Resources Association (ELRA)
2002
-
[15]
Folarin, Angus Roberts, Rebecca Bendayan, Mark P
Zeljko Kraljevic, Thomas Searle, Anthony Shek, Lukasz Roguski, Kawsar Noor, Daniel Bean, Aurelie Mascio, Leilei Zhu, Amos A. Folarin, Angus Roberts, Rebecca Bendayan, Mark P. Richardson, Robert Stewart, Anoop D. Shah, Wai Keong Wong, Zina Ibrahim, James T. Teo, and Richard J. ...
2021
-
[16]
Paul Landes, Aaron Chaise, Kunal Patel, Sean Huang, and Barbara Di Eugenio. 2023. https://aclanthology.org/2023.bionlp-1.41 Hospital Discharge Summarization Data Provenance . In The 22nd Workshop on Biomedical Natural Language Processing and BioNLP Shared Tasks , pages 439--44...
2023
-
[17]
Paul Landes and Barbara Di Eugenio. 2024. https://aclanthology.org/2024.lrec-main.236 CALAMR : Component ALignment for Abstract Meaning Representation . In Proceedings of the 2024 Joint International Conference on Computational Linguistics , Language Resources and Evaluation ,...
2024
- [18]
-
[19]
Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. 2020. https://doi.org/10.18653/v1/2020.acl-main.703 BART : Denoising Sequence-to-Sequence Pre-training for Natural Language Generation , Translati...
2020 doi
-
[20]
Chen Li, Yang Liu, Fei Liu, Lin Zhao, and Fuliang Weng. 2014. https://doi.org/10.3115/v1/D14-1076 Improving Multi-documents Summarization by Sentence Compression based on Expanded Constituent Parse Trees . In Proceedings of the 2014 Conference on Empirical Methods in Natural L...
2014 doi
-
[21]
Kexin Liao, Logan Lebanoff, and Fei Liu. 2018. https://aclanthology.org/C18-1101 Abstract Meaning Representation for Multi-Document Summarization . In Proceedings of the 27th International Conference on Computational Linguistics , pages 1178--1190. Association for Computationa...
2018
-
[22]
R. Likert. 1932. A technique for the measurement of attitudes. Archives of Psychology, 22 140:55--55
1932
-
[23]
Jungwoo Lim, Dongsuk Oh, Yoonna Jang, Kisu Yang, and Heuiseok Lim. 2020. https://doi.org/10.18653/v1/2020.coling-main.222 I Know What You Asked : Graph Path Learning using AMR for Commonsense Reasoning . In Proceedings of the 28th International Conference on Computational Ling...
2020 doi
-
[24]
Chin-Yew Lin. 2004. https://aclanthology.org/W04-1013 ROUGE : A Package for Automatic Evaluation of Summaries . In Text Summarization Branches Out , pages 74--81. Association for Computational Linguistics
2004
-
[25]
Fei Liu, Jeffrey Flanigan, Sam Thomson, Norman Sadeh, and Noah A. Smith. 2015. https://doi.org/10.3115/v1/N15-1114 Toward Abstractive Summarization Using Semantic Representations . In Proceedings of the 2015 Conference of the North American Chapter of the Association for Compu...
2015 doi
-
[26]
H. P. Luhn. 1958. https://doi.org/10.1147/rd.22.0159 The Automatic Creation of Literature Abstracts . IBM Journal of Research and Development, 2(2):159--165
1958 doi
-
[27]
Magnanti and Laurence A
Thomas L. Magnanti and Laurence A. Wolsey. 1995. https://doi.org/10.1016/S0927-0507(05)80126-4 Optimal trees . In Handbooks in Operations Research and Management Science , volume 7 of Network Models , pages 503--615. Elsevier
1995 doi
-
[28]
Emma Manning, Shira Wein, and Nathan Schneider. 2020. https://doi.org/10.18653/v1/2020.coling-main.420 A Human Evaluation of AMR-to-English Generation Systems . In Proceedings of the 28th International Conference on Computational Linguistics , pages 4773--4786. International C...
2020 doi
-
[29]
Joshua Maynez, Shashi Narayan, Bernd Bohnet, and Ryan McDonald. 2020. https://doi.org/10.18653/v1/2020.acl-main.173 On Faithfulness and Factuality in Abstractive Summarization . In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics , pages ...
2020 doi
-
[30]
Tahira Naseem, Austin Blodgett, Sadhana Kumaravel, Tim O'Gorman, Young-Suk Lee, Jeffrey Flanigan, Ramón Astudillo, Radu Florian, Salim Roukos, and Nathan Schneider. 2022. https://doi.org/10.18653/v1/2022.naacl-main.256 DocAMR : Multi-Sentence AMR Representation and Evaluation ...
2022 doi
-
[31]
Tim O'Gorman, Michael Regan, Kira Griffitt, Ulf Hermjakob, Kevin Knight, and Martha Palmer. 2018. https://aclanthology.org/C18-1313 AMR Beyond the Sentence : The Multi-sentence AMR corpus . In Proceedings of the 27th International Conference on Computational Linguistics , page...
2018
-
[32]
Martha Palmer, Daniel Gildea, and Paul Kingsbury. 2005. https://doi.org/10.1162/0891201053630264 The Proposition Bank : An Annotated Corpus of Semantic Roles . Computational Linguistics, 31(1):71--106
2005 doi
-
[33]
Kishore Papineni, Salim Roukos, Todd Ward, and Wei-Jing Zhu. 2002. https://doi.org/10.3115/1073083.1073135 Bleu: A Method for Automatic Evaluation of Machine Translation . In Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics , pages 311--3...
2002
-
[34]
Rimma Pivovarov and Noémie Elhadad. 2015. https://doi.org/10.1093/jamia/ocv032 Automated methods for the summarization of electronic health records . Journal of the American Medical Informatics Association, 22(5):938--947
2015 doi
-
[35]
Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. 2020. https://jmlr.org/papers/volume21/20-074/20-074.pdf Exploring the limits of transfer learning with a unified text-to-text transformer . The Journa...
2020
-
[36]
N. S. Ranjitha and Jagadish S Kallimani. 2017. https://doi.org/10.1109/ICACCI.2017.8126086 Abstractive multi-document summarization . In 2017 International Conference on Advances in Computing , Communications and Informatics ( ICACCI ) , pages 1690--1694
2017
-
[37]
Gerard Salton, James Allan, Chris Buckley, and Amit Singhal. 1994. http://arxiv.org/abs/2884123 Automatic Analysis , Theme Generation , and Summarization of Machine-Readable Texts . Science, 264(5164):1421--1426
1994
-
[38]
Kapil Thadani and Kathleen McKeown. 2013. https://aclanthology.org/W13-3508 Sentence Compression with Joint Structural Inference . In Proceedings of the Seventeenth Conference on Computational Natural Language Learning , pages 65--74. Association for Computational Linguistics
2013
-
[39]
Smith, Christopher Parisien, Colin Compas, Cheryl Martin, Mona G
Xi Yang, Aokun Chen, Nima PourNejatian, Hoo Chang Shin, Kaleb E. Smith, Christopher Parisien, Colin Compas, Cheryl Martin, Mona G. Flores, Ying Zhang, Tanja Magoc, Christopher A. Harle, Gloria Lipori, Duane A. Mitchell, William R. Hogan, Elizabeth A. Shenkman, Jiang Bian, and ...
-
[40]
Yakir Yehuda, Itzik Malkiel, Oren Barkan, Jonathan Weill, Royi Ronen, and Noam Koenigstein. 2024. https://doi.org/10.18653/v1/2024.acl-long.506 InterrogateLLM : Zero-Resource Hallucination Detection in LLM-Generated Answers . In Proceedings of the 62nd Annual Meeting of the As...
2024 doi
-
[41]
Weinberger, and Yoav Artzi
Tianyi Zhang, Varsha Kishore, Felix Wu, Kilian Q. Weinberger, and Yoav Artzi. 2020 a . https://openreview.net/forum?id=SkeHuCVFDr BERTScore : Evaluating Text Generation with BERT . In Proceedings of the 8th International Conference on Learning Representations
2020
-
[42]
Manning, and Curtis Langlotz
Yuhao Zhang, Derek Merck, Emily Tsai, Christopher D. Manning, and Curtis Langlotz. 2020 b . https://doi.org/10.18653/v1/2020.acl-main.458 Optimizing the Factual Correctness of a Summary : A Study of Summarizing Radiology Reports . In Proceedings of the 58th Annual Meeting of t...
2020 doi
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.