Official repository of DARE: Diffusion Large Language Models Alignment and Reinforcement Executor
Python
215
261 commits
updated Jul 30, 2026
We introduce DARE (dLLM Alignment and Reinforcement Executor), a flexible and efficient supervised-finetuning (SFT) and reinforcement learning (RL) training framework designed specifically for diffusion large language models (dLLMs). DARE also integrates dLLMs into a comprehensive evaluation platform. It aims to be both flexible and user-friendly to use with:
DARE is a work in progress, we plan to support more models and algorithm for training and evaluation. We warmly welcome the research community to collaborations, give feedback and share suggestions. Let's advance the diffusion large language models together !!!π
Our training framework is built on top of verl, providing a robust foundation for supervised finetuning and reinforcement learning experiments, and our evaluation framework is built on the top of opencompass, providing a comprehensive and fast evaluations.
[!NOTE] Due to some irreconcilable dependency conflicts between packages, we strongly recommend using two separate virtual environments, for training and evaluation, respectively.
Clone the DARE repo:
git clone https://github.com/yjyddq/DARE
Build training vitual environment:
# Create and activate environment
conda create -n DARE python=3.10 -y
conda activate DARE
# Install dependencies
cd DARE
pip install -r requirements.txt
pip install flash-attn==2.8.3 --no-build-isolation
# or (Recommend)
# install from whl
# wget https://github.com/Dao-AILab/flash-attention/releases/download/v2.8.3/flash_attn-2.8.3+cu12torch2.8cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
# pip install flash_attn-2.8.3+cu12torch2.8cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
# You can go to https://flashattn.dev/ to find the compiled FlashAttention .whl that corresponds to your Python, PyTorch, and CUDA versions.
# After download the .whl, install it
pip install flash_attn-2.8.x+cu12xtorch2.x-cp3xx-cp3xx-linux_x86_64.whl # For example
Build evaluation vitual environment:
# Create and activate environment
conda create --name opencompass python=3.10 -y
conda activate opencompass
# Install dependencies
cd DARE/opencompass
pip install -e .
# For HumanEval evaluation, install the additional dependency:
git clone https://github.com/open-compass/human-eval.git
cd human-eval && pip install -e .
cd ..
# For Math evaluation, pip install the additional dependency:
pip install math_verify latex2sympy2_extended
## Full installation (with support for more datasets)
# pip install "opencompass[full]"
## Environment with model acceleration frameworks
# pip install "opencompass[lmdeploy]"
# or
# pip install lmdeploy==0.10.1
Install SGLang (required for SDAR and LLaDA2.x rollout and evaluation acceleration) from source. We recommend using the SGLang PR branch before it is merged: it fixes DLLM sampling parameters for rollout diversity and exposes opt-in decoder step maps for CJ-GRPO trajectory replay.
# Recommended: rollout diversity plus optional decoder step maps
git clone https://github.com/sgl-project/sglang.git
cd sglang
git fetch origin pull/27943/head:dllm-sampling-params
git checkout dllm-sampling-params
# Fallback: use the previous compatible release only without these PR features
# git clone -b v0.5.9 https://github.com/sgl-project/sglang.git
# cd sglang
# Install the python packages
pip install --upgrade pip
pip install -e "python"
After downloading LLaDA-8B-Instruct, replace the source files with our modified versions to enable several key features:
# Copy modified files to your LLaDA model directory
cp models/xxx/* <path_to_llada_model>/
Or you can move the model weights (.safetensors) to model/xxx/*
# Copy weights to models/xxx/ directory
cp <path_to_llada_model>/*.safetensors models/xxx/
Also for Dream, SDAR, etc.
[!NOTE] Since optimization plan in RL pipeline (various attention-computation backend), this step is indispensable.
Preprocessed datasets is under data/preprocessed. Please refer verl.utils.preprocess to organize datasets.
bash scripts/run_sft.sh # | scripts/run_sft_peft.sh
Alternatively, use/write scripts in recipe/xxx/run_xxx.sh
# peft for llada_8b_instruct
bash recipe/run_sft_peft_llada_8b_instruct.sh
# sft for dream_7b_instruct
bash recipe/run_sft_dream_7b_instruct.sh
# peft for sdar_8b_chat
bash recipe/run_sft_peft_sdar_8b_chat.sh
# online rl for llada_8b_instruct
bash recipe/run_d1_llada_8b_instruct.sh --task math # use Fast-dLLM for rollout acceleration
# online rl for dream_7b_instruct
bash recipe/run_coupled_grpo_dream_7b_instruct.sh --task math # use Fast-dLLM for rollout acceleration
# online rl for sdar_8b_chat
bash recipe/run_bgpo_sdar_8b_chat.sh --task math # use lmdeploy engine for rollout acceleration
# d-TreeRPO for llada_8b_instruct
bash recipe/llada/run_dtreerpo_llada_8b_instruct.sh --task math
# d-TreeRPO for dream_7b_instruct
bash recipe/dream/run_dtreerpo_dream_7b_instruct.sh --task math
Run an example for preference optimization. First download argilla/ultrafeedback-binarized-preferences-cleaned, then run scripts/preprocess_dpo_dataset.sh to save ultrafeedback.parquet under data/preprocessed/dpo/train and data/preprocessed/dpo/test
# preference optimization for llada_8b_instruct
bash recipe/run_vrpo_llada_8b_instruct.sh --task ultrafeedback
# preference optimization for dream_7b_instruct
bash recipe/run_vrpo_dream_7b_instruct.sh --task ultrafeedback
# convert FSDP sharded checkpoints to HuggingFace safetensors format
bash scripts/convert_ckpt_to_hf.sh \
--model_path models/LLaDA-8B-Instruct \
--ckpt_path ./ckpts/<project>/<exp_name>/global_step_xxx/actor \
--output_path ./converted_models/llada_8b_stepxxx \
--model_name llada \
--fsdp_strategy fsdp2 \
--n_gpus 8
First, please follow opencompass for benchmark dataset preparation. Then, you need to specify the model path in opencompass/opencompass/configs/models/dllm/*. For example llada_instruct_8b.py:
from opencompass.models import LLaDAModel
models = [
dict(
type=LLaDAModel,
abbr='llada-8b-instruct',
path='/TO/YOUR/PATH', # Need to modify
max_out_len=1024,
batch_size=1,
run_cfg=dict(num_gpus=1),
)
]
Evaluation of LLaDA-8B-Instruct on mmlu with hf backend:
bash scripts/eval_llada.sh --task mmlu
Evaluation of SDAR-8B-Chat on mmlu with lmdeploy backend:
bash scripts/eval_sdar_8b_chat.sh --task mmlu --engine lmdeploy
If you want to add more benchmarks, models, or custom datasets, please refer to the Evaluation Guideline.
| Model | Params | Training Support | Evaluation Support | Inference Acceleration |
|---|---|---|---|---|
| LLaDA-8B-Base | 8B | sft/rl | β | hf Fast-dLLM |
| LLaDA-8B-Instruct | 8B | sft/rl | β | hf Fast-dLLM |
| LLaDA-1.5 | 8B | sft/rl | β | hf Fast-dLLM |
| Dream-7B-Instruct | 7B | sft/rl | β | hf Fast-dLLM |
| SDAR-1.7B-Chat | 1.7B | sft/rl | β | lmdeploy SGLang |
| SDAR-4B-Chat | 4B | sft/rl | β | lmdeploy SGLang |
| SDAR-8B-Chat | 8B | sft/rl | β | lmdeploy SGLang |
| SDAR-30B-A3B-Chat | 30BA3B | sft | β | lmdeploy SGLang |
| LLaDA2.0-mini | 16BA1B | sft/rl | β | SGLang |
| LLaDA2.1-mini | 16BA1B | sft/rl | β | SGLang |
| Algorithm | Arxiv | Source Code |
|---|---|---|
| d1 | 2504.12216 | dllm-reasoning/d1 |
| vrpo | 2505.19223 | ML-GSAI/LLaDA-1.5 (closed source) |
| coupled-grpo | 2506.20639 | apple/ml-diffucoder |
| mdpo | 2508.13148 | autonomousvision/mdpo |
| cj-grpo | 2509.23924 | yjyddq/EOSER-ASS-RL |
| spg | 2510.09541 | facebookresearch/SPG |
| bgpo | 2510.11683 | THU-KEG/BGPO |
| ebpo | 2602.08676 | inclusionAI/LLaDA2.X (closed source) |
| d-treerpo | 2512.09675 | THU-BPM/d-TreeRPO |
| JustGRPO | 2601.15165 | LeapLabTHU/JustGRPO |
| ESPO | 2512.03759 | ML-GSAI/ESPO |
Evaluation Result Reproduction
| Bench/Model | LLaDA-8B | Dream-7B | SDAR-8B-Chat | SDAR-30B-A3B | LLaDA2.0-mini | LLaDA2.1-mini |
|---|---|---|---|---|---|---|
| MMLU | 65.24 | 66.83 | 77.23 | 79.16 | 72.54 | 69.91 |
| MMLU-Pro | 36.82 | 31.89 | 56.49 | 25.59 | 57.10 | 57.52 |
| Hellaswag | 75.30 | 63.23 | 87.59 | 92.81 | 82.35 | 78.00 |
| ARC-C | 87.80 | 81.36 | 86.78 | 78.98 | 85.76 | 83.39 |
| GSM8k | 79.68 | 83.24 | 91.36 | 92.49 | 88.48 | 86.13 |
| MATH | 41.08 | 48.02 | 78.40 | 68.56 | 81.50 | 84.56 |
| GPQA | 31.82 | 26.77 | 41.40 | 36.36 | 34.34 | 34.34 |
| AIME24 | 2.08 | 0.83 | 13.33 | 13.33 | 16.67 | 26.67 |
| AIME25 | 0.42 | 0.00 | 16.67 | 6.67 | 23.33 | 26.67 |
| OlympiadBench | 9.70 | 12.22 | 24.93 | 32.90 | 38.82 | 40.31 |
| HumanEval | 46.34 | 78.05 | 79.88 | 84.15 | 81.10 | 81.10 |
| MBPP | 38.80 | 56.40 | 71.60 | 52.00 | 64.80 | 62.60 |
Algorithm Comparison (LLaDA-8B-Instruct)
| Bench/Algo | Baseline | d1 | Coupled-GRPO | VRPO | CJ-GRPO | SPG | BGPO |
|---|---|---|---|---|---|---|---|
| Mathematics | |||||||
| GSM8k | 76.5 | 83.7 | 85.3 | 81.9 | 85.6 | 83.5 | 82.3 |
| MATH | 34.6 | 40.6 | 41.0 | 35.8 | 39.2 | 40.6 | 40.0 |
| Coding | |||||||
| HumanEval | 46.9 | 47.6 | 45.1 | 52.4 | 45.1 | 48.8 | 45.1 |
| MBPP | 37.9 | 39.1 | 38.1 | 42.8 | 40.9 | 41.9 | 40.3 |
| Planning | |||||||
| Countdown | 16.8 | 10.7 | 77.9 | 21.5 | 65.2 | 10.1 | 10.0 |
| Sudoku | 26.2 | 31.8 | 21.3 | 29.0 | 25.0 | 27.9 | 42.6 |
Algorithm Comparison (Dream-7B-Instruct)
| Bench/Algo | Baseline | d1 | Coupled-GRPO | CJ-GRPO | SPG | BGPO |
|---|---|---|---|---|---|---|
| Mathematics | ||||||
| GSM8k | 77.2 | 82.5 | 80.3 | 85.7 | 59.4 | 83.9 |
| MATH | 39.6 | 49.7 | 40.4 | 50.7 | 25.2 | 48.9 |
| Coding | ||||||
| HumanEval | 57.9 | 60.7 | 61.6 | 58.5 | 17.7 | 56.7 |
| MBPP | 56.2 | 56.5 | 60.3 | 57.5 | 54.4 | 58.7 |
For any questions or collaboration inquiries, feel free to reach out Jingyi Yang at: yangjingyi946@gmail.com.
Waiting for your joining and contribution.
If you find our work useful, please consider citing:
@article{yang2026dare,
title={DARE: Diffusion Large Language Models Alignment and Reinforcement Executor},
author={Yang, Jingyi and Jiang, Yuxian and Hu, Xuhao and Cheng, Shuang and Qi, Biqing and Shao, Jing},
journal={arXiv preprint arXiv:2604.04215},
year={2026}
}
@article{yang2025taming,
title={Taming Masked Diffusion Language Models via Consistency Trajectory Reinforcement Learning with Fewer Decoding Step},
author={Yang, Jingyi and Chen, Guanxu and Hu, Xuhao and Shao, Jing},
journal={arXiv preprint arXiv:2509.23924},
year={2025}
}
We thank the open-source community for their wonderful work and valuable contributions:
Python
95.8%
Shell
4.0%
Official repository of DARE: Diffusion Large Language Models Alignment and Reinforcement Executor
Python
215
261 commits
updated Jul 30, 2026
We introduce DARE (dLLM Alignment and Reinforcement Executor), a flexible and efficient supervised-finetuning (SFT) and reinforcement learning (RL) training framework designed specifically for diffusion large language models (dLLMs). DARE also integrates dLLMs into a comprehensive evaluation platform. It aims to be both flexible and user-friendly to use with:
DARE is a work in progress, we plan to support more models and algorithm for training and evaluation. We warmly welcome the research community to collaborations, give feedback and share suggestions. Let's advance the diffusion large language models together !!!π
Our training framework is built on top of verl, providing a robust foundation for supervised finetuning and reinforcement learning experiments, and our evaluation framework is built on the top of opencompass, providing a comprehensive and fast evaluations.
[!NOTE] Due to some irreconcilable dependency conflicts between packages, we strongly recommend using two separate virtual environments, for training and evaluation, respectively.
Clone the DARE repo:
git clone https://github.com/yjyddq/DARE
Build training vitual environment:
# Create and activate environment
conda create -n DARE python=3.10 -y
conda activate DARE
# Install dependencies
cd DARE
pip install -r requirements.txt
pip install flash-attn==2.8.3 --no-build-isolation
# or (Recommend)
# install from whl
# wget https://github.com/Dao-AILab/flash-attention/releases/download/v2.8.3/flash_attn-2.8.3+cu12torch2.8cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
# pip install flash_attn-2.8.3+cu12torch2.8cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
# You can go to https://flashattn.dev/ to find the compiled FlashAttention .whl that corresponds to your Python, PyTorch, and CUDA versions.
# After download the .whl, install it
pip install flash_attn-2.8.x+cu12xtorch2.x-cp3xx-cp3xx-linux_x86_64.whl # For example
Build evaluation vitual environment:
# Create and activate environment
conda create --name opencompass python=3.10 -y
conda activate opencompass
# Install dependencies
cd DARE/opencompass
pip install -e .
# For HumanEval evaluation, install the additional dependency:
git clone https://github.com/open-compass/human-eval.git
cd human-eval && pip install -e .
cd ..
# For Math evaluation, pip install the additional dependency:
pip install math_verify latex2sympy2_extended
## Full installation (with support for more datasets)
# pip install "opencompass[full]"
## Environment with model acceleration frameworks
# pip install "opencompass[lmdeploy]"
# or
# pip install lmdeploy==0.10.1
Install SGLang (required for SDAR and LLaDA2.x rollout and evaluation acceleration) from source. We recommend using the SGLang PR branch before it is merged: it fixes DLLM sampling parameters for rollout diversity and exposes opt-in decoder step maps for CJ-GRPO trajectory replay.
# Recommended: rollout diversity plus optional decoder step maps
git clone https://github.com/sgl-project/sglang.git
cd sglang
git fetch origin pull/27943/head:dllm-sampling-params
git checkout dllm-sampling-params
# Fallback: use the previous compatible release only without these PR features
# git clone -b v0.5.9 https://github.com/sgl-project/sglang.git
# cd sglang
# Install the python packages
pip install --upgrade pip
pip install -e "python"
After downloading LLaDA-8B-Instruct, replace the source files with our modified versions to enable several key features:
# Copy modified files to your LLaDA model directory
cp models/xxx/* <path_to_llada_model>/
Or you can move the model weights (.safetensors) to model/xxx/*
# Copy weights to models/xxx/ directory
cp <path_to_llada_model>/*.safetensors models/xxx/
Also for Dream, SDAR, etc.
[!NOTE] Since optimization plan in RL pipeline (various attention-computation backend), this step is indispensable.
Preprocessed datasets is under data/preprocessed. Please refer verl.utils.preprocess to organize datasets.
bash scripts/run_sft.sh # | scripts/run_sft_peft.sh
Alternatively, use/write scripts in recipe/xxx/run_xxx.sh
# peft for llada_8b_instruct
bash recipe/run_sft_peft_llada_8b_instruct.sh
# sft for dream_7b_instruct
bash recipe/run_sft_dream_7b_instruct.sh
# peft for sdar_8b_chat
bash recipe/run_sft_peft_sdar_8b_chat.sh
# online rl for llada_8b_instruct
bash recipe/run_d1_llada_8b_instruct.sh --task math # use Fast-dLLM for rollout acceleration
# online rl for dream_7b_instruct
bash recipe/run_coupled_grpo_dream_7b_instruct.sh --task math # use Fast-dLLM for rollout acceleration
# online rl for sdar_8b_chat
bash recipe/run_bgpo_sdar_8b_chat.sh --task math # use lmdeploy engine for rollout acceleration
# d-TreeRPO for llada_8b_instruct
bash recipe/llada/run_dtreerpo_llada_8b_instruct.sh --task math
# d-TreeRPO for dream_7b_instruct
bash recipe/dream/run_dtreerpo_dream_7b_instruct.sh --task math
Run an example for preference optimization. First download argilla/ultrafeedback-binarized-preferences-cleaned, then run scripts/preprocess_dpo_dataset.sh to save ultrafeedback.parquet under data/preprocessed/dpo/train and data/preprocessed/dpo/test
# preference optimization for llada_8b_instruct
bash recipe/run_vrpo_llada_8b_instruct.sh --task ultrafeedback
# preference optimization for dream_7b_instruct
bash recipe/run_vrpo_dream_7b_instruct.sh --task ultrafeedback
# convert FSDP sharded checkpoints to HuggingFace safetensors format
bash scripts/convert_ckpt_to_hf.sh \
--model_path models/LLaDA-8B-Instruct \
--ckpt_path ./ckpts/<project>/<exp_name>/global_step_xxx/actor \
--output_path ./converted_models/llada_8b_stepxxx \
--model_name llada \
--fsdp_strategy fsdp2 \
--n_gpus 8
First, please follow opencompass for benchmark dataset preparation. Then, you need to specify the model path in opencompass/opencompass/configs/models/dllm/*. For example llada_instruct_8b.py:
from opencompass.models import LLaDAModel
models = [
dict(
type=LLaDAModel,
abbr='llada-8b-instruct',
path='/TO/YOUR/PATH', # Need to modify
max_out_len=1024,
batch_size=1,
run_cfg=dict(num_gpus=1),
)
]
Evaluation of LLaDA-8B-Instruct on mmlu with hf backend:
bash scripts/eval_llada.sh --task mmlu
Evaluation of SDAR-8B-Chat on mmlu with lmdeploy backend:
bash scripts/eval_sdar_8b_chat.sh --task mmlu --engine lmdeploy
If you want to add more benchmarks, models, or custom datasets, please refer to the Evaluation Guideline.
| Model | Params | Training Support | Evaluation Support | Inference Acceleration |
|---|---|---|---|---|
| LLaDA-8B-Base | 8B | sft/rl | β | hf Fast-dLLM |
| LLaDA-8B-Instruct | 8B | sft/rl | β | hf Fast-dLLM |
| LLaDA-1.5 | 8B | sft/rl | β | hf Fast-dLLM |
| Dream-7B-Instruct | 7B | sft/rl | β | hf Fast-dLLM |
| SDAR-1.7B-Chat | 1.7B | sft/rl | β | lmdeploy SGLang |
| SDAR-4B-Chat | 4B | sft/rl | β | lmdeploy SGLang |
| SDAR-8B-Chat | 8B | sft/rl | β | lmdeploy SGLang |
| SDAR-30B-A3B-Chat | 30BA3B | sft | β | lmdeploy SGLang |
| LLaDA2.0-mini | 16BA1B | sft/rl | β | SGLang |
| LLaDA2.1-mini | 16BA1B | sft/rl | β | SGLang |
| Algorithm | Arxiv | Source Code |
|---|---|---|
| d1 | 2504.12216 | dllm-reasoning/d1 |
| vrpo | 2505.19223 | ML-GSAI/LLaDA-1.5 (closed source) |
| coupled-grpo | 2506.20639 | apple/ml-diffucoder |
| mdpo | 2508.13148 | autonomousvision/mdpo |
| cj-grpo | 2509.23924 | yjyddq/EOSER-ASS-RL |
| spg | 2510.09541 | facebookresearch/SPG |
| bgpo | 2510.11683 | THU-KEG/BGPO |
| ebpo | 2602.08676 | inclusionAI/LLaDA2.X (closed source) |
| d-treerpo | 2512.09675 | THU-BPM/d-TreeRPO |
| JustGRPO | 2601.15165 | LeapLabTHU/JustGRPO |
| ESPO | 2512.03759 | ML-GSAI/ESPO |
Evaluation Result Reproduction
| Bench/Model | LLaDA-8B | Dream-7B | SDAR-8B-Chat | SDAR-30B-A3B | LLaDA2.0-mini | LLaDA2.1-mini |
|---|---|---|---|---|---|---|
| MMLU | 65.24 | 66.83 | 77.23 | 79.16 | 72.54 | 69.91 |
| MMLU-Pro | 36.82 | 31.89 | 56.49 | 25.59 | 57.10 | 57.52 |
| Hellaswag | 75.30 | 63.23 | 87.59 | 92.81 | 82.35 | 78.00 |
| ARC-C | 87.80 | 81.36 | 86.78 | 78.98 | 85.76 | 83.39 |
| GSM8k | 79.68 | 83.24 | 91.36 | 92.49 | 88.48 | 86.13 |
| MATH | 41.08 | 48.02 | 78.40 | 68.56 | 81.50 | 84.56 |
| GPQA | 31.82 | 26.77 | 41.40 | 36.36 | 34.34 | 34.34 |
| AIME24 | 2.08 | 0.83 | 13.33 | 13.33 | 16.67 | 26.67 |
| AIME25 | 0.42 | 0.00 | 16.67 | 6.67 | 23.33 | 26.67 |
| OlympiadBench | 9.70 | 12.22 | 24.93 | 32.90 | 38.82 | 40.31 |
| HumanEval | 46.34 | 78.05 | 79.88 | 84.15 | 81.10 | 81.10 |
| MBPP | 38.80 | 56.40 | 71.60 | 52.00 | 64.80 | 62.60 |
Algorithm Comparison (LLaDA-8B-Instruct)
| Bench/Algo | Baseline | d1 | Coupled-GRPO | VRPO | CJ-GRPO | SPG | BGPO |
|---|---|---|---|---|---|---|---|
| Mathematics | |||||||
| GSM8k | 76.5 | 83.7 | 85.3 | 81.9 | 85.6 | 83.5 | 82.3 |
| MATH | 34.6 | 40.6 | 41.0 | 35.8 | 39.2 | 40.6 | 40.0 |
| Coding | |||||||
| HumanEval | 46.9 | 47.6 | 45.1 | 52.4 | 45.1 | 48.8 | 45.1 |
| MBPP | 37.9 | 39.1 | 38.1 | 42.8 | 40.9 | 41.9 | 40.3 |
| Planning | |||||||
| Countdown | 16.8 | 10.7 | 77.9 | 21.5 | 65.2 | 10.1 | 10.0 |
| Sudoku | 26.2 | 31.8 | 21.3 | 29.0 | 25.0 | 27.9 | 42.6 |
Algorithm Comparison (Dream-7B-Instruct)
| Bench/Algo | Baseline | d1 | Coupled-GRPO | CJ-GRPO | SPG | BGPO |
|---|---|---|---|---|---|---|
| Mathematics | ||||||
| GSM8k | 77.2 | 82.5 | 80.3 | 85.7 | 59.4 | 83.9 |
| MATH | 39.6 | 49.7 | 40.4 | 50.7 | 25.2 | 48.9 |
| Coding | ||||||
| HumanEval | 57.9 | 60.7 | 61.6 | 58.5 | 17.7 | 56.7 |
| MBPP | 56.2 | 56.5 | 60.3 | 57.5 | 54.4 | 58.7 |
For any questions or collaboration inquiries, feel free to reach out Jingyi Yang at: yangjingyi946@gmail.com.
Waiting for your joining and contribution.
If you find our work useful, please consider citing:
@article{yang2026dare,
title={DARE: Diffusion Large Language Models Alignment and Reinforcement Executor},
author={Yang, Jingyi and Jiang, Yuxian and Hu, Xuhao and Cheng, Shuang and Qi, Biqing and Shao, Jing},
journal={arXiv preprint arXiv:2604.04215},
year={2026}
}
@article{yang2025taming,
title={Taming Masked Diffusion Language Models via Consistency Trajectory Reinforcement Learning with Fewer Decoding Step},
author={Yang, Jingyi and Chen, Guanxu and Hu, Xuhao and Shao, Jing},
journal={arXiv preprint arXiv:2509.23924},
year={2025}
}
We thank the open-source community for their wonderful work and valuable contributions:
Python
95.8%
Shell
4.0%