Views
No views yet
| Benchmark | Ling-mini-2.0 | LLaDA-MoE-7B-A1B-Instruct | LLaDA2.0-mini-preview |
|---|---|---|---|
| Average | 74.60 | 59.72 | 66.89 |
| Knowledge | |||
| MMLU | 82.15 | 67.18 | 72.49 |
| MMLU-PRO | 63.72 | 44.64 | 49.22 |
| CMMLU | 80.84 | 64.30 | 67.53 |
| C-EVAL | 82.10 | 63.93 | 66.54 |
| Reasoning | |||
| squad2.0 | 75.56 | 86.81 | 85.61 |
| drop | 78.80 | 79.77 | 79.49 |
| korbench | 62.72 | 38.40 | 37.26 |
| Coding | |||
| CruxEval-O | 76.12 | 42.38 | 61.88 |
| mbpp | 84.07 | 70.02 | 77.75 |
| MultiPL-E | 67.09 | 52.53 | 62.43 |
| humaneval | 85.98 | 61.59 | 80.49 |
| Bigcodebench-Full | 35.00 | 20.44 | 30.44 |
| Math | |||
| GSM8K | 94.62 | 82.41 | 89.01 |
| math | 94.66 | 58.68 | 73.50 |
| Agent & Alignment | |||
| BFCL_Live | 53.98 | 63.09 | 74.11 |
| IFEval-strict -prompt | 76.16 | 59.33 | 62.50 |
| Model ID | Description | Hugging Face Link |
|---|---|---|
inclusionAI/LLaDA2.0-mini-preview | Instruction-tuned model, ready for downstream applications. | 🤗 Model Card |
inclusionAI/LLaDA2.0-flash-preview | Instruction-tuned model, ready for downstream applications. | 🤗 Model Card |
transformers and its dependencies installed:1import torch
2import torch.nn.functional as F
3from transformers import AutoModelForCausalLM
4from transformers import AutoTokenizer
5
6model_path = "/path/to/LLaDA2.0-mini-preview"
7device = "cuda:0"
8model = AutoModelForCausalLM.from_pretrained(
9 model_path, trust_remote_code=True, device_map=device
10)
11model = model.to(torch.bfloat16)
12model.eval()
13tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
14
15prompt = "Why does Camus think that Sisyphus is happy?"
16input_ids = tokenizer.apply_chat_template(
17 [{"role": "user", "content": prompt}],
18 add_generation_prompt=True,
19 tokenize=True,
20 return_tensors="pt",
21)
22generated_tokens = model.generate(
23 inputs=input_ids,
24 eos_early_stop=True,
25 gen_length=512,
26 block_length=32,
27 steps=32,
28 temperature=0.0,
29)
30generated_answer = tokenizer.decode(
31 generated_tokens[0],
32 skip_special_tokens=True,
33)
34print(generated_answer)Temperature=0.0, block_length=32, and steps=32. Using a higher temperature value may occasionally result in language mixing and a slight decrease in model performance.1@misc{bie2025llada20scalingdiffusionlanguage,
2 title={LLaDA2.0: Scaling Up Diffusion Language Models to 100B},
3 author={Tiwei Bie and Maosong Cao and Kun Chen and Lun Du and Mingliang Gong and Zhuochen Gong and Yanmei Gu and Jiaqi Hu and Zenan Huang and Zhenzhong Lan and Chengxi Li and Chongxuan Li and Jianguo Li and Zehuan Li and Huabin Liu and Ling Liu and Guoshan Lu and Xiaocheng Lu and Yuxin Ma and Jianfeng Tan and Lanning Wei and Ji-Rong Wen and Yipeng Xing and Xiaolu Zhang and Junbo Zhao and Da Zheng and Jun Zhou and Junlin Zhou and Zhanchao Zhou and Liwang Zhu and Yihong Zhuang},
4 year={2025},
5 eprint={2512.15745},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2512.15745},
9}