REVIEW 5 major objections 6 minor 2 cited by
Multimodal Medical Code Tokenizer
T0 review · 5 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read MedTok shows that tokenizing medical codes through both their textual definitions and their relational context improves EHR transformer models, with reported AUPRC gains of 4.10% on MIMIC-III, 4.78% on MIMIC-IV, and 11.32% on EHRShot.
desk verdict A genuinely useful engineering contribution with a new multimodal tokenizer for medical codes, but the abstract oversells the results and the evaluation leaves a capacity confound unresolved. 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 object is a vector-quantized multimodal tokenizer: a codebook of N discrete token vectors divided into text-specific, graph-specific, and shared regions, fed by a frozen text encoder and a trainable graph encoder connected by cross-attention. Quantization selects the top-K nearest codebook vectors for each embedding and aggregates them with distance-weighted softmax, while three loss families (codebook loss, KL alignment of cross-modal distance distributions, and token-packing losses for shared and specific information) train the tokenizer. This machinery is what lets one tokenizer serve multiple coding systems and plug into any transformer-based model.
What would settle it
Retrain MedTok with the same losses but randomly permute the graph subgraphs and text descriptions among codes; if the AUPRC gains over the standard tokenizer persist, the semantic text-and-graph signal is not what carries the improvement.
Extended reading notes
Core claim
The central claim is that tokenization itself can be a learnable, multimodal step for structured EHR data. For each of 617,490 medical codes drawn from eight coding systems, MedTok encodes the code's textual definition with a language model encoder and its local subgraph from a biomedical knowledge graph with a graph encoder, then selects top-K entries from a codebook divided into text-specific, graph-specific, and shared regions. The resulting discrete tokens carry both modality-specific and cross-modality information, which the paper argues is why downstream models improve without any change to their architectures. The empirical claim is that a drop-in swap of the tokenizer improves AUPRC across five EHR models, with especially large gains on longitudinal outpatient data and on drug recommendation.
Load-bearing premise
The load-bearing premise is that the automatic mappings from medical codes to knowledge-graph nodes and the GPT-4-expanded text descriptions are accurate enough to be meaningful, because the paper does not report validation of mapping precision or description quality.
Editorial extensions
If this is right
- A drop-in tokenizer swap, with no other change to a model's architecture or training, should transfer to transformer-based EHR models beyond the five tested.
- Drug recommendation should see the largest benefit, because the relational graph encodes drug-disease associations that text-only tokens omit.
- Longitudinal outpatient records should benefit at least as much as inpatient records, matching the EHRShot improvement and the sensitivity to larger codebooks.
- Medical QA systems can consume MedTok tokens as structured prefix context to improve few-shot accuracy, a distinct use from EHR prediction.
- A single tokenizer can span eight coding systems, reducing cross-system redundancy that standard tokenizers preserve as separate tokens.
Reading between the lines
- A random-permutation control would separate the semantic contribution of text and graph data from the extra capacity of MedTok's encoders; the paper does not report one.
- Rare codes are the natural test case: if MedTok's value comes from shared semantics, its gains should be largest for low-frequency codes, which standard tokenizers represent poorly.
- MedTok could become a shared clinical vocabulary across institutions that use different coding systems, letting pretrained models transfer without re-tokenizing.
- Because EHRShot's longer visit histories show the largest gains, MedTok may matter most for longitudinal and few-shot settings rather than single-visit prediction.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. MedTok is a vector-quantized tokenizer that maps each medical code to a sequence of tokens derived from two modalities: the code's textual description, encoded by a frozen language model, and a local subgraph from PrimeKG, encoded by a trainable graph encoder. The tokenizer uses modality-specific and shared codebook regions together with cross-attention and packing losses, and can be swapped into existing transformer-based EHR models. The paper evaluates MedTok by replacing standard code tokens in five EHR backbones (ETHOS, GT-BEHRT, MulT-EHR, TransformEHR, BEHRT) on MIMIC-III, MIMIC-IV, and EHRShot, reporting AUPRC improvements in Tables 3 and 4, and also shows accuracy gains when MedTok tokens are prepended to three LLMs for medical question answering. The central claim is that MedTok is a general-purpose multimodal medical code tokenizer whose text-and-graph tokens improve downstream EHR and QA performance without changing the downstream architecture.
Significance. The paper addresses a real bottleneck in EHR foundation models: medical vocabularies contain hundreds of thousands of codes whose relational and textual context is ignored by standard tokenizers. If the reported gains were attributable to the multimodal semantic information, MedTok would be a useful plug-in component for EHR models. The authors ship code, evaluate with five distinct backbones in both inpatient and outpatient settings, include modality ablations, and attempt an interpretability analysis. However, the current evidence does not separate the contribution of the multimodal tokenizer from added token count, added embedding capacity, and per-dataset hyperparameter tuning. The headline numbers are also per-task gains rather than dataset-level averages. The empirical claim is therefore plausible but not established at the level claimed in the abstract.
major comments (5)
- [Abstract; §4.1; Tables 3-4] The headline numbers in the Abstract and Contributions (4.10%, 4.78%, 11.32%) are not dataset-level average improvements. Section 4.1 reports average improvements of 3.29% on MIMIC-III and 2.67% on MIMIC-IV; the 4.10% and 4.78% figures are the DrugRec rows of Table 3. The 11.32% is the mortality row under Operational Outcomes in Table 4, while the average across the seven EHRShot columns is about 5.0%. Please report dataset-level averages explicitly and clearly label per-task gains.
- [§3.1; Appendix B.3] MedTok replaces a single code token with K tokens for each of four embeddings (text-specific, graph-specific, text-cross, graph-cross), so the downstream sequence is longer. Appendix B.3 states that for ETHOS the original vocabulary is extended with MedTok tokens, and for the other models MedTok embeddings initialize the original tokens, changing the embedding-table size. The value of K, the number of tokens per code, is never reported, and no baseline is matched for sequence length, token count, or embedding parameter count. Because larger token counts and embedding tables add capacity, the observed AUPRC gains cannot currently be attributed to the multimodal text-and-graph semantics; a capacity-matched baseline (e.g., K random or independently quantized tokens of the same dimension per code) is needed.
- [Tables 3-4] Many individual improvements are within one standard deviation of the baseline. Examples include TransformEHR LOS on MIMIC-IV (0.119 ± 0.001 vs. 0.121 ± 0.002), BEHRT MT on MIMIC-IV (0.028 ± 0.003 vs. 0.032 ± 0.006), and GT-BEHRT MT on MIMIC-III (0.160 ± 0.037 vs. 0.193 ± 0.046). No significance tests, confidence intervals, or effect sizes are reported. The statement that MedTok 'consistently improves performance across all five tasks' is stronger than the table supports.
- [Appendix A.1] The code-to-graph and code-to-text data are constructed automatically: UMLS/MONDO mapping, a custom entity linker, SciSpacy for semantic similarity, and GPT-4-expanded descriptions. No precision, recall, or manual validation of these mappings is reported, and GPT-4 expansion of sparse drug descriptions can introduce hallucinated clinical content. Because these are the sole inputs to MedTok's text and graph encoders, noisy or incorrect mappings are an alternative explanation for any performance differences and should be quantified, for example with a human-validated subset or a corruption/replacement ablation.
- [§3.2; §4.4] Equations (6)-(9) define objectives in terms of mutual information, but the implemented losses are InfoNCE and orthogonal-packing terms; the claimed equivalence is asserted ('Following Wang et al.') without proof or citation. In addition, the hyperparameters λ=β and codebook size N are tuned per dataset on the same benchmarks used for the main results: Figure 5 recommends λ=β=0.1 for inpatient and 0.01 for outpatient settings, and N=12,000 for MIMIC-III/IV but 24,000 for EHRShot. The main tables do not state which values were used, and no validation split is described to show that the reported numbers are not selected by this tuning.
minor comments (6)
- [Equation (4)] The weighting in Equation (4) uses -softmax(dist(...)), while §3.2's KL term uses softmax(-dist(...)); the sign convention should be made consistent.
- [§3.1; §4.4] The value of K and the sizes of the text-specific, graph-specific, and shared codebook regions are never reported; without them, the actual token counts per code and codebook utilization are unclear.
- [Table 3; Appendix C.5] The LOS task is multi-class (10 classes) but the table reports AUPRC, while Appendix C.5 says phenotype and drug recommendation use macro-averaged AUC-ROC; please specify how AUPRC is computed for multi-class and multi-label settings.
- [References; §3.2] The VQGraph reference appears multiple times with different years and venues (2023a, 2024a, 2024b), and the sentence 'Following Wang et al.' in §3.2 lacks a citation; please disambiguate.
- [Figure 5] The x-axis labels in Figure 5A run together ('0.010.1 0.200.300.4 0.5'), making the tick values illegible; please fix the figure.
- [Contributions] The Introduction states an EHRShot gain of 11.30% while the Abstract states 11.32%; please make these numbers consistent.
Circularity Check
No derivation-by-construction circularity; the AUPRC gains are external empirical measurements, though per-dataset hyperparameter selection on the same benchmarks weakens the strength of the reported improvements.
full rationale
MedTok's central claim is an empirical comparison: swapping standard EHR tokenizers for MedTok changes AUPRC on MIMIC-III, MIMIC-IV, and EHRShot. The tokenizer is pre-trained with L = Lvq + LKL + Ltoken (Sections 3.1-3.3), and none of those loss terms contains a downstream label or task objective; the downstream EHR models are trained and evaluated on external benchmarks. There is no equation in the paper that makes the reported AUPRC equal to a tokenizer input or a fitted parameter by construction. The self-cited resources (PrimeKG, Chandak et al. 2023; MedDDx, Su et al. 2024) are data or benchmark artifacts rather than load-bearing theorems or fitted calibrations, so they do not create circularity. The main methodological caveat is that Section 4.4 selects lambda = beta and codebook size N by inspecting average AUPRC on the same three datasets and tasks that Tables 3-4 later report, with no validation split documented; this is test-set selection that can optimistically bias the gains, but it is not a circular reduction of the tokenizer's output into the evaluation metric. The unstated number of tokens per code (K) and the larger embedding tables used in MedTok+ configurations are a capacity confound for causal attribution of the improvements, again a validity concern rather than circularity. Overall, the derivation chain is not self-referential enough to score above the 0-2 range.
Assumptions & free parameters
free parameters (4)
- Codebook size N =
12,000 (MIMIC-III/IV), 24,000 (EHRShot)
- Loss weight coefficients lambda = beta =
0.1 (in-patient), 0.01 (out-patient)
- Number of tokens per code K =
Not stated in main text
- Quantized embedding dimension d =
64
assumptions (4)
- domain assumption PrimeKG, UMLS, MONDO and the custom entity/NLP linkers align the 617,490 codes to meaningful knowledge-graph nodes.
- domain assumption GPT-4 enriched text descriptions are clinically accurate and faithful to the official definitions.
- ad hoc to paper The information-theoretic objectives in Equations 6-9 are equivalent to the implemented InfoNCE and orthogonal packing losses.
- domain assumption Freezing the text encoder while training the graph encoder is a sufficient training scheme.
Cite this review
Pith. "Pith review of Multimodal Medical Code Tokenizer." pith.science (2026). https://pith.science/paper/HMUPI2EQ
@misc{pith2026250204397,
author = {Pith},
title = {Pith review of: Multimodal Medical Code Tokenizer},
year = {2026},
howpublished = {\url{https://pith.science/paper/HMUPI2EQ}},
note = {Machine review of arXiv:2502.04397}
}
read the original abstract
Foundation models trained on patient electronic health records (EHRs) require tokenizing medical data into sequences of discrete vocabulary items. Existing tokenizers treat medical codes from EHRs as isolated textual tokens. However, each medical code is defined by its textual description, its position in ontological hierarchies, and its relationships to other codes, such as disease co-occurrences and drug-treatment associations. Medical vocabularies contain more than 600,000 codes with critical information for clinical reasoning. We introduce MedTok, a multimodal medical code tokenizer that uses the text descriptions and relational context of codes. MedTok processes text using a language model encoder and encodes the relational structure with a graph encoder. It then quantizes both modalities into a unified token space, preserving modality-specific and cross-modality information. We integrate MedTok into five EHR models and evaluate it on operational and clinical tasks across in-patient and out-patient datasets, including outcome prediction, diagnosis classification, drug recommendation, and risk stratification. Swapping standard EHR tokenizers with MedTok improves AUPRC across all EHR models, by 4.10% on MIMIC-III, 4.78% on MIMIC-IV, and 11.32% on EHRShot, with the largest gains in drug recommendation. Beyond EHR modeling, we demonstrate using MedTok tokenizer with medical QA systems. Our results demonstrate the potential of MedTok as a unified tokenizer for medical codes, improving tokenization for medical foundation models.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 2 Pith papers
-
FoMoH: A clinically meaningful foundation model evaluation for structured electronic health records
FoMoH benchmarks six structured EHR foundation models on 14 tasks and finds they do not consistently outperform supervised baselines, particularly for rare diseases and low-data regimes.
-
The Latent Space Hypothesis: Toward Universal Medical Representation Learning
The paper argues that all medical data modalities encode projections of a single latent physiological state, so a universal learned geometry could unify diagnosis, monitoring, and treatment.
Reference graph
Works this paper leans on
-
[1]
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 format.date year duplicate empty "emp...
-
[2]
Cosmos world foundation model platform for physical ai
Agarwal, N., Ali, A., Bala, M., Balaji, Y., Barker, E., Cai, T., Chattopadhyay, P., Chen, Y., Cui, Y., Ding, Y., et al. Cosmos world foundation model platform for physical ai. arXiv preprint arXiv:2501.03575, 2025
arXiv 2025
-
[3]
Averill, R. F., Mullin, R. L., Steinbeck, B. A., Goldfield, N. I., and Grant, T. M. Development of the icd-10 procedure coding system (icd-10-pcs). Topics in health information management, 21 0 (3): 0 54--88, 2001
work page 2001
-
[4]
vq-wav2vec: Self-supervised learning of discrete speech representations
Baevski, A., Schneider, S., and Auli, M. vq-wav2vec: Self-supervised learning of discrete speech representations. arXiv preprint arXiv:1910.05453, 2019
arXiv 1910
-
[5]
Balsa-Canto, E., Brush, M. H., Carbon, S., et al. Mondo: Unifying diseases for the world, by the world. Nucleic Acids Research, 51 0 (D1): 0 D1182--D1190, 2023. doi:10.1093/nar/gkac1062
-
[6]
The unified medical language system (umls): integrating biomedical terminology
Bodenreider, O. The unified medical language system (umls): integrating biomedical terminology. Nucleic Acids Research, 32 0 (Database issue): 0 D267--D270, 2004. doi:10.1093/nar/gkh061
-
[7]
H., Yin, G., Bae, K., and Yu, L
Chan, T. H., Yin, G., Bae, K., and Yu, L. Multi-task heterogeneous graph learning on electronic health records. Neural Networks, 180: 0 106644, 2024
work page 2024
-
[8]
Building a knowledge graph to enable precision medicine
Chandak, P., Huang, K., and Zitnik, M. Building a knowledge graph to enable precision medicine. Scientific Data, 10 0 (1): 0 67, 2023
work page 2023
Show all 77 references
-
[9]
M., and Jeni, L
Choudhury, R., Zhu, G., Liu, S., Niinuma, K., Kitani, K. M., and Jeni, L. Don’t look twice: Faster video transformers with run-length tokenization. 0 (arXiv:2411.05222), November 2024. doi:10.48550/arXiv.2411.05222. URL http://arxiv.org/abs/2411.05222. arXiv:2411.05222
-
[10]
BERT: pre-training of deep bidirectional transformers for language understanding
Devlin, J., Chang, M., Lee, K., and Toutanova, K. BERT: pre-training of deep bidirectional transformers for language understanding. CoRR, abs/1810.04805, 2018. URL http://arxiv.org/abs/1810.04805
2018 arXiv
-
[11]
Donnelly, K. et al. Snomed-ct: The advanced terminology and coding system for ehealth. Studies in health technology and informatics, 121: 0 279, 2006
2006
-
[12]
Cpt codes: what are they, why are they necessary, and how are they developed?, 2013
Dotson, P. Cpt codes: what are they, why are they necessary, and how are they developed?, 2013
2013
-
[13]
On the role of discrete tokenization in visual representation learning
Du, T., Wang, Y., and Wang, Y. On the role of discrete tokenization in visual representation learning. arXiv preprint arXiv:2407.09087, 2024
2024 arXiv
-
[14]
The llama 3 herd of models, 2024
Dubey, A., Jauhri, A., Pandey, A., Kadian, A., Al-Dahle, A., Letman, A., Mathur, A., Schelten, A., Yang, A., and Fan, A. The llama 3 herd of models, 2024. URL https://arxiv.org/abs/2407.21783
2024 arXiv
-
[15]
M., Daley, J., Hughes, J., Fisher, E
Foley, S. M., Daley, J., Hughes, J., Fisher, E. S., Heeren, T., et al. Comorbidities, complications, and coding bias: does the number of diagnosis codes matter in predicting in-hospital mortality? Jama, 267 0 (16): 0 2197--2203, 1992
1992
-
[16]
Fragment and geometry aware tokenization of molecules for structure-based drug design using language models
Fu, C., Li, X., Olson, B., Ji, H., and Ji, S. Fragment and geometry aware tokenization of molecules for structure-based drug design using language models. 0 (arXiv:2408.09730), August 2024. doi:10.48550/arXiv.2408.09730. URL http://arxiv.org/abs/2408.09730. arXiv:2408.09730
-
[17]
W., Xu, J., and Bodenreider, O
Fung, K. W., Xu, J., and Bodenreider, O. The new international classification of diseases 11th edition: a comparative analysis with icd-10 and icd-10-cm. Journal of the American Medical Informatics Association, 27 0 (5): 0 738--746, 2020
2020
-
[18]
A., Navar, A
Goldstein, B. A., Navar, A. M., and Pencina, M. J. Risk prediction with electronic health records: The importance of model validation and clinical context. JAMA Cardiology, 1 0 (9): 0 976, December 2016. ISSN 2380-6583. doi:10.1001/jamacardio.2016.3826
2016
-
[19]
Gu, Y., Wang, X., Ge, Y., Shan, Y., and Shou, M. Z. Rethinking the objectives of vector-quantized tokenizers for image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 7631--7640, 2024
2024
-
[20]
C., Ver Steeg, G., and Galstyan, A
Harutyunyan, H., Khachatrian, H., Kale, D. C., Ver Steeg, G., and Galstyan, A. Multitask learning and benchmarking with clinical time series data. Scientific data, 6 0 (1): 0 96, 2019
2019
-
[21]
Measuring massive multitask language understanding
Hendrycks, D., Burns, C., Basart, S., Zou, A., Mazeika, M., Song, D., and Steinhardt, J. Measuring massive multitask language understanding. Proceedings of the International Conference on Learning Representations (ICLR), 2021
2021
-
[22]
A., Zhang, X., Zappia, L., Knoll, R., Lang, N
Heumos, L., Ehmele, P., Treis, T., Upmeier Zu Belzen, J., Roellin, E., May, L., Namsaraeva, A., Horlava, N., Shitov, V. A., Zhang, X., Zappia, L., Knoll, R., Lang, N. J., Hetzel, L., Virshup, I., Sikkema, L., Curion, F., Eils, R., Schiller, H. B., Hilgendorff, A., and Theis, F...
2024 doi
-
[23]
Hui, B., Yang, J., Cui, Z., Yang, J., Liu, D., Zhang, L., Liu, T., Zhang, J., Yu, B., Lu, K., et al. Qwen2. 5-coder technical report. arXiv preprint arXiv:2409.12186, 2024
2024 arXiv
-
[24]
Jensen, K., Soguero-Ruiz, C., Oyvind Mikalsen, K., Lindsetmo, R.-O., Kouskoumvekaki, I., Girolami, M., Olav Skrovseth, S., and Augestad, K. M. Analysis of free text in electronic health records for identification of cancer patient trajectories. Scientific Reports, 7 0 (1): 0 4...
2017 doi
-
[25]
Y., Liu, X
Jiang, L. Y., Liu, X. C., Nejatian, N. P., Nasir-Moin, M., Wang, D., Abidin, A., Eaton, K., Riina, H. A., Laufer, I., Punjabi, P., et al. Health system-scale language models are all-purpose prediction engines. Nature, 619 0 (7969): 0 357--362, 2023 a
2023
-
[26]
Graphcare: Enhancing healthcare predictions with personalized knowledge graphs
Jiang, P., Xiao, C., Cross, A., and Sun, J. Graphcare: Enhancing healthcare predictions with personalized knowledge graphs. arXiv preprint arXiv:2305.12788, 2023 b
2023 arXiv
-
[27]
MIMIC-III Clinical Database (version 1.4), 2016
Johnson, A., Pollard, T., and Mark, R. MIMIC-III Clinical Database (version 1.4), 2016. URL https://doi.org/10.13026/C2XW26. Available at: https://doi.org/10.13026/C2XW26
2016 doi
-
[28]
A., and Mark, R
Johnson, A., Bulgarelli, L., Pollard, T., Gow, B., Moody, B., Horng, S., Celi, L. A., and Mark, R. MIMIC-IV (version 3.1), 2024. URL https://doi.org/10.13026/kpb9-mt58
2024 doi
-
[29]
Digital twins for health: a scoping review
Katsoulakis, E., Wang, Q., Wu, H., Shahriyari, L., Fletcher, R., Liu, J., Achenie, L., Liu, H., Jackson, P., Xiao, Y., Syeda-Mahmood, T., Tuli, R., and Deng, J. Digital twins for health: a scoping review. npj Digital Medicine, 7 0 (1): 0 77, March 2024. ISSN 2398-6352. doi:10....
2024 doi
-
[30]
A., Deng, A., Balston, A., Ross, J., Idowu, E., Teo, J
Kraljevic, Z., Bean, D., Shek, A., Bendayan, R., Hemingway, H., Yeung, J. A., Deng, A., Balston, A., Ross, J., Idowu, E., Teo, J. T., and Dobson, R. J. B. Foresight—a generative pretrained transformer for modelling of patient timelines using electronic health records: a retros...
2024 doi
- [31]
-
[32]
Li, Y., Rao, S., Solares, J. R. A., Hassaine, A., Ramakrishnan, R., Canoy, D., Zhu, Y., Rahimi, K., and Salimi-Khorshidi, G. Behrt: transformer for electronic health records. Scientific reports, 10 0 (1): 0 7155, 2020
2020
-
[33]
and Britt, H
Miller, G. and Britt, H. A new drug classification for computer systems: the atc extension code. International journal of bio-medical computing, 40 0 (2): 0 121--124, 1995
1995
-
[34]
M., and Vulić, I
Minixhofer, B., Ponti, E. M., and Vulić, I. Zero-shot tokenizer transfer. 0 (arXiv:2405.07883), May 2024. doi:10.48550/arXiv.2405.07883. URL http://arxiv.org/abs/2405.07883. arXiv:2405.07883
2024 doi
-
[35]
J., Zeng, K., Kilbourne, J., Powell, T., and Moore, R
Nelson, S. J., Zeng, K., Kilbourne, J., Powell, T., and Moore, R. Normalized names for clinical drugs: Rxnorm at 6 years. Journal of the American Medical Informatics Association, 18 0 (4): 0 441--448, 2011
2011
-
[36]
Afrimed-qa: A pan-african, multi-specialty, medical question-answering benchmark dataset
Olatunji, T., Nimo, C., Owodunni, A., Abdullahi, T., Ayodele, E., Sanni, M., Aka, C., Omofoye, F., Yuehgoh, F., Faniran, T., et al. Afrimed-qa: A pan-african, multi-specialty, medical question-answering benchmark dataset. arXiv preprint arXiv:2411.15640, 2024
2024
-
[37]
Organization, W. H. International Statistical Classification of Diseases and related health problems: Alphabetical index, volume 3. World Health Organization, 2004
2004
-
[38]
Organization, W. H. et al. International classification of diseases—ninth revision (icd-9). Weekly Epidemiological Record= Relev \'e \'e pid \'e miologique hebdomadaire , 63 0 (45): 0 343--344, 1988
1988
-
[39]
K., and Sankarasubbu, M
Pal, A., Umapathi, L. K., and Sankarasubbu, M. Medmcqa: A large-scale multi-subject multi-choice dataset for medical domain question answering. In Conference on health, inference, and learning, pp.\ 248--260. PMLR, 2022
2022
-
[40]
What is ndc? Pension reform: Issues and prospects for non-financial defined contribution (NDC) schemes, pp.\ 17--34, 2006
Palmer, E. What is ndc? Pension reform: Issues and prospects for non-financial defined contribution (NDC) schemes, pp.\ 17--34, 2006
2006
-
[41]
Let your graph do the talking: Encoding structured data for llms
Perozzi, B., Fatemi, B., Zelle, D., Tsitsulin, A., Kazemi, M., Al-Rfou, R., and Halcrow, J. Let your graph do the talking: Encoding structured data for llms. 0 (arXiv:2402.05862), February 2024. doi:10.48550/arXiv.2402.05862. URL http://arxiv.org/abs/2402.05862. arXiv:2402.05862
-
[42]
and Beheshti, R
Poulain, R. and Beheshti, R. Graph transformers on ehrs: Better representation improves downstream performance. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[43]
Model decides how to tokenize: Adaptive dna sequence tokenization with mxdna
Qiao, L., Ye, P., Ren, Y., Bai, W., Liang, C., Ma, X., Dong, N., and Ouyang, W. Model decides how to tokenize: Adaptive dna sequence tokenization with mxdna. 0 (arXiv:2412.13716), December 2024. doi:10.48550/arXiv.2412.13716. URL http://arxiv.org/abs/2412.13716. arXiv:2412.13716
-
[44]
Towards building multilingual language model for medicine
Qiu, P., Wu, C., Zhang, X., Lin, W., Wang, H., Zhang, Y., Wang, Y., and Xie, W. Towards building multilingual language model for medicine. Nature Communications, 15 0 (1): 0 8384, 2024
2024
-
[45]
K., Yuan, Z., and Wu, X
Qu, L., Zhang, H., Liu, Y., Wang, X., Jiang, Y., Gao, Y., Ye, H., Du, D. K., Yuan, Z., and Wu, X. Tokenflow: Unified image tokenizer for multimodal understanding and generation. arXiv preprint arXiv:2412.03069, 2024
2024 arXiv
-
[46]
Recommender systems with generative retrieval
Rajput, S., Mehta, N., Singh, A., Hulikal Keshavan, R., Vu, T., Heldt, L., Hong, L., Tay, Y., Tran, V., Samost, J., et al. Recommender systems with generative retrieval. Advances in Neural Information Processing Systems, 36: 0 10299--10315, 2023
2023
-
[47]
E., Was, J., Li, Q., Bates, D
Renc, P., Jia, Y., Samir, A. E., Was, J., Li, Q., Bates, D. W., and Sitek, A. Zero shot health trajectory prediction using transformer. NPJ Digital Medicine, 7 0 (1): 0 256, 2024
2024
- [48]
-
[49]
S., Wei, J., Chung, H
Singhal, K., Azizi, S., Tu, T., Mahdavi, S. S., Wei, J., Chung, H. W., Scales, N., Tanwani, A., Cole-Lewis, H., Pfohl, S., et al. Large language models encode clinical knowledge. Nature, 620 0 (7972): 0 172--180, 2023
2023
-
[50]
R., Cole-Lewis, H., et al
Singhal, K., Tu, T., Gottweis, J., Sayres, R., Wulczyn, E., Amin, M., Hou, L., Clark, K., Pfohl, S. R., Cole-Lewis, H., et al. Toward expert-level medical question answering with large language models. Nature Medicine, pp.\ 1--8, 2025
2025
- [51]
-
[52]
Knowledge graph based agent for complex, knowledge-intensive qa in medicine
Su, X., Wang, Y., Gao, S., Liu, X., Giunchiglia, V., Clevert, D.-A., and Zitnik, M. Knowledge graph based agent for complex, knowledge-intensive qa in medicine. arXiv preprint arXiv:2410.04660, 2024
2024 arXiv
-
[53]
Learning to tokenize for generative retrieval
Sun, W., Yan, L., Chen, Z., Wang, S., Zhu, H., Ren, P., Chen, Z., Yin, D., Rijke, M., and Ren, Z. Learning to tokenize for generative retrieval. Advances in Neural Information Processing Systems, 36, 2024
2024
-
[54]
T., Shahgir, H
Tahmid, M. T., Shahgir, H. S., Mahbub, S., Dong, Y., and Bayzid, M. S. Birna-bert allows efficient rna language modeling with adaptive tokenization. November 2024. doi:10.1101/2024.07.02.601703. URL https://www.biorxiv.org/content/10.1101/2024.07.02.601703v3
2024 doi
-
[55]
Towards generalist biomedical ai
Tu, T., Azizi, S., Driess, D., Schaekermann, M., Amin, M., Chang, P.-C., Carroll, A., Lau, C., Tanno, R., Ktena, I., et al. Towards generalist biomedical ai. NEJM AI, 1 0 (3): 0 AIoa2300138, 2024
2024
-
[56]
Neural discrete representation learning
Van Den Oord, A., Vinyals, O., et al. Neural discrete representation learning. Advances in neural information processing systems, 30, 2017
2017
-
[57]
An information criterion for controlled disentanglement of multimodal data
Wang, C., Gupta, S., Zhang, X., Tonekaboni, S., Jegelka, S., Jaakkola, T., and Uhler, C. An information criterion for controlled disentanglement of multimodal data. arXiv preprint arXiv:2410.23996, 2024 a
2024 arXiv
-
[58]
Tokenization matters! degrading large language models through challenging their tokenization
Wang, D., Li, Y., Jiang, J., Ding, Z., Jiang, G., Liang, J., and Yang, D. Tokenization matters! degrading large language models through challenging their tokenization. 0 (arXiv:2405.17067), May 2024 b . doi:10.48550/arXiv.2405.17067. URL http://arxiv.org/abs/2405.17067. arXiv:...
-
[59]
Learning graph quantized tokenizers for transformers
Wang, L., Hassani, K., Zhang, S., Fu, D., Yuan, B., Cong, W., Hua, Z., Wu, H., Yao, N., and Long, B. Learning graph quantized tokenizers for transformers. arXiv preprint arXiv:2410.13798, 2024 c
2024 arXiv
-
[60]
Learnable item tokenization for generative recommendation
Wang, W., Bao, H., Lin, X., Zhang, J., Li, Y., Feng, F., Ng, S.-K., and Chua, T.-S. Learnable item tokenization for generative recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management, pp.\ 2400--2409, 2024 d
2024
-
[61]
S., Feunang, Y
Wishart, D. S., Feunang, Y. D., Guo, A. C., Lo, E. J., Marcu, A., Grant, J. R., Sajed, T., Johnson, D., Li, C., Sayeeda, Z., et al. Drugbank 5.0: a major update to the drugbank database for 2018. Nucleic Acids Research, 46 0 (D1): 0 D1074--D1082, 2018. doi:10.1093/nar/gkx1037
2018 doi
-
[62]
A., and Shah, N
Wornow, M., Thapa, R., Steinberg, E., Fries, J. A., and Shah, N. EHRSHOT : An EHR benchmark for few-shot evaluation of foundation models. In Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2023
2023
-
[63]
D., Ho, J., and Yang, C
Xu, R., Shi, W., Yu, Y., Zhuang, Y., Jin, B., Wang, M. D., Ho, J., and Yang, C. RAM - EHR : Retrieval augmentation meets clinical predictions on electronic health records. In Ku, L.-W., Martins, A., and Srikumar, V. (eds.), Proceedings of the 62nd Annual Meeting of the Associa...
2024 doi
-
[64]
Vqgraph: Rethinking graph representation space for bridging gnns and mlps
Yang, L., Tian, Y., Xu, M., Liu, Z., Hong, S., Qu, W., Zhang, W., Cui, B., Zhang, M., and Leskovec, J. Vqgraph: Rethinking graph representation space for bridging gnns and mlps. arXiv preprint arXiv:2308.02117, 2023 a
2023 arXiv
-
[65]
Vqgraph: Rethinking graph representation space for bridging gnns and mlps
Yang, L., Tian, Y., Xu, M., Liu, Z., Hong, S., Qu, W., Zhang, W., Cui, B., Zhang, M., and Leskovec, J. Vqgraph: Rethinking graph representation space for bridging gnns and mlps. 0 (arXiv:2308.02117), March 2024 a . doi:10.48550/arXiv.2308.02117. URL http://arxiv.org/abs/2308.0...
-
[66]
Vqgraph: Rethinking graph representation space for bridging gnns and mlps
Yang, L., Tian, Y., Xu, M., Liu, Z., Hong, S., Qu, W., Zhang, W., CUI, B., Zhang, M., and Leskovec, J. Vqgraph: Rethinking graph representation space for bridging gnns and mlps. In International Conference on Learning Representations, 2024 b
2024
-
[67]
Transformehr: transformer-based encoder-decoder generative model to enhance prediction of disease outcomes using electronic health records
Yang, Z., Mitra, A., Liu, W., Berlowitz, D., and Yu, H. Transformehr: transformer-based encoder-decoder generative model to enhance prediction of disease outcomes using electronic health records. Nature communications, 14 0 (1): 0 7857, 2023 b
2023
-
[68]
Y., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y., Baldridge, J., and Wu, Y
Yu, J., Li, X., Koh, J. Y., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y., Baldridge, J., and Wu, Y. Vector-quantized image modeling with improved vqgan. arXiv preprint arXiv:2110.04627, 2021
2021 arXiv
-
[69]
Y., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y., Baldridge, J., and Wu, Y
Yu, J., Li, X., Koh, J. Y., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y., Baldridge, J., and Wu, Y. Vector-quantized image modeling with improved vqgan. 0 (arXiv:2110.04627), June 2022. doi:10.48550/arXiv.2110.04627. URL http://arxiv.org/abs/2110.04627. arXiv:2110.04627
-
[70]
B., Versari, L., Sohn, K., Minnen, D., Cheng, Y., Birodkar, V., Gupta, A., Gu, X., et al
Yu, L., Lezama, J., Gundavarapu, N. B., Versari, L., Sohn, K., Minnen, D., Cheng, Y., Birodkar, V., Gupta, A., Gu, X., et al. Language model beats diffusion--tokenizer is key to visual generation. arXiv preprint arXiv:2310.05737, 2023
-
[71]
B., Versari, L., Sohn, K., Minnen, D., Cheng, Y., Birodkar, V., Gupta, A., Gu, X., Hauptmann, A
Yu, L., Lezama, J., Gundavarapu, N. B., Versari, L., Sohn, K., Minnen, D., Cheng, Y., Birodkar, V., Gupta, A., Gu, X., Hauptmann, A. G., Gong, B., Yang, M.-H., Essa, I., Ross, D. A., and Jiang, L. Language model beats diffusion -- tokenizer is key to visual generation. 0 (arXi...
-
[72]
Predict and interpret health risk using ehr through typical patients
Yu, Z., Zhang, C., Wang, Y., Tang, W., Wang, J., and Ma, L. Predict and interpret health risk using ehr through typical patients. In ICASSP 2024 - 2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp.\ 1506--1510, 2024 b . doi:10.1109/ICAS...
2024
-
[73]
Soundstream: An end-to-end neural audio codec
Zeghidour, N., Luebs, A., Omran, A., Skoglund, J., and Tagliasacchi, M. Soundstream: An end-to-end neural audio codec. IEEE/ACM Transactions on Audio, Speech, and Language Processing, 30: 0 495--507, 2021
2021
-
[74]
A., Schmid, C., Katabi, D., and Gu, X
Zha, K., Yu, L., Fathi, A., Ross, D. A., Schmid, C., Katabi, D., and Gu, X. Language-guided image tokenization for generation. 0 (arXiv:2412.05796), December 2024. doi:10.48550/arXiv.2412.05796. URL http://arxiv.org/abs/2412.05796. arXiv:2412.05796
-
[75]
Regularized vector quantization for tokenized image synthesis
Zhang, J., Zhan, F., Theobalt, C., and Lu, S. Regularized vector quantization for tokenized image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 18467--18476, 2023
2023
- [76]
-
[77]
Emerge: Enhancing multimodal electronic health records predictive modeling with retrieval-augmented generation
Zhu, Y., Ren, C., Wang, Z., Zheng, X., Xie, S., Feng, J., Zhu, X., Li, Z., Ma, L., and Pan, C. Emerge: Enhancing multimodal electronic health records predictive modeling with retrieval-augmented generation. In Proceedings of the 33rd ACM International Conference on Information...
2024
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.