jhyuckkim/DeepSeek-V2-Lite-Dense-3B-DO-ACP-K6
DeepSeek-V2-Lite-Dense-3B-DO-ACP-K6
Research artifact, not a general-purpose model. These weights are released so that the experiments in the paper Pruning and Distilling Mixture-of-Experts into Dense Language Models can be reproduced. Each student is distilled on a fixed, small token budget (~4B tokens for Qwen3, 0.3B tokens for DeepSeek-V2-Lite and GPT-OSS) purely so that expert scoring and grouping methods can be compared under an equal budget. Absolute quality is therefore far below the teacher and below pretrained models of the same size, and no instruction tuning or alignment was applied. Please do not use this as an off-the-shelf assistant.
What this is
A dense student obtained by pruning and distilling a Mixture-of-Experts teacher, from the paper *Pruning and Distilling Mixture-of-Experts into Dense Language Models*. Code: https://github.com/krafton-ai/moe-to-dense
Best DeepSeek student in the paper. It is also the only scoring method there that prefers pure pruning over K=12 merging, which is the evidence that diversity-aware selection is what makes K equal to the teacher's top-k pay off.
Results
Full comparison group for this architecture, DeepSeek-V2-Lite to dense, 0.3B-token distillation (paper Table 17). This model's row is in bold, and rows whose weights are also released link to them.
Downstream accuracy is Winogrande 5-shot, HellaSwag 10-shot, ARC-Easy 25-shot, ARC-Challenge 25-shot and MMLU 5-shot. Avg is the unweighted mean of the five benchmarks.
Configuration
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"jhyuckkim/DeepSeek-V2-Lite-Dense-3B-DO-ACP-K6", dtype="bfloat16", trust_remote_code=True
)
tok = AutoTokenizer.from_pretrained("jhyuckkim/DeepSeek-V2-Lite-Dense-3B-DO-ACP-K6", trust_remote_code=True)trust_remote_code=True is required. The student keeps DeepSeek's own model class so that MLA attention and the shared experts are preserved unchanged, and configuration_deepseek.py / modeling_deepseek.py ship with the repo.
Citation
@article{kim2026pruning,
title={Pruning and Distilling Mixture-of-Experts into Dense Language Models},
author={Kim, Junhyuck and Yun, Jihun and Kim, Haechan and Kim, Gyeongman and Bae, Joonghyun and Cho, Jaewoong},
journal={arXiv preprint arXiv:2605.28207},
year={2026}
}