CoolFace
Modelpublic

jhyuckkim/DeepSeek-V2-Lite-Dense-3B-CP-K6

sourceHugging Faceotherupdated 27d agoView on Hugging Face
0likes554downloads
Model Card

DeepSeek-V2-Lite-Dense-3B-CP-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

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.

ConfigurationWinoHellaARC-EARC-CMMLUAvg
SF, K=654.938.952.427.126.940.04
SF, K=1256.941.154.828.424.641.16
CP, K=653.036.949.425.725.338.07
CP, K=1255.640.253.526.626.840.53
ACP, K=656.838.651.027.528.140.37
ACP, K=1257.140.952.927.426.440.93
DO-ACP, K=660.341.053.728.228.742.39
DO-ACP, K=1259.041.551.726.226.941.07
Random FFN + teacher attn50.625.630.620.923.630.25
Random initialization50.125.428.824.122.930.27
Teacher (DeepSeek-V2-Lite)76.280.584.456.358.071.09

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

FieldValue
Teacherdeepseek-ai/DeepSeek-V2-Lite
Student parameters2.66B
Distillation dataFineWeb-Edu (sample-10BT), 0.3B tokens
Expert scoringCP
Experts kept (K)6
Groupingpure pruning on the routed experts, 8 groups total (2 shared + 6 routed)
Down-projection scalingshared experts copied unscaled, routed groups scaled by average conditional probability

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "jhyuckkim/DeepSeek-V2-Lite-Dense-3B-CP-K6", dtype="bfloat16", trust_remote_code=True
)
tok = AutoTokenizer.from_pretrained("jhyuckkim/DeepSeek-V2-Lite-Dense-3B-CP-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

bibtex
@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}
}