
A.X K2 DSpark vs A.X K2: What a Drafter-Only Model Actually Buys You
- AlibabaNEWQwen: Qwen3.8 Flash2026-08-26$0.15 / $0.47 per 1M tokens
- z-aiNEWZ.ai: GLM 5.3 Flash2026-08-2658Intelligence72Coding
- DeepSeekNEWDeepSeek: DeepSeek V4 Flash Vision (Exp)2026-08-21$0.15 / $0.29 per 1M tokens
- z-aiNEWZ.ai: GLM 5.32026-08-1860Intelligence75Coding
- obsidianQwen3.8 27B2026-08-1552Intelligence68Coding
- qwenQwen: Qwen3.8 27B (free)2026-08-13qwen/qwen3.8-27b-free
- deepseekDeepSeek: DeepSeek V4 Pro 08132026-08-1253Intelligence69Coding
- grokSpaceXAI: Grok 4.62026-08-1261Intelligence77Coding
- metaMeta: Muse Spark 1.22026-08-0557Intelligence72Coding
- qwenQwen: Qwen3.8 Max2026-08-0358Intelligence72Coding
- deepseekDeepSeek: DeepSeek V4 Flash 07312026-07-3152Intelligence69Coding
- minimaxMiniMax: MiniMax-H32026-07-31minimax/minimax-h3
- qwenQwen: Qwen3.7 Flash2026-07-27$0.03 / $0.13 per 1M tokens
- orcaOrcaDub: OrcaDub 1.02026-07-27orca/dub
- anthropicAnthropic: Claude Opus 52026-07-2463Intelligence78Coding
- googleGoogle: Gemini 3.6 Flash2026-07-2152Intelligence69Coding
- googleGoogle: Gemini 3.5 Flash-Lite2026-07-2137Intelligence49Coding
- metaMeta: Muse Spark 1.12026-07-1653Intelligence71Coding
- kimiMoonshotAI: Kimi K32026-07-1560Intelligence76Coding
- openaiOpenAI: GPT-5.6 Luna2026-07-0952Intelligence71Coding
The strangest thing about an A.X K2 DSpark vs A.X K2 comparison is that it isn't really a comparison. A.X K2 DSpark can't be used in place of A.X K2 — it can't be used at all on its own. It's a "drafter-only checkpoint" that SK Telecom quietly dropped on Hugging Face in early August with no announcement: a speculative-decoding draft model whose entire job is to make A.X K2, the company's 688-billion-parameter open-weight Mixture-of-Experts flagship, generate tokens faster while leaving its answers untouched. So the real question this matchup turns on isn't "which is better." It's "should you run A.X K2 with DSpark, or without it?" Everything in this piece is labeled by source, because the gap between what the repo tells us and what has actually been measured is the whole story.
What A.X K2 DSpark actually is
SK Telecom's model card is unusually blunt about what the model is for. A.X K2 DSpark "is a DSpark speculative-decoding draft model for A.X K2" and "a drafter-only checkpoint: it has no standalone use and is intended to be loaded by vLLM alongside A.X K2 through speculative decoding." In practice that means you download it, point a compatible vLLM at both it and A.X K2, and the two work as a team: DSpark proposes candidate tokens, A.X K2 verifies them, and only verified tokens get emitted.
Two details of the draft mechanism are knowable from the repo. First, DSpark proposes multiple candidate tokens in parallel rather than writing a draft sequence one token at a time, drawing on A.X K2's own hidden representations together with lightweight local dependency modeling. Second, the whole thing is built to be lossless: every candidate is verified by the target model before it is committed, so A.X K2's output distribution is unchanged by construction.
The release itself is a pre-announcement. The card says the model is "currently in final validation and is planned for public release within the next few days," and that evaluation is "currently in progress" — every throughput, TPOT, and mean-accepted-length metric on the card is still listed as TBD.
Why this "versus" is really "with versus without"
Because A.X K2 DSpark has no standalone use, there is no scenario in which you choose it instead of A.X K2. The choice is between A.X K2 by itself and A.X K2 with the draft model attached. On output quality the two configurations are identical by construction; the only axis that can move is decode speed.
For the record, here is what A.X K2 is: a 688B-total, 33B-active Mixture-of-Experts decoder with 256 experts plus one shared expert (8 active per forward pass), 61 layers, 64 attention heads, and a 163,840-token vocabulary, released with open weights under Apache 2.0 on July 29. It was pre-trained on roughly 8.2 trillion tokens natively in MXFP8, uses SK Telecom's Sparse Gated Attention for long-context efficiency, and carries a 262,144-token context (native 128K extended to 256K via YaRN). SK Telecom reports it averages +32.2 percentage points over A.X K1 across 14 benchmarks, with long-context and agent evaluations up about 83.9 points — all vendor-reported, with no independent composite score published yet.
DSpark is designed specifically for that architecture. The card says it is matched to A.X K2's MoE structure, attention layout, and native 256K configuration, and is not validated against any other target. It inherits the same 262,144-token context, so running it costs you nothing on window size.

Reading the model card: knowable, not yet confirmed
The repo gives you a clear picture of what the model is, and a short list of things it does not tell you.
Knowable today:
• It is a drafter-only checkpoint with no standalone use, loaded by vLLM alongside A.X K2 through speculative decoding.
• The license is Apache 2.0; the weights are free to download and use.
• Context length matches A.X K2 at 262,144 tokens.
• It runs via SK Telecom's vLLM fork (the SKT-AI/vllm repo, axk2-v0.23.0 branch) using a --speculative-config flag.
• The method is documented in a paper, "DSpark: Confidence-Scheduled Speculative Decoding with Semi-Autoregressive Generation" (arXiv:2607.05147, submitted July 6, 2026) — that paper is also the source of the speedup numbers you'll see quoted.
• No inference provider deploys it today, so there is no hosted API to call.
Not yet confirmed:
• An official announcement — the card promises public release "within the next few days."
• Any A.X K2-specific speedup figure. Evaluation is in progress and every performance metric is TBD.
• How much it actually helps under load, which the card flags as "workload-dependent."
• Any independent, third-party measurement of the draft model.

How DSpark is different from ordinary speculative decoding
Speculative decoding is a well-worn trick: a small, fast draft model writes a guess at the next several tokens, and the big model checks the whole guess in a single forward pass, accepting the prefix that survives verification before taking one corrective step. Done well it cuts latency dramatically with no quality loss.
The catch, as the DSpark paper frames it, is that recent parallel drafters — which propose long sequences in one pass — suffer "rapid acceptance decay" because the later tokens in the draft carry no dependency on the earlier ones, so they get rejected far more often. And blindly verifying long blocks wastes batch capacity on tokens that are likely to be rejected, which hurts throughput precisely in high-concurrency serving systems.
DSpark attacks both problems:
• Semi-autoregressive drafting. It couples a parallel backbone with a lightweight sequential module, adding intra-block dependency modeling so later draft tokens depend on earlier ones — which is what mitigates suffix decay.
• Confidence-scheduled verification. Instead of verifying a fixed block length, it tailors the verification length per request, based on estimated prefix-survival probabilities and the engine's throughput profile. Verification becomes load-aware.
The paper's numbers — and what they don't tell you
Here is the number you will see quoted: DSpark "accelerates per-user generation speeds by 60 to 85 percent" at matched throughput levels, versus the MTP-1 production baseline. The paper also reports substantially improved accepted length versus state-of-the-art autoregressive and parallel drafters on offline benchmarks, and says it prevents severe throughput degradation under strict interactivity constraints.
Read the fine print, because it matters for this specific matchup: that 60–85% figure was measured in DeepSeek-V4's serving system under live user traffic — not on A.X K2. It is a claim about the DSpark method deployed on a different model's stack. The A.X K2 DSpark card, by contrast, has no speedup number at all yet. The honest scoreboard for this pairing is therefore: identical output by construction, and a speedup that the method's paper suggests is plausible but that SK Telecom itself has not yet measured on the model this draft checkpoint was built for.

What running it actually takes
The prerequisite is the part most people will bounce off: you have to self-host A.X K2. There is no hosted API for the target model — it is open-weight, and serving a 688B/33B-active MoE is a serious infrastructure commitment. DSpark only matters to teams that have already made that commitment.
If you have, the marginal cost of adding the draft model is small:
• Download the Apache 2.0 draft checkpoint and run SK Telecom's vLLM fork (axk2-v0.23.0 branch).
• Enable speculative decoding via the --speculative-config flag, pointing it at the DSpark checkpoint.
• Budget extra memory for the draft weights, and accept that you are now on a vendor fork of vLLM rather than stock — a maintenance consideration.
• Remember the paper's own caveat that verification is not free: under high concurrency, careless verification eats batch capacity, which is exactly the failure mode confidence-scheduled verification is designed to manage.
One more thing worth knowing: Hugging Face reports that downloads are "not tracked for this model," so there is no public signal for how many teams have actually tried it.
Who should pick which
Run plain A.X K2 if any of these describe you:
• You run stock vLLM and don't want a second checkpoint or a vendor fork in the path.
• Your workloads are throughput-bound but not latency-bound, and users tolerate waiting on long generations.
• You'd rather wait for the official release and first independent measurements.
Run A.X K2 plus DSpark if this is you:
• You self-host A.X K2 and generation latency or token throughput is what's hurting.
• Long-context and agentic workloads make users wait on long outputs — the regime speculative decoding is built for.
• You're comfortable running a pre-announcement component whose downside is bounded: worst case it doesn't help, and it cannot change output quality.
Choose neither if you don't self-host a 688B MoE at all. A.X K2's sovereignty and Korean-language strengths only reach you if you run it, and many teams will instead reach frontier open models through a hosted catalog. That is where keeping your integration model-agnostic pays: OrcaRouter's one OpenAI-compatible endpoint spans 200+ models at provider list price with 0% markup, automatic failover, and a routing DSL for composing several models into one call. (Neither A.X K2 nor A.X K2 DSpark is hosted anywhere today — including on OrcaRouter — so this is about the rest of your stack, not about routing this pair.) The posture still transfers: try an unproven model on a fraction of traffic and fail over automatically, rather than betting a production path on it.
What to watch next
The state of play is simple: the repo is real, the method is documented, the measurements are not. The three things to watch are the promised public release (the card says "within the next few days"), the first A.X K2-specific throughput or latency numbers once SK Telecom's evaluation finishes, and whether any inference provider picks up the pair — which is what would make DSpark relevant to teams that don't self-host.
FAQ
Can A.X K2 DSpark replace A.X K2?
No. It is a drafter-only checkpoint with no standalone use — it exists to make A.X K2 decode faster, not to be an alternative to it. You cannot run A.X K2 DSpark without A.X K2.
Does DSpark change A.X K2's output quality?
No, by construction. Every candidate token is verified by A.X K2 before it is committed, so the output distribution is unchanged — the card describes the approach as lossless.
Do I need to self-host A.X K2 to use DSpark?
Yes. DSpark is loaded by vLLM alongside A.X K2, so there is nothing for it to draft for unless you are running the 688B target. There is no hosted API for either model today.
Does DSpark work with other models?
SK Telecom designed it for A.X K2's MoE architecture, attention structure, and 256K context, and has not validated it against any other target.
The verdict
A.X K2 DSpark vs A.X K2 is a "versus" where the honest answer is "both." If you already run A.X K2 and users wait on long generations, the draft model is a free, low-risk experiment: Apache 2.0 weights, worst case no speedup, and no quality regression possible by construction. If you're not latency-bound — or not self-hosting a 688B MoE at all — you can safely ignore it until SK Telecom's evaluation numbers land and the promised public release makes the model official. What you shouldn't do is mistake the paper's 60–85% figure for a measurement of this model: right now, everything DSpark-specific about A.X K2 is still TBD.
