Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

Rephrasing Electronic Health Records for Pretraining Clinical Language Models

T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read Rephrasing real clinical notes with small LLMs yields synthetic pretraining corpora that outperform from-scratch synthesis.

desk verdict Worth reading for the fixed-budget rephrasing comparison, but the augmentation claim is likely confounded by a doubled token count. read the letter →

arxiv 2411.18940 v1 pith:SQD5P2VZ submitted 2024-11-28 cs.CL

classification cs.CL
keywords clinicallanguagemodelssyntheticpretrainingdatarephrasingelectronichealthrecordsprivacy-preservingNLPLLMparaphraseMIMIC-III
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Clinical language models need large amounts of clinical text, but privacy rules make real electronic health record (EHR) notes hard to collect and share. This paper proposes generating synthetic pretraining corpora by asking small instruction-tuned LLMs (under 10 billion parameters) to paraphrase real discharge summaries, rather than inventing clinical notes from scratch. Across causal language modeling perplexity and downstream fine-tuning tasks, models pretrained on the rephrased corpora outperformed models trained on synthetic notes generated without referencing real text, and augmenting real notes with rephrased corpora improved performance even with only 20 million tokens. The result suggests that privacy-preserving pretraining can be built on paraphrase rather than generation, and that the method can support institution-level or larger-scale clinical language model development.

What carries the argument

The central machinery is the rephrasing pipeline: real clinical notes are split into chunks of about 300 tokens, each chunk is sent to a small instruction-tuned LLM under one of three prompts, and the outputs form a synthetic corpus used to pretrain or augment clinical language models. The role of the LLM is constrained to paraphrase, preserving the structure and content of real notes while changing surface form, which contrasts with from-scratch synthesis that relies on the LLM's internal knowledge to generate clinical details. Prompt choice matters: Prompt 3, which explicitly asks the LLM to explain medical terms, can hurt perplexity but helps on downstream natural language inference. Combining synthetic corpora from different LLMs or prompts with real notes provides stable gains.

What would settle it

Extract clinical concepts, medications, doses, negations, and temporal relations from the original and rephrased versions of the same notes and compare their distributions; if they diverge systematically, or if a blinded clinician review finds fabricated facts in the rephrased text, then the method's benefit is distributional mimicry rather than content preservation. A direct test would corrupt a set of original notes with a wrong medication, rephrase them, and check whether the pretrained model learns the corrupted fact.

Watch

Extended reading notes

Core claim

On its own terms, the paper establishes that rephrasing, not fresh synthesis, is the better route to synthetic clinical pretraining text. Using discharge summaries from MIMIC-III as source material, the authors prompt four instruction-tuned LLMs (Llama-3.1 8B, Mistral-0.3 7B, Qwen-2 7B, and Gemma-2 9B) to rewrite chunks of roughly 300 tokens under three prompts: a general Wikipedia-style paraphrase, a medically worded paraphrase, and a medical paraphrase that additionally asks for explanations of medical terms. A 110M-parameter Llama pretrained on each 20M-token synthetic corpus reaches lower perplexity on held-out MIMIC-IV discharge summaries and radiology reports than a model pretrained on Asclepius-style synthetic notes generated from scratch, in most cases by a large margin. Combining real notes with rephrased corpora lowers perplexity further, and BERT models initialized from BioBERT and pretrained on real-plus-rephrased text beat the ClinicalBERT baseline on MedNLI and i2b2 2010/2012 while using roughly 20M tokens versus the full MIMIC-III corpus.

Load-bearing premise

The central assumption is that LLM rephrasing preserves the clinical content and meaning of the original notes closely enough that the synthetic text is both safe and useful for pretraining; the paper explicitly flags that it does not measure subtle meaning shifts or hallucinations.

Editorial extensions

If this is right

  • Institutions can pretrain or fine-tune clinical language models on rephrased versions of their own notes, potentially sharing the models without sharing raw patient text.
  • A small token budget of 20M rephrased tokens is enough to improve perplexity and downstream task performance, making the approach feasible for institution-level use and scalable to larger corpora.
  • Combining synthetic corpora from different LLMs or prompts yields additional gains, suggesting a recipe for scaling generation by diversity rather than by a single generator.
  • Masked language models pretrained with real-plus-rephrased text outperform the widely used ClinicalBERT on MedNLI and i2b2 benchmarks while using far fewer tokens.
  • The mixed results for medically adapted and explanation-seeking prompts indicate that prompt design is a controllable factor in synthetic clinical pretraining data quality.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If rephrasing preserves clinical meaning, the privacy argument is strengthened, but the paper does not measure re-identification risk; a testable extension is adversarial membership inference on the rephrased corpus to see whether it leaks information about the original notes.
  • The prompt-3 result hints at a tradeoff between content-preserving paraphrase and knowledge injection: adding explanations helps tasks like NLI that benefit from enriched context, while hurting language-model perplexity; measuring factual consistency across prompts would clarify this tradeoff.
  • The method may transfer to other note types such as radiology reports, progress notes, or discharge summaries in other languages, especially those with high boilerplate, though the paper only generates from MIMIC-III discharge summaries and evaluates on discharge summaries and radiology reports.
  • Because the paper does not include a qualitative clinical review of rephrased notes, a clinician-annotated comparison of original versus rephrased notes for factual errors would be a direct next step.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The manuscript proposes generating synthetic clinical pretraining corpora by prompting four small instruction-tuned LLMs (<10B) to rephrase chunks of MIMIC-III discharge summaries. The authors evaluate the approach in two settings: (i) causal language modeling with a 110M Llama model, measuring perplexity on MIMIC-IV discharge summaries and radiology reports under a temporal train/test split, and (ii) masked language modeling from BioBERT, fine-tuned on MedNLI, i2b2 2010, and i2b2 2012. The reported results indicate that rephrased corpora yield lower perplexity than the from-scratch Asclepius synthetic corpora, that augmenting real notes with synthetic corpora improves perplexity relative to real notes alone, and that synthetically augmented BERT models outperform ClinicalBERT on the downstream tasks.

Significance. If the main effects survive appropriate control conditions, this work would offer a practical, data-efficient recipe for institutional clinical language model pretraining, a timely contribution given the privacy constraints on sharing electronic health records. The study has notable methodological strengths: the synthetic-only comparison holds the token budget fixed at 20M across LLMs and prompts; the same source chunks are fed to all LLMs, controlling for input variation; and the test sets incorporate a temporal shift (MIMIC-IV notes from 2014 onward) and a different note type (radiology reports), making the perplexity evaluation more realistic than a random split. The rephrasing idea is well motivated by prior work on web-data rephrasing and is extended here with medical prompts, multiple LLMs, and both decoder- and encoder-based pretraining. However, the augmentation claim is currently confounded by doubled training tokens, and the absence of uncertainty quantification weakens the granular comparisons across prompts and LLMs.

major comments (4)
  1. [Section 3.2 / Figure 2; Section 4.1 / Table 1] Please see above.
  2. [Section 3 / Figures 1-3 / Table 1] See above.
  3. [Section 3.1 / Figure 1] See above.
  4. [Section 5] See above.
minor comments (5)
  1. [Section 2.3, 3.2, 4.1, Figure 1 caption] There are several typos: "syntatically diverse" (Section 2.3), "clincal notes" (Section 3.2), "identifical" (Section 4.1), and "Ascplepius" in the Figure 1 caption. These should be corrected.
  2. [Appendix A] The sentence "we did not show [the original chunk] here due to data agreement by MIMIC-III" is vague; it should be clarified whether the original chunk is omitted because of the MIMIC-III data use agreement and whether a redacted version could be included for comparison.
  3. [Appendix A / Section 3.2] The statement that "Llama seems more likely to use a boilerplate" is informal and unquantified; if this is intended to explain Llama's underperformance, it should be supported by an analysis of repeated patterns across generated chunks.
  4. [Section 4.1] Fine-tuning hyperparameters for the BERT models are not reported beyond the pretraining configuration (learning rate, epochs, batch size). These details are needed for reproducibility of the MedNLI and i2b2 results.
  5. [Section 3.1] The choice to initialize the decoder from a TinyStories-pretrained 110M model is not justified; the manuscript should state whether this initialization could affect the relative comparisons across synthetic corpora, even if all conditions share the same base model.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the claims rest on external benchmarks and no fitted parameter is renamed as a prediction.

full rationale

The paper's derivation chain is empirical rather than definitional: LLM rephrasing of MIMIC-III discharge summaries is used to pretrain models that are then evaluated on MIMIC-IV notes with a temporal shift, so the test set is not the same data that generated the training corpora. The rephrasing recipe, including the 300-token chunking rule and Prompt 1, is imported from Maini et al. (2024), an external source, and the comparison against Asclepius is an external baseline; no uniqueness theorem or self-citation is invoked to force the method. The main concerns raised by the manuscript are validity threats, not circularity: (i) because MIMIC-III and MIMIC-IV come from the same institution, some of the perplexity advantage over from-scratch synthesis may reflect distributional proximity rather than intrinsic corpus quality; (ii) the augmentation result in Figure 2 may compare a 20M-token original-only baseline with runs that see 20M original plus 20M synthetic tokens, so the gain could be driven by data volume unless a like-for-like token budget control is reported; and (iii) Section 5 itself flags that semantic preservation and hallucination are unmeasured ('we need to understand whether LLMs' rephrasing causes subtle shifts in clinical meaning and the extent of possible hallucinations'). These are important limitations of the empirical claims, but none of them makes the prediction equivalent to the input by construction, and the paper's self-citations are not load-bearing.

Assumptions & free parameters 1 free parameters · 4 assumptions · 0 invented entities

The paper introduces no new mathematical or physical entities. Its contribution is empirical; the assumptions are domain-level premises about text fidelity, distributional validity of the temporal shift, proxy validity of small-model perplexity, and privacy preservation. None of these are established inside the paper.

free parameters (1)
  • Token budget for corpora
    All pretraining corpora are capped at 20M tokens, a choice made for efficient experimentation. The augmentation claim depends on this budget.
assumptions (4)
  • domain assumption LLM rephrasing of clinical notes preserves enough clinical content and meaning to serve as useful pretraining data.
    The entire method assumes rephrasing retains the clinical information needed for downstream tasks; Section 5 explicitly lists 'subtle shifts in clinical meaning and the extent of possible hallucinations' as unmeasured.
  • domain assumption MIMIC-IV notes from 2014+ constitute a valid out-of-distribution test for models trained on MIMIC-III-derived synthetic data.
    The temporal shift (Section 3.1) is the only guard against distributional overlap; if MIMIC-III and IV discharge summaries are near-identical in style, the perplexity advantage over Asclepius is partly trivial.
  • domain assumption Perplexity of a 110M TinyStories-initialized model reflects pretraining corpus quality.
    The claim of reduced perplexity (Figure 1) is measured on a tiny model; transfer of this ranking to larger models is assumed.
  • domain assumption Synthetic rephrased corpora can be shared or used without exposing patient information.
    The privacy motivation in Section 1 presumes rephrased text is not identifiable, but no PHI-leakage or re-identification evaluation is performed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Rephrasing Electronic Health Records for Pretraining Clinical Language Models." pith.science (2026). https://pith.science/paper/SQD5P2VZ

@misc{pith2026241118940,
  author       = {Pith},
  title        = {Pith review of: Rephrasing Electronic Health Records for Pretraining Clinical Language Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SQD5P2VZ}},
  note         = {Machine review of arXiv:2411.18940}
}
read the original abstract

Clinical language models are important for many applications in healthcare, but their development depends on access to extensive clinical text for pretraining. However, obtaining clinical notes from electronic health records (EHRs) at scale is challenging due to patient privacy concerns. In this study, we rephrase existing clinical notes using LLMs to generate synthetic pretraining corpora, drawing inspiration from previous work on rephrasing web data. We examine four popular small-sized LLMs (<10B) to create synthetic clinical text to pretrain both decoder-based and encoder-based language models. The method yields better results in language modeling and downstream tasks than previous synthesis approaches without referencing real clinical text. We find that augmenting original clinical notes with synthetic corpora from different LLMs improves performances even at a small token budget, showing the potential of this method to support pretraining at the institutional level or be scaled to synthesize large-scale clinical corpora.

Figures

Figures reproduced from arXiv: 2411.18940 by the authors.

Figure 1
Figure 1. Perplexity scores of language models pretrained on different synthetic sources. Ascplepius refers the [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Perplexity scores of language models pre [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Augmentation performance with synthetic data using different prompts. other hand, provide more stable benefits when com￾bined with original notes. These observations high￾light the lack of a single LLM that consistently outperforms others for handling clinical text. To further analyze the impact of prompts, we explore different prompt settings for each LLM for augmentation in [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Multimodal Large Language Models for Image, Text, and Speech Data Augmentation: A Survey

    cs.CV 2025-01 conditional novelty 4.0 of 10

    A literature review cataloging LLM-based augmentation methods across image, text, and speech, with a taxonomy of techniques, limitations, and suggested fixes.

Reference graph

Works this paper leans on

40 extracted references · 15 canonical work pages · cited by 1 Pith paper

  1. [1]

    Marah Abdin, Jyoti Aneja, Hany Awadalla, Ahmed Awadallah, Ammar Ahmad Awan, Nguyen Bach, and et al. 2024. https://arxiv.org/abs/2404.14219 Phi-3 technical report: A highly capable language model locally on your phone . arXiv [cs.CL]

  2. [2]

    Emily Alsentzer, John Murphy, William Boag, Wei-Hung Weng, Di Jindi, Tristan Naumann, and Matthew McDermott. 2019. https://aclanthology.org/W19-1909 Publicly available clinical BERT embeddings . In Proceedings of the 2nd Clinical Natural Language Processing Workshop, pages 72--78, Minneapolis, Minnesota, USA. Association for Computational Linguistics

  3. [3]

    Timothy Baldwin, Paul Cook, Marco Lui, Andrew MacKinlay, and Li Wang. 2013. https://aclanthology.org/I13-1041.pdf How noisy social media text, how diffrnt social media sources? In Proceedings of the Sixth International Joint Conference on Natural Language Processing, pages 356--364

  4. [4]

    Teva D Brender, Leo A Celi, and Julien M Cobert. 2024. https://link.springer.com/article/10.1007/s11606-024-09093-y Clinical notes as narratives: Implications for large language models in healthcare . Journal of general internal medicine, pages 1--3

  5. [5]

    Tiago K Colicchio, Pavithra I Dissanayake, and James J Cimino. 2020. https://www.ncbi.nlm.nih.gov/pubmed/33936404 The anatomy of clinical documentation: an assessment and classification of narrative note sections format and content . AMIA ... Annual Symposium proceedings / AMIA Symposium. AMIA Symposium, 2020:319--328

  6. [6]

    Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, and et al. 2024. https://arxiv.org/abs/2407.21783 The llama 3 herd of models . arXiv [cs.AI]

  7. [7]

    Ronen Eldan and Yuanzhi Li. 2023. https://arxiv.org/abs/2305.07759 TinyStories : How small can language models be and still speak coherent english? arXiv [cs.CL]

  8. [8]

    Kadija Ferryman, Maxine Mackintosh, and Marzyeh Ghassemi. 2023. http://dx.doi.org/10.1056/NEJMra2214964 Considering biased data as informative artifacts in AI -assisted health care . The New England journal of medicine, 389(9):833--838

Show all 40 references
  1. [9]

    Gemma Team and et al. 2024. https://arxiv.org/abs/2408.00118 Gemma 2: Improving open language models at a practical size . arXiv [cs.CL]

  2. [10]

    Aldren Gonzales, Guruprabha Guruswamy, and Scott R Smith. 2023. http://dx.doi.org/10.1371/journal.pdig.0000082 Synthetic data in health care: A narrative review . PLOS digital health, 2(1):e0000082

  3. [11]

    Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, Lélio Renard Lavaud, Marie-Anne Lachaux, Pierre Stock, Teven Le Scao, Thibaut Lavril, Thomas W...

  4. [12]

    Lavender Yao Jiang, Xujin Chris Liu, Nima Pour Nejatian, Mustafa Nasir-Moin, Duo Wang, Anas Abidin, Kevin Eaton, Howard Antony Riina, Ilya Laufer, Paawan Punjabi, Madeline Miceli, Nora C Kim, Cordelia Orillac, Zane Schnurman, Christopher Livia, Hannah Weiss, David Kurland, Sea...

  5. [13]

    Alistair E W Johnson, Lucas Bulgarelli, Lu Shen, Alvin Gayles, Ayad Shammout, Steven Horng, Tom J Pollard, Benjamin Moody, Brian Gow, Li-Wei H Lehman, Leo A Celi, and Roger G Mark. 2023. http://dx.doi.org/10.1038/s41597-022-01899-x MIMIC- IV , a freely accessible electronic he...

  6. [14]

    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. http://dx.doi.org/10.1038/sdata.2016.35 MIMIC- III , a freely accessible critical care database . Scienti...

  7. [15]

    Sunjun Kweon, Junu Kim, Jiyoun Kim, Sujeong Im, Eunbyeol Cho, Seongsu Bae, Jungwoo Oh, Gyubok Lee, Jong Hak Moon, Seng Chan You, Seungjin Baek, Chang Hoon Han, Yoon Bin Jung, Yohan Jo, and Edward Choi. 2024. https://aclanthology.org/2024.findings-acl.305.pdf Publicly shareable...

  8. [16]

    Jinhyuk Lee, Wonjin Yoon, Sungdong Kim, Donghyeon Kim, Sunkyu Kim, Chan Ho So, and Jaewoo Kang. 2020. http://dx.doi.org/10.1093/bioinformatics/btz682 BioBERT : a pre-trained biomedical language representation model for biomedical text mining . Bioinformatics, 36(4):1234--1240

  9. [17]

    Eric Lehman, Evan Hernandez, Diwakar Mahajan, Jonas Wulff, Micah J Smith, Zachary Ziegler, Daniel Nadler, Peter Szolovits, Alistair Johnson, and Emily Alsentzer. 2023. https://proceedings.mlr.press/v209/eric23a.html Do we still need clinical language models? In Proceedings of ...

  10. [18]

    Patrick Lewis, Myle Ott, Jingfei Du, and Veselin Stoyanov. 2020. https://aclanthology.org/2020.clinicalnlp-1.17 Pretrained language models for biomedical and clinical tasks: Understanding and extending the State-of-the-Art . In Proceedings of the 3rd Clinical Natural Language ...

  11. [19]

    Fenglin Liu, Tingting Zhu, Xian Wu, Bang Yang, Chenyu You, Chenyang Wang, Lei Lu, Zhangdaihong Liu, Yefeng Zheng, Xu Sun, Yang Yang, Lei Clifton, and David A Clifton. 2023. http://dx.doi.org/10.1038/s41746-023-00952-2 A medical multimodal large language model for future pandem...

  12. [20]

    Jinghui Liu, Daniel Capurro, Anthony Nguyen, and Karin Verspoor. 2022. http://dx.doi.org/10.1016/j.jbi.2022.104149 ``note bloat'' impacts deep learning-based NLP models for clinical prediction tasks . Journal of biomedical informatics, 133:104149

  13. [21]

    Jinghui Liu, Daniel Capurro, Anthony Nguyen, and Karin Verspoor. 2024. https://ebooks.iospress.nl/doi/10.3233/SHTI231244 Uncovering variations in clinical notes for NLP modeling . In Studies in Health Technology and Informatics, Studies in health technology and informatics. IOS Press

  14. [22]

    Pratyush Maini, Skyler Seto, Richard Bai, David Grangier, Yizhe Zhang, and Navdeep Jaitly. 2024. https://aclanthology.org/2024.acl-long.757.pdf Rephrasing the web: A recipe for compute and data-efficient language modeling . In Proceedings of the 62nd Annual Meeting of the Asso...

  15. [23]

    Harsha Nori, Nicholas King, Scott Mayer McKinney, Dean Carignan, and Eric Horvitz. 2023. https://arxiv.org/abs/2303.13375 Capabilities of GPT-4 on medical challenge problems . arXiv [cs.CL]

  16. [24]

    Alexey Romanov and Chaitanya Shivade. 2018. https://aclanthology.org/D18-1187 Lessons from natural language inference in the clinical domain . In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pages 1586--1596, Brussels, Belgium. Associ...

  17. [25]

    Adam Rule, Steven Bedrick, Michael F Chiang, and Michelle R Hribar. 2021. http://dx.doi.org/10.1001/jamanetworkopen.2021.15334 Length and redundancy of outpatient progress notes across a decade at an academic medical center . JAMA network open, 4(7):e2115334

  18. [26]

    Filip Rusak, Bevan Koopman, Nathan J Brown, Kevin Chu, Jinghui Liu, and Anthony Nguyen. 2023. https://aclanthology.org/2023.alta-1.8 Catching misdiagnosed limb fractures in the emergency department using cross-institution transfer learning . In Proceedings of the 21st Annual W...

  19. [27]

    Laleh Seyyed-Kalantari, Haoran Zhang, Matthew B A McDermott, Irene Y Chen, and Marzyeh Ghassemi. 2021. https://www.nature.com/articles/s41591-021-01595-0 Underdiagnosis bias of artificial intelligence algorithms applied to chest radiographs in under-served patient populations ...

  20. [28]

    Karan Singhal, Shekoofeh Azizi, Tao Tu, S Sara Mahdavi, Jason Wei, Hyung Won Chung, Nathan Scales, Ajay Tanwani, Heather Cole-Lewis, Stephen Pfohl, Perry Payne, Martin Seneviratne, Paul Gamble, Chris Kelly, Abubakr Babiker, Nathanael Schärli, Aakanksha Chowdhery, Philip Mansfi...

  21. [29]

    Jackson Steinkamp, Jacob J Kantrowitz, and Subha Airan-Javia. 2022. http://dx.doi.org/10.1001/jamanetworkopen.2022.33348 Prevalence and sources of duplicate information in the electronic medical record . JAMA network open, 5(9):e2233348

  22. [30]

    Weiyi Sun, Anna Rumshisky, and Ozlem Uzuner. 2013. http://dx.doi.org/10.1136/amiajnl-2013-001628 Evaluating temporal relations in clinical text: 2012 i2b2 challenge . Journal of the American Medical Informatics Association: JAMIA, 20(5):806--813

  23. [31]

    Ruixiang Tang, Xiaotian Han, Xiaoqian Jiang, and Xia Hu. 2023. https://arxiv.org/abs/2303.04360 Does synthetic data generation of LLMs help clinical text mining? arXiv [cs.CL]

  24. [32]

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, Dan Bikel, Lukas Blecher, Cristian Canton Ferrer, Moya Chen, Guillem Cucurull, David Esiobu, Jude Fernandes, Jeremy Fu, W...

  25. [33]

    Özlem Uzuner, Brett R South, Shuying Shen, and Scott L DuVall. 2011. http://dx.doi.org/10.1136/amiajnl-2011-000203 2010 i2b2/ VA challenge on concepts, assertions, and relations in clinical text . Journal of the American Medical Informatics Association: JAMIA, 18(5):552--556

  26. [34]

    Hanyin Wang, Chufan Gao, Christopher Dantona, Bryan Hull, and Jimeng Sun. 2024. https://arxiv.org/abs/2309.12625 DRG - LLaMA : tuning LLaMA model to predict diagnosis-related group for hospitalized patients . NPJ digital medicine, 7(1):16

  27. [35]

    An Yang, Baosong Yang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Zhou, Chengpeng Li, Chengyuan Li, Dayiheng Liu, Fei Huang, Guanting Dong, Haoran Wei, Huan Lin, Jialong Tang, Jialin Wang, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Ma, Jianxin Yang, Jin Xu, Jingren Zhou, Jinze...

  28. [36]

    Xi Yang, Aokun Chen, Nima PourNejatian, Hoo Chang Shin, Kaleb E Smith, Christopher Parisien, Colin Compas, Cheryl Martin, Anthony B Costa, Mona G Flores, Ying Zhang, Tanja Magoc, Christopher A Harle, Gloria Lipori, Duane A Mitchell, William R Hogan, Elizabeth A Shenkman, Jiang...

  29. [37]

    Jiayi Yuan, Ruixiang Tang, Xiaoqian Jiang, and Xia Hu. 2023. https://www.ncbi.nlm.nih.gov/pubmed/38222339 Large language models for healthcare data augmentation: An example on patient-trial matching . AMIA ... Annual Symposium proceedings / AMIA Symposium. AMIA Symposium, 2023...

  30. [38]

    Travis Zack, Eric Lehman, Mirac Suzgun, Jorge A Rodriguez, Leo Anthony Celi, Judy Gichoya, Dan Jurafsky, Peter Szolovits, David W Bates, Raja-Elie E Abdulnour, Atul J Butte, and Emily Alsentzer. 2024. https://doi.org/10.1016/S2589-7500(23)00225-X Assessing the potential of GPT...

  31. [39]

    online" 'onlinestring :=

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...

  32. [40]

    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 gl...

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.