CoolFace
Modelpublic

nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
0likes259downloads
Model Card

Model Description

This is an EAGLE-3 draft model for Qwen3-235B-A22B-Instruct-2507, trained from scratch using LK losses — training objectives that directly target acceptance rate rather than using KL divergence as a proxy.

Training Details

Performance

Average acceptance length (τ) measured across MT-bench, HumanEval, and GSM8K with K = 7:

ConfigurationTemperature = 0Temperature = 1
EAGLE-3 + KL4.253.77
EAGLE-3 + LK (ours)4.324.08

Comparison with Public Checkpoints

ModelMT-bench (τ)HumanEval (τ)GSM8K (τ)
zhuyksir/EAGLE3-Qwen3-235B-A22B-Instruct-2507-FP82.644.034.43
RedHatAI/Qwen3-235B-A22B-Instruct-2507-speculator.eagle32.563.523.78
Ours3.184.424.65

Measured at temperature = 1 with K = 7

Note: Earlier vLLM versions sampled draft tokens greedily regardless of temperature, which underestimated acceptance rates at temperature > 0. Stochastic draft sampling was introduced in v0.18.0, and from v0.21.0 it can be enabled via speculative_config using rejection_sample_method and draft_sample_method. The acceptance metrics reported above were measured under standard rejection sampling and are reproducible with the configuration below.

Usage with vLLM

python
from vllm import LLM, SamplingParams

llm = LLM(
    model="Qwen/Qwen3-235B-A22B-Instruct-2507",
    speculative_config={
        "method": "eagle3",
        "model": "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507",
        "num_speculative_tokens": 6,
        "rejection_sample_method": "standard",
        "draft_sample_method": "gumbel",
    },
)

sampling_params = SamplingParams(temperature=0.7)
outputs = llm.generate(["Explain speculative decoding in simple terms."], sampling_params)

License

CC BY 4.0

Citation

@misc{samarin2026lklosses,
  title     = {LK Losses: Direct Acceptance Rate Optimization for Speculative Decoding},
  author    = {Alexander Samarin and Sergei Krutikov and Anton Shevtsov and Sergei Skvortsov and Filipp Fisin and Alexander Golubev},
  year      = {2026},
  eprint    = {2602.23881},
  archivePrefix = {arXiv},
  primaryClass  = {cs.LG},
  url       = {https://arxiv.org/abs/2602.23881}
}