Add DIVERSED (AISTATS 2026) under Paradigms > Parallel#2
Open
kasakh wants to merge 1 commit into
Open
Conversation
DIVERSED: Relaxed Speculative Decoding via Dynamic Ensemble Verification introduces a learned ensemble verifier blending draft and target distributions per token. Static ensemble is provably Pareto-optimal between acceptance rate and output fidelity; dynamic per-token weighting pushes beyond it. Paper: https://arxiv.org/abs/2604.07622 Code: https://github.com/comeusr/diversed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds DIVERSED: Relaxed Speculative Decoding via Dynamic Ensemble Verification (AISTATS 2026).
TL;DR. Standard speculative decoding rejects many plausible draft tokens because it enforces an exact distributional match with the target. DIVERSED introduces a learned ensemble verifier ν(x) = w·p_target(x) + (1−w)·q_draft(x) with a task- and context-dependent weight. The static ensemble exactly traces the Pareto frontier between acceptance rate and output fidelity (acceptance = 1 − w·TV(q,p)); dynamic per-token weighting then pushes beyond it. A single draft–target pair serves multiple latency–quality SLAs without retraining or extra weights.
Results. On Llama-3.1-8B / Llama-3.2-1B (and generalising to Qwen3 and Gemma-3): draft-token acceptance jumps 21–45% → 70–85%, delivering up to 3× end-to-end latency reduction with task quality preserved (ROUGE-2 9.46 → 12.11; math accuracy held at 67%; code Pass@1 held at 53%). At low temperature, acceptance reaches 89–91%.
Authors. Ziyi Wang, Siva Rajesh Kasa, Ankith M S, Santhosh Kumar Kasa, Jiaru Zou, Sumit Negi, Ruqi Zhang, Nan Jiang, Qifan Song.
Happy to adjust the placement or formatting if it's better suited to a different section — please let me know.