REVIEW 3 major objections 6 minor 2 cited by
SynEHRgy: Synthesizing Mixed-Type Structured Electronic Health Records using Decoder-Only Transformers
T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A small decoder-only transformer can generate synthetic electronic health records spanning demographics, ICD codes, and irregularly sampled time series.
desk verdict Per-type fidelity and a useful quantization ablation, but the paper's headline mixed-type claim is never actually tested on joint dependencies. 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 tokenization strategy for mixed-type records. Every continuous value is uniformly quantized into equal-width bins, each bin getting its own token; time intervals between irregular measurements are similarly discretized; ICD codes and categorical variables get one token each; and special tokens (<s>, </s>, </covars>, </labels>, </ts>, </visit>, <PAD>) mark record structure. A small GPT-2-style decoder-only transformer is trained with the causal language-modeling objective to predict the next token, and generation proceeds autoregressively from <s> until </s>; numerical values are recovered by uniform sampling inside the predicted bin. This machinery lets one model handle discrete and continuous data in a single sequence while keeping token counts small.
What would settle it
Generate synthetic time series with the published pipeline and compare real and generated values within each bin, for example with a Kolmogorov-Smirnov test on heart-rate values inside a single bin; if within-bin values are systematically off, or if changing the number of bins from coarse to fine swings the reported fidelity and utility scores by a large margin, the central claim that binning preserves the distribution is false.
Extended reading notes
Core claim
The central claim is that discretizing structured EHR data into tokens and learning their next-token distribution lets a decoder-only transformer capture the joint distribution over covariates, ICD codes, and irregular time series well enough for practical synthetic-data uses. The authors demonstrate this on MIMIC-III with a small GPT-2-sized model, measuring fidelity through n-gram correlations for codes and precision/recall/density/coverage plus correlation-matrix error for time-series embeddings, utility through phenotype and mortality prediction with varying amounts of synthetic augmentation, and privacy through membership-inference distance statistics. Their reported results show the method ahead of the baselines on bigram and trigram code fidelity and on time-series precision, recall, and coverage, and closest to the real-data ceiling in train-on-synthetic/test-on-real utility. The paper frames the numerical-tokenization step as the load-bearing innovation: without it, the ablated text-based model performs markedly worse.
Load-bearing premise
The method assumes that chopping every continuous measurement into a fixed set of value bins and then drawing a random value inside the bin preserves the clinically meaningful distribution of the original measurements.
Editorial extensions
If this is right
- A single decoder-only transformer can jointly model discrete codes and irregular continuous measurements, so mixed-type EHR generation does not require separate GAN or diffusion components per data type.
- Irregularly sampled time series with informative missingness can be represented faithfully as token sequences, as shown by the co-occurrence and correlation-matrix results.
- Synthetic records from this method can replace real training data for mortality and phenotype prediction with only a small AUROC drop, and can augment small training sets.
- Because new variables only require adding tokens to the dictionary, the tokenization extends to new data sources without rearchitecting the model.
- The approach inherits the context-length limit: very long patient histories may exceed the 1024-token window used here, a limitation the paper states in its conclusion.
Reading between the lines
- The bin width and number of bins are not reported; if treated as a tunable hyperparameter, the same pipeline could plausibly be pushed toward higher fidelity with a finer grid or stronger privacy with a coarser grid, so the reported balance is not a fixed property of the method.
- Because the model sees only bin identities, it cannot generate values outside the observed range or capture sub-bin structure; downstream tasks that need exact lab values, such as medication dosing rules, would require a different de-tokenization or a second-stage model.
- The membership-inference evaluation uses distance distributions that can miss some memorization; a stronger attack targeting exact bin-token sequences might reveal more leakage than the reported near-chance AUROC.
- The same tokenization recipe could transfer to non-medical mixed-type longitudinal records, such as sensor logs or administrative event streams, where irregular timing and categorical-numerical mixtures are common.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents SynEHRgy, a method for generating synthetic longitudinal electronic health records with a decoder-only transformer. It tokenizes demographics, labels, ICD codes, irregularly sampled time series, and time intervals, trains a small GPT-2-style model on token sequences from MIMIC-III, and generates new patient records autoregressively. Evaluation covers per-type fidelity (ICD n-gram correlations; PRDC, correlation MSE, and missingness co-occurrence for time series), utility (TSTR and data-augmentation AUROC for phenotype and mortality prediction), and privacy (membership-inference distances). The central claim is that a single GPT-like decoder-only transformer with a tailored tokenization strategy can generate high-quality mixed-type structured EHR data across multiple visits.
Significance. If the empirical claims hold, SynEHRgy is a useful demonstration that a generic causal language model can match or beat specialized generative models for structured EHR data, especially irregularly sampled time series. Strengths include the use of a public benchmark, comparison against several relevant baselines, and evaluation along fidelity, utility, and privacy axes; the TSTR AUROC is close to the validation-split reference. However, the reported evidence is mostly per-data-type and does not directly verify the paper's central 'mixed-type' claim. The tokenization details are also not fully disclosed, which limits reproducibility and makes the main mechanism difficult to audit.
major comments (3)
- [Section 4.2, Tables 1-4] The abstract and introduction claim generation of mixed-type structured EHRs, but the evaluation never checks dependencies across data types. Section 4.2 evaluates ICD fidelity with n-gram correlations and time-series fidelity with PRDC/MSE_corr separately, and the utility tasks in Tables 3 and 4 use time-series embeddings only and do not involve ICD codes. A model could match all reported per-type statistics while generating clinically inconsistent joint records (e.g., normal vitals paired with septic-shock codes). This is a missing verification of the central claim. Please add a joint fidelity test, such as comparing the conditional distribution of time-series statistics given ICD codes or phenotypes between real and synthetic data, or a discriminative test on concatenated representations.
- [Sections 3.2 and 3.4] The method's numerical tokenization relies on uniform quantization, but the paper reports neither the number nor the width of bins per variable. De-tokenization uses uniform sampling inside each bin, so the generated continuous values cannot reproduce the within-bin distribution unless the bins are very narrow. This choice is an unauditable free parameter that affects every fidelity, utility, and privacy result. Please report the full binning configuration and add a sensitivity analysis (e.g., coarse versus fine grids) to show that the method is robust to this choice.
- [Section 5.1 and NeurIPS checklist item 7] The main empirical claims are not accompanied by error bars in Tables 1, 3, 4, and 5, and the standard deviations in Table 2 are not explained (over random seeds, train splits, or bootstrap samples). The checklist explicitly acknowledges that k-fold or multi-seed evaluation was not performed. Without uncertainty estimates, the reported differences that are small, such as utility AUROCs and MIA metrics, cannot be distinguished from noise. Please provide confidence intervals or multiple-run variability for the key comparisons, at least for the central fidelity and TSTR claims.
minor comments (6)
- [Section 4.4] The phrase 'context length of size 4098' appears to be a typo; presumably 4096 was intended.
- [Table 2] Please state explicitly what the parenthetical values are (standard deviation over which source of randomness, such as seeds or bootstrap samples).
- [Figure 3] The missingness co-occurrence is only shown visually; a numerical summary, such as the MSE between the co-occurrence matrices of real and synthetic data, would make the claim quantitative.
- [Related Work] CEHR-GPT is described as a GPT-based longitudinal EHR generator; consider including it as a baseline or explaining why a comparison is omitted.
- [Checklist item 12] The license question is answered as NA although the paper uses MIMIC-III; the dataset's license and terms of use should be stated.
- [Section 3.4] The statement that uniform sampling 'ensures that the generated values are representative' is too strong, since uniform sampling within a bin ignores the distribution of values inside that bin.
Circularity Check
No significant circularity; the evaluation is empirical and self-contained against external benchmarks.
full rationale
The paper makes no formal derivation or first-principles prediction whose output is equivalent to its input. The central claim is empirical: a decoder-only transformer with the proposed tokenization generates synthetic EHRs whose fidelity, utility, and privacy are measured against the held-out MIMIC-III test split and against external baselines such as HALO, PromptEHR, RTSGAN, and TimEHR. The tokenization and de-tokenization procedures (uniform quantization into bins, then uniform sampling within the bin) are modeling choices, not fitted quantities that are later renamed as predictions. The evaluation metrics are applied symmetrically to the proposed method and to baselines, and the test split is used as a real-data reference rather than as a fitted target. The only self-citation is the authors' own TimEHR baseline, which appears in related work and as a comparison method; it is not load-bearing for the method's validity or for any theoretical uniqueness claim. Accordingly, no circular step can be exhibited with a specific reduction, and the appropriate finding is a low score reflecting only a minor, non-load-bearing self-citation.
Assumptions & free parameters
free parameters (5)
- Uniform quantization bin grid per numerical variable =
Not reported
- Time interval quantization bin grid =
Not reported
- Context length =
1024 tokens
- Generation sampling temperature and top-k =
temperature 0.7, top-k 50
- Model and training hyperparameters =
4 layers, 4 heads, 384 dims, lr 3e-4, 20 epochs, batch 128
assumptions (5)
- domain assumption Autoregressive next-token prediction over the tokenized stream approximates the joint distribution of covariates, codes, and irregular time series.
- domain assumption Uniform quantization followed by uniform within-bin sampling preserves the distribution of continuous clinical values.
- domain assumption The MIMIC-III preprocessing pipeline of Harutyunyan et al. defines the target distribution.
- domain assumption The distance-based membership inference attack from EHR-Safe is a valid privacy test.
- domain assumption PRDC metrics and n-gram correlations are sufficient fidelity measures.
Cite this review
Pith. "Pith review of SynEHRgy: Synthesizing Mixed-Type Structured Electronic Health Records using Decoder-Only Transformers." pith.science (2026). https://pith.science/paper/GZHGIILI
@misc{pith2026241113428,
author = {Pith},
title = {Pith review of: SynEHRgy: Synthesizing Mixed-Type Structured Electronic Health Records using Decoder-Only Transformers},
year = {2026},
howpublished = {\url{https://pith.science/paper/GZHGIILI}},
note = {Machine review of arXiv:2411.13428}
}
read the original abstract
Generating synthetic Electronic Health Records (EHRs) offers significant potential for data augmentation, privacy-preserving data sharing, and improving machine learning model training. We propose a novel tokenization strategy tailored for structured EHR data, which encompasses diverse data types such as covariates, ICD codes, and irregularly sampled time series. Using a GPT-like decoder-only transformer model, we demonstrate the generation of high-quality synthetic EHRs. Our approach is evaluated using the MIMIC-III dataset, and we benchmark the fidelity, utility, and privacy of the generated data against state-of-the-art models.
Figures
Forward citations
Cited by 2 Pith papers
-
Privacy-Preserving Tabular Synthetic Data Generation Using TabularARGN
TabularARGN is a discretization-based auto-regressive network claimed to generate high-fidelity, privacy-robust synthetic tabular data, competitive with diffusion and GAN baselines.
-
TabularARGN: A Flexible and Efficient Auto-Regressive Framework for Generating High-Fidelity Synthetic Data
TabularARGN is a lightweight any-order auto-regressive model that matches or beats state-of-the-art tabular synthetic data quality while training up to orders of magnitude faster, including for sequential two-table datasets.
Reference graph
Works this paper leans on
-
[1]
The Future of Digital Health with Federated Learning
Nicola Rieke et al. “The Future of Digital Health with Federated Learning”. In: npj Digital Medicine 3.1 (Sept. 2020), p. 119. ISSN : 2398-6352. DOI: 10.1038/s41746-020-00323-1 . arXiv: 2003.08119 [cs]
work page Pith review arXiv 2020
-
[2]
Privacy-Preserving Artificial Intelligence in Healthcare: Techniques and Applications
Nazish Khalid et al. “Privacy-Preserving Artificial Intelligence in Healthcare: Techniques and Applications”. In: Computers in Biology and Medicine 158 (May 2023), p. 106848. ISSN : 0010-4825. DOI: 10.1016/j.compbiomed.2023.106848
arXiv 2023
-
[3]
A Review of Challenges and Opportunities in Machine Learning for Health
Marzyeh Ghassemi et al. “A Review of Challenges and Opportunities in Machine Learning for Health”. In: AMIA Summits on Translational Science Proceedings 2020 (May 2020), pp. 191–
work page 2020
-
[4]
Amelia L. M. Tan et al. “Informative Missingness: What Can We Learn from Patterns in Miss- ing Laboratory Data in the Electronic Health Record?” In: Journal of Biomedical Informatics 139 (Mar. 2023), p. 104306. ISSN : 1532-0464. DOI: 10.1016/j.jbi.2023.104306
arXiv 2023
-
[5]
Generating Multi-label Discrete Patient Records Using Generative Adver- sarial Networks
Edward Choi et al. “Generating Multi-label Discrete Patient Records Using Generative Adver- sarial Networks”. In: arXiv: Learning (Mar. 2017)
work page 2017
-
[6]
Amirsina Torfi and Edward A. Fox.CorGAN: Correlation-Capturing Convolutional Generative Adversarial Networks for Generating Synthetic Healthcare Records . Mar. 2020. DOI: 10 . 48550/arXiv.2001.09346. arXiv: 2001.09346 [cs, stat]
-
[7]
EVA: Generating Longitudinal Electronic Health Records Using Conditional Variational Autoencoders
Siddharth Biswal et al. EVA: Generating Longitudinal Electronic Health Records Using Conditional Variational Autoencoders. Dec. 2020. DOI: 10.48550/arXiv.2012.10020 . arXiv: 2012.10020 [cs]
work page Pith review arXiv doi:10.48550/arxiv.2012.10020 2020
-
[8]
PromptEHR: Conditional Electronic Healthcare Records Generation with Prompt Learning
Zifeng Wang and Jimeng Sun. PromptEHR: Conditional Electronic Healthcare Records Generation with Prompt Learning. Oct. 2022. DOI: 10.48550/arXiv.2211.01761. arXiv: 2211.01761 [cs]
work page Pith review arXiv doi:10.48550/arxiv.2211.01761 2022
Show all 64 references
-
[9]
Towards Generating Real-World Time Series Data
Hengzhi Pei et al. “Towards Generating Real-World Time Series Data”. In: (Dec. 2021).DOI: 10.1109/ICDM51629.2021.00058
2021
- [10]
- [11]
-
[12]
Synthesize High-Dimensional Longitudinal Electronic Health Records via Hierarchical Autoregressive Language Model
Brandon Theodorou, Cao Xiao, and Jimeng Sun. “Synthesize High-Dimensional Longitudinal Electronic Health Records via Hierarchical Autoregressive Language Model”. In: Nature Communications 14.1 (Aug. 2023), p. 5305. ISSN : 2041-1723. DOI: 10.1038/s41467-023- 41093-0
2023 doi
- [13]
- [14]
- [15]
- [16]
-
[17]
MIMIC-III, a Freely Accessible Critical Care Database
Alistair E. W. Johnson et al. “MIMIC-III, a Freely Accessible Critical Care Database”. In: Scientific Data 3.1 (May 2016), p. 160035. ISSN : 2052-4463. DOI: 10.1038/sdata.2016.35
2016 doi
-
[18]
Synthesizing Electronic Health Records Using Improved Genera- tive Adversarial Networks
Mrinal Kanti Baowaly et al. “Synthesizing Electronic Health Records Using Improved Genera- tive Adversarial Networks”. In: Journal of the American Medical Informatics Association 26.3 (Mar. 2019), pp. 228–241. ISSN : 1067-5027, 1527-974X. DOI: 10.1093/jamia/ocy142
2019 doi
-
[19]
SynTEG: A Framework for Temporal Structured Electronic Health Data Simulation
Ziqi Zhang et al. “SynTEG: A Framework for Temporal Structured Electronic Health Data Simulation”. In: Journal of the American Medical Informatics Association 28.3 (Mar. 2021), pp. 596–604. ISSN : 1527-974X. DOI: 10.1093/jamia/ocaa262
2021 doi
-
[20]
Multi-Label Clinical Time-Series Generation via Conditional GAN
Chang Lu et al. “Multi-Label Clinical Time-Series Generation via Conditional GAN”. In: IEEE Transactions on Knowledge and Data Engineering (2023), pp. 1–13. ISSN : 1558-2191. DOI: 10.1109/TKDE.2023.3310909
2023
-
[21]
Synthetic Electronic Health Records Generated with Variational Graph Autoencoders
Giannis Nikolentzos et al. “Synthetic Electronic Health Records Generated with Variational Graph Autoencoders”. In: npj Digital Medicine 6.1 (Apr. 2023), pp. 1–12. ISSN : 2398-6352. DOI: 10.1038/s41746-023-00822-x
2023 doi
-
[22]
MedDiff: Generating Electronic Health Records Using Accelerated Denoising Diffusion Model
Huan He et al. MedDiff: Generating Electronic Health Records Using Accelerated Denoising Diffusion Model. Feb. 2023. DOI: 10 . 48550 / arXiv . 2302 . 04355. arXiv: 2302 . 04355 [cs]
2023
- [23]
- [24]
- [25]
- [26]
-
[27]
Real-Valued (Medical) Time Series Generation with Recurrent Conditional GANs
Cristóbal Esteban, Stephanie L. Hyland, and Gunnar Rätsch. “Real-Valued (Medical) Time Series Generation with Recurrent Conditional GANs”. In: arXiv: Machine Learning (June 2017)
2017
-
[28]
Time-Series Generative Adversarial Networks
Jinsung Yoon, Daniel Jarrett, and Mihaela van der Schaar. “Time-Series Generative Adversarial Networks”. In: (Sept. 2019)
2019
-
[29]
Using GANs for Sharing Networked Time Series Data: Challenges, Initial Promise, and Open Questions
Zinan Lin et al. “Using GANs for Sharing Networked Time Series Data: Challenges, Initial Promise, and Open Questions”. In: Proceedings of the ACM Internet Measurement Conference. Virtual Event USA: ACM, Oct. 2020, pp. 464–483. ISBN : 978-1-4503-8138-3. DOI: 10.1145/ 3419394.3423643
2020
-
[30]
Generating Synthetic Mixed-Type Longitudinal Electronic Health Records for Artificial Intelligent Applications
Jin Li et al. “Generating Synthetic Mixed-Type Longitudinal Electronic Health Records for Artificial Intelligent Applications”. In: npj Digital Medicine 6.1 (May 2023), pp. 1–18. ISSN : 2398-6352. DOI: 10.1038/s41746-023-00834-7
2023 doi
-
[31]
EHR-Safe: Generating High-Fidelity and Privacy-Preserving Synthetic Electronic Health Records
Jinsung Yoon et al. “EHR-Safe: Generating High-Fidelity and Privacy-Preserving Synthetic Electronic Health Records”. In: npj Digital Medicine 6.1 (Aug. 2023), pp. 1–11. ISSN : 2398-
2023
-
[32]
Diffusion-TS: Interpretable Diffusion for General Time Series Generation
Xinyu Yuan and Yan Qiao. “Diffusion-TS: Interpretable Diffusion for General Time Series Generation”. In: The Twelfth International Conference on Learning Representations . Oct. 2023
2023
-
[33]
TimeLDM: Latent Diffusion Model for Unconditional Time Series Generation
Jian Qian et al. TimeLDM: Latent Diffusion Model for Unconditional Time Series Generation. July 2024. arXiv: 2407.04211 [cs]
2024 arXiv
-
[34]
TimeAutoDiff: Combining Autoencoder and Diffusion Model for Time Series Tabular Data Synthesizing
Namjoon Suh et al. TimeAutoDiff: Combining Autoencoder and Diffusion Model for Time Series Tabular Data Synthesizing. https://arxiv.org/abs/2406.16028v2
- [35]
- [36]
- [37]
-
[38]
Leveraging VQ-V AE Tokenization for Autoregressive Modeling of Medical Time Series
Yoonhyung Lee, Younhyung Chae, and Kyomin Jung. “Leveraging VQ-V AE Tokenization for Autoregressive Modeling of Medical Time Series”. In: Artificial Intelligence in Medicine 154 (Aug. 2024), p. 102925. ISSN : 0933-3657. DOI: 10.1016/j.artmed.2024.102925
2024
-
[39]
Chronos: Learning the Language of Time Series
Abdul Fatir Ansari et al. Chronos: Learning the Language of Time Series. Mar. 2024. arXiv: 2403.07815 [cs]
2024 arXiv
-
[40]
Synthetic Time Series Generation for Decision Intelli- gence Using Large Language Models
Alexandru Grigoras, and Florin Leon. “Synthetic Time Series Generation for Decision Intelli- gence Using Large Language Models”. In: Mathematics 12.16 (Aug. 2024), p. 2494. ISSN : 2227-7390. DOI: 10.3390/math12162494
2024 doi
-
[41]
Language Models Are Unsupervised Multitask Learners
Alec Radford et al. “Language Models Are Unsupervised Multitask Learners”. In: OpenAI blog 1.8 (2019), p. 9
2019
-
[42]
Multitask Learning and Benchmarking with Clinical Time Series Data
Hrayr Harutyunyan et al. “Multitask Learning and Benchmarking with Clinical Time Series Data”. In: Scientific Data 6.1 (June 2019), p. 96. ISSN : 2052-4463. DOI: 10.1038/s41597- 019-0103-9. arXiv: 1703.07771 [cs, stat]
2019 arXiv
- [43]
-
[44]
LightGBM: A Highly Efficient Gradient Boosting Decision Tree
Guolin Ke et al. “LightGBM: A Highly Efficient Gradient Boosting Decision Tree”. In: Advances in Neural Information Processing Systems. V ol. 30. Curran Associates, Inc., 2017
2017
-
[45]
Unified Training of Universal Time Series Forecasting Transformers
Gerald Woo et al. Unified Training of Universal Time Series Forecasting Transformers. Feb
- [46]
-
[47]
[Yes] " is generally preferable to
Karan Singhal et al. Large Language Models Encode Clinical Knowledge. Dec. 2022. DOI: 10.48550/arXiv.2212.13138. arXiv: 2212.13138 [cs]. 10 NeurIPS Paper Checklist The checklist is designed to encourage best practices for responsible machine learning research, addressing issue...
-
[50]
We have deeply evaluated the quality of synthetic data in terms of utility, fidelity and privacy and compared it with the state-of-the-art models
Claims Question: Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? Answer: [Yes] Justification: Our work is mostly empirical rather than theoretical. We have deeply evaluated the quality of synthetic data in terms ...
-
[51]
Limitations
Limitations Question: Does the paper discuss the limitations of the work performed by the authors? Answer: [Yes] 11 Justification: In the conclusion section, we discussed the limitations of our work such as the tokenization strategy might not be efficient for very large sequen...
-
[52]
Guidelines: • The answer NA means that the paper does not include theoretical results
Theory Assumptions and Proofs Question: For each theoretical result, does the paper provide the full set of assumptions and a complete (and correct) proof? Answer: [NA] Justification: Our work is mostly empirical and does not include theoretical results. Guidelines: • The answ...
-
[53]
The model architecture and training details are provided in the main paper
Experimental Result Reproducibility Question: Does the paper fully disclose all the information needed to reproduce the main ex- perimental results of the paper to the extent that it affects the main claims and/or conclusions of the paper (regardless of whether the code and da...
-
[54]
We will release the code and preprocessing pipeline upon acceptance
Open access to data and code Question: Does the paper provide open access to the data and code, with sufficient instruc- tions to faithfully reproduce the main experimental results, as described in supplemental material? Answer: [Yes] Justification: The dataset (MIMIC-III) is ...
-
[55]
The labels for downstream tasks are also selected using the same pipeline
Experimental Setting/Details Question: Does the paper specify all the training and test details (e.g., data splits, hyper- parameters, how they were chosen, type of optimizer, etc.) necessary to understand the results? Answer: [Yes] Justification: We have used a famous preproc...
-
[56]
Experiment Statistical Significance Question: Does the paper report error bars suitably and correctly defined or other appropriate information about the statistical significance of the experiments? Answer: [No] Justification: As our training split is large enough ( 30k), we ha...
-
[57]
Guidelines: • The answer NA means that the paper does not include experiments
Experiments Compute Resources 14 Question: For each experiment, does the paper provide sufficient information on the com- puter resources (type of compute workers, memory, time of execution) needed to reproduce the experiments? Answer: [Yes] Justification: This information is ...
-
[58]
We have tried our best to preserve the anonymity
Code Of Ethics Question: Does the research conducted in the paper conform, in every respect, with the NeurIPS Code of Ethics https://neurips.cc/public/EthicsGuidelines? Answer: [Yes] Justification: Our dataset is publicly available and we have used a widely used model architec...
-
[59]
Broader Impacts Question: Does the paper discuss both potential positive societal impacts and negative societal impacts of the work performed? Answer: [Yes] Justification: The development of SynEHRgy, while offering significant advances in the generation of synthetic EHR data,...
-
[60]
Safeguards Question: Does the paper describe safeguards that have been put in place for responsible release of data or models that have a high risk for misuse (e.g., pretrained language models, image generators, or scraped datasets)? Answer: [NA] Justification: [NA] Guidelines...
-
[61]
• The authors should cite the original paper that produced the code package or dataset
Licenses for existing assets Question: Are the creators or original owners of assets (e.g., code, data, models), used in the paper, properly credited and are the license and terms of use explicitly mentioned and properly respected? Answer: [NA] Justification: [NA] Guidelines: ...
-
[62]
• Researchers should communicate the details of the dataset/code/model as part of their submissions via structured templates
New Assets Question: Are new assets introduced in the paper well documented and is the documentation provided alongside the assets? Answer: [NA] Justification: [NA] Guidelines: • The answer NA means that the paper does not release new assets. • Researchers should communicate t...
-
[63]
Crowdsourcing and Research with Human Subjects Question: For crowdsourcing experiments and research with human subjects, does the paper include the full text of instructions given to participants and screenshots, if applicable, as well as details about compensation (if any)? A...
-
[64]
• Depending on the country in which research is conducted, IRB approval (or equivalent) may be required for any human subjects research
Institutional Review Board (IRB) Approvals or Equivalent for Research with Human Subjects Question: Does the paper describe potential risks incurred by study participants, whether such risks were disclosed to the subjects, and whether Institutional Review Board (IRB) approvals...
- [2024]
-
[6352]
DOI: 10.1038/s41746-023-00888-7
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.