Instructions to use nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507") model = AutoModelForCausalLM.from_pretrained("nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
- SGLang
How to use nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507 with Docker Model Runner:
docker model run hf.co/nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
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
- Base model: Qwen/Qwen3-235B-A22B-Instruct-2507
- Draft architecture: EAGLE-3
- Training data: Infinity-Instruct-0625 with Qwen3-235B-A22B-Instruct-2507 generated responses
- Training objective: Hybrid LK loss with adaptive λ scheduling (η=3)
- Training: 10 epochs from random initialization
- Draft length: K = 6 speculative tokens
Performance
Average acceptance length (τ) measured across MT-bench, HumanEval, and GSM8K with K = 7:
| Configuration | Temperature = 0 | Temperature = 1 |
|---|---|---|
| EAGLE-3 + KL | 4.25 | 3.77 |
| EAGLE-3 + LK (ours) | 4.32 | 4.08 |
Comparison with Public Checkpoints
| Model | MT-bench (τ) | HumanEval (τ) | GSM8K (τ) |
|---|---|---|---|
| zhuyksir/EAGLE3-Qwen3-235B-A22B-Instruct-2507-FP8 | 2.64 | 4.03 | 4.43 |
| RedHatAI/Qwen3-235B-A22B-Instruct-2507-speculator.eagle3 | 2.56 | 3.52 | 3.78 |
| Ours | 3.18 | 4.42 | 4.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_configusingrejection_sample_methodanddraft_sample_method. The acceptance metrics reported above were measured under standard rejection sampling and are reproducible with the configuration below.
Usage with vLLM
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
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}
}
- Downloads last month
- 23
Model tree for nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
Base model
Qwen/Qwen3-235B-A22B-Instruct-2507Dataset used to train nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
Collection including nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
Paper for nebius/EAGLE3-Qwen3-235B-A22B-Instruct-2507
Evaluation results
- Acceptance Length on MT-Benchself-reported3.180
- Acceptance Length on GSM8Kself-reported4.650
- Acceptance Length on HumanEvalself-reported4.420