Liquid AI shipped DSpark draft checkpoints for three LFM2.5 models on August 20: the 1.2B-Instruct, 2.6B, and 8B-A1B. The speculative decoding technique hits 3.18x throughput on H100 and 2.87x on M4 Max, with no output quality degradation.

Speculative decoding runs a small draft model that proposes candidate tokens, then lets the target model verify the entire batch in one forward pass. DSpark adds three components: a parallel backbone that generates hidden states for all draft tokens in a single pass, a Markov head that models inter-token dependencies to raise acceptance rates, and a confidence-scheduled verifier that prunes low-confidence suffixes before verification overhead exceeds the speedup gain.

DSpark speculative decoding pipeline: draft model proposes a token batch via parallel backbone, Markov head, and confidence-scheduled verifier; the target model verifies in one forward pass.
FIG. 02 DSpark speculative decoding pipeline: draft model proposes a token batch via parallel backbone, Markov head, and confidence-scheduled verifier; the target model verifies in one forward pass. — Liquid AI / HuggingFace blog, 2025

Each draft model is roughly 300M parameters: 295.7M for the 1.2B, 327.7M for the 2.6B and 8B-A1B. Training ran 15 epochs on SFT, chat, code, and function-calling data. The release checkpoint was selected for highest acceptance rate, not lowest loss.

Target ModelDraft ParamsTraining EpochsTraining DataCheckpoint Selection
LFM2.5-1.2B-Instruct295.7M15SFT, chat, code, function-callingHighest acceptance rate
LFM2.5-2.6B327.7M15SFT, chat, code, function-callingHighest acceptance rate
LFM2.5-8B-A1B327.7M15SFT, chat, code, function-callingHighest acceptance rate
FIG. 03 DSpark draft model specifications per LFM2.5 target — Liquid AI / HuggingFace blog, 2025

On H100, the 8B-A1B shows the strongest gains: MATH500 reaches 3.18x (428 → 1362 tok/s, 8.27/10 acceptance), MT-Bench hits 3.02x (426 → 1288 tok/s), and the five-benchmark mean is 2.54x (418 → 1074 tok/s). The 2.6B averages 2.67x on H100 (323 → 864 tok/s). The 1.2B averages 2.10x (656 → 1384 tok/s absolute). Function-calling latency drops 57% on the 2.6B across multi-tool scenarios. Output is identical to unassisted greedy decoding by construction: rejected draft tokens are replaced by the target model's own token.

ModelBenchmarkBaseline (tok/s)DSpark (tok/s)SpeedupAcceptance Rate
LFM2.5-8B-A1BMATH50042813623.18×8.27/10
LFM2.5-8B-A1BMT-Bench42612883.02×
LFM2.5-8B-A1B5-benchmark mean41810742.54×
LFM2.5-2.6B5-benchmark mean3238642.67×
LFM2.5-1.2B-Instruct5-benchmark mean65613842.10×
FIG. 04 H100 throughput results: baseline vs. DSpark speculative decoding across LFM2.5 models and benchmarks — Liquid AI / HuggingFace blog, 2025

On-device results are mixed. The 2.6B on M4 Max reaches 2.27x (61 → 139 tok/s), matching or exceeding most proprietary cloud APIs at the edge. The 1.2B on M4 Max averages 2.54x (138 → 350 tok/s mean across five benchmarks; MATH500 specifically reaches 140 → 366 tok/s, HumanEval 136 → 389 tok/s). The 8B-A1B, however, averages only 1.18x on M4 Max (90 → 106 tok/s) versus 2.54x on H100. The gap stems from llama.cpp's Metal backend MoE implementation: verifying a token block activates more experts per step, generating more weight traffic than baseline and eroding the speculative decoding gain.

ModelBenchmarkBaseline (tok/s)DSpark (tok/s)SpeedupNote
LFM2.5-1.2B-Instruct5-benchmark mean1383502.54×
LFM2.5-1.2B-InstructMATH5001403662.61×
LFM2.5-1.2B-InstructHumanEval1363892.86×
LFM2.5-2.6B5-benchmark mean611392.27×Matches/exceeds most cloud APIs at edge
LFM2.5-8B-A1B5-benchmark mean901061.18×MoE Metal backend erodes gain
FIG. 05 M4 Max on-device throughput results: baseline vs. DSpark across LFM2.5 models and benchmarks — Liquid AI / HuggingFace blog, 2025

GSM8K acceptance for the 8B-A1B drops to 4.02/10—the lowest across all combinations—producing 1.29x speedup (385 → 496 tok/s) instead of 3.18x. Acceptance rate is the primary lever: draft-model overhead cancels savings when tokens are rejected. Teams evaluating DSpark should profile acceptance rates on their specific data before committing.

DSpark delivers material H100 gains across all three sizes with no accuracy regression, but MoE on Apple Silicon remains problematic. Defer 8B-A1B on-device until llama.cpp's Metal MoE path matures.