DVE (Domain Vocabulary Expansion) adds 5,000 Korean medical tokens (from KM-BERT, scored by fragmentation × frequency × PMI), cutting medical-term over-fragmentation ~64%.
MoDE (Mixture-of-Domain-Experts) uses the vocabulary partition as the routing key: medical tokens (id ≥ original_vocab_size) go to dedicated experts, general tokens keep the preserved dense FFN. The general path stays architecturally isolated, preventing catastrophic forgetting at the architectural level.
Table shows the -inst variants. This -base checkpoint's own scores are in the spec line above.
Usage
⚠️ Custom architecture (MediKoForCausalLM) — pass trust_remote_code=True. Token-type routing is generated inside forward() from input_ids.
This is the base (CPT) checkpoint — domain-adapted but not instruction-tuned.
For chat / instruction following, use the -inst variant. Use this for completion or as
a starting point for your own SFT.
⚠️ Medical disclaimer. Not a medical device; research/informational use only. Outputs must not be used for diagnosis, treatment, prescription, or clinical decision-making. Always consult a qualified professional. May hallucinate; do not input personally identifiable patient data.
Limitations. Validated only on Korean medical text. MoE → total memory larger than a comparable dense model. CPT token budget (~19.5B) modest vs large English medical LLMs.
Training data
Medical (Korean) ~108 GB + General (Korean) ~39 GB → ~19.5B tokens (≈76% / 24%).
Pipeline: DVE → Qwen3→MediKo dense → MoE upcycle → CPT.
License
Apache-2.0 (inherits Qwen3 base license). Comply with applicable medical / privacy regulations in your jurisdiction.
Citation
Accepted to Findings of the Association for Computational Linguistics: EMNLP 2026.
bibtex
1@inproceedings{cho2026vocmoe,
2 title = {VocMoE: Vocabulary-Guided Mixture-of-Experts for Korean Medical Language Models},
3 author = {Cho, Sangyeon and Han, Jaeho and Jeon, Mingyu and Kim, Junyeong},
4 booktitle = {Findings of the Association for Computational Linguistics: EMNLP 2026},
5 year = {2026},
6}