Close Menu
NCIJ Network NCIJ Network
    What's Hot

    U.S.-Canada Trade Talks Aim to Avert Another Tariff War

    August 20, 2026

    Kyiv’s Dormition Cathedral is Revived After Russian Drone Strike

    August 20, 2026

    Paris St-Germain move game after heat damages Parc des Princes pitch

    August 20, 2026
    Facebook X (Twitter) Instagram
    Trending
    • U.S.-Canada Trade Talks Aim to Avert Another Tariff War
    • Kyiv’s Dormition Cathedral is Revived After Russian Drone Strike
    • Paris St-Germain move game after heat damages Parc des Princes pitch
    • Reform’s new economic adviser has called for end of pensioners’ triple lock | Reform UK
    • Leaders attack ‘demotivating’ plan to make pupils who fail GCSEs retake maths and English | Education
    • The US Treasury is buying long bonds, but not very many
    • Someone targeted security researchers using a fake crypto conference as a lure
    • Hackers poison arrayref Rust crate to push infostealer malware
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Thursday, August 20
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Artificial Intelligence

    Liquid AI Releases LFM2.5-DSpark Draft Models That Deliver Up to 3.18x Faster Decoding Without Changing Model Outputs

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKAugust 20, 2026 Artificial Intelligence No Comments5 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Liquid AI has released DSpark draft model checkpoints for three models in its LFM2.5 family: LFM2.5-1.2B-Instruct, LFM2.5-2.6B, and LFM2.5-8B-A1B. Each drafter adds a speculative decoding path to an existing target model. A roughly 300M-parameter draft proposes a block of nine candidate tokens, and the target model verifies the whole block in a single forward pass. The trade is a small memory increase for a large decoding speedup: up to 3.18x on an H100 and up to 2.87x on an M4 Max MacBook Pro. Output does not change. Under greedy decoding, the emitted sequence is identical to the target model running alone, so benchmark accuracy is unchanged. Both llama.cpp and SGLang have day-one support.

    Is it deployable?

    Yes, if you self-host. The weights ship as Safetensors and GGUF, and the drafter checkpoints are not served by any hosted inference provider on Hugging Face today. Running them needs an SGLang or llama.cpp build with DSpark support for LFM2 targets.

    • Company level: The LFM Open License v1.0 allows free commercial use only while your entity stays under $10M in annual revenue. Indie developers, startups and SMBs are covered; larger enterprises must contact Liquid AI for a commercial license first.
    • Industries: Developer tooling, consumer apps that run locally, robotics and embedded systems, plus healthcare, finance and defense workloads that keep data on-premise or on-device.
    • Applications: Local coding assistants, on-device agents that reason before each tool call, single-user chat where batch size is 1, and offline copilots on laptop-class hardware.

    What are Drafters?

    Speculative decoding uses a small model to propose tokens that a larger model verifies. Each LFM2.5 drafter is roughly 300M parameters: 295.7M for the 1.2B-Instruct target and 327.7M for the 2.6B and 8B-A1B targets. The backbone is 5 full-attention layers with hidden_size=2048, intermediate_size=6144, GQA at 32 heads over 8 KV heads, and a block size of 9. The drafter ships no vocabulary weights; embedding and LM head are tied from the target at load time. The 2.6B drafter repository is 655 MB in BF16, which is the real memory cost you are adding.

    DSpark combines three parts. A DFlash-style parallel backbone, conditioned on the target’s context features, produces hidden states for all draft tokens in one forward pass. A lightweight sequential head, modeled as a Markov chain between neighboring tokens at rank 256, restores inter-token dependency and lifts acceptance at later block positions. A confidence-scheduled verifier predicts each token’s survival probability and prunes low-confidence suffixes when verification would cost more than it saves.

    The Measured Results

    Liquid AI reports throughput on 1xH100 in BF16 via SGLang, and on an M4 Max MacBook Pro via llama.cpp with Metal and FP16 GGUF weights. Both use block size 9, batch size 1 and temperature 0, across MATH500, HumanEval, MBPP, GSM8K and MT-Bench.

    Target H100 mean Best H100 case M4 Max mean Best M4 Max case
    LFM2.5-1.2B-Instruct 2.10x (656 → 1384 tok/s) 2.56x on MATH500 2.54x (138 → 350 tok/s) 2.87x on HumanEval (136 → 389)
    LFM2.5-2.6B 2.67x (323 → 864 tok/s) 3.06x on MATH500 2.27x (61 → 139 tok/s) 2.63x on HumanEval
    LFM2.5-8B-A1B 2.54x (418 → 1074 tok/s) 3.18x on MATH500 (428 → 1362) 1.18x (90 → 106 tok/s) 1.44x on GSM8K

    Speedup tracks acceptance rate, which tracks how predictable the output is. LFM2.5-8B-A1B accepts 8.27 of 10 tokens per step on MATH500 and only 4.02 on GSM8K, so the same model swings from 3.18x to 1.29x on the same GPU. On the 1.2B model, MT-Bench acceptance drops to 3.90 and the H100 gain falls to 1.66x.

    The MoE result on Apple silicon is the clearest caveat: LFM2.5-8B-A1B gains only 1.18x on average on the M4 Max. Liquid AI attributes this to the current MoE implementation in llama.cpp’s Metal backend, and to the fact that verifying k tokens activates more experts, and therefore more weight traffic, than a single decode step.

    The Agentic Case

    The gain concentrates where the user waits through reasoning before every tool call. Across multi-tool function-calling scenarios, Liquid AI reports that DSpark cuts latency by 57% on average for LFM2.5-2.6B. Test it against your own traces: an agent that plans, calls, and re-plans pays the decode cost several times per user turn.

    On SGLang, launch the target with the drafter attached:

    python -m sglang.launch_server 
      --model-path LiquidAI/LFM2.5-2.6B 
      --speculative-algorithm DSPARK 
      --speculative-draft-model-path LiquidAI/LFM2.5-2.6B-DSpark 
      --speculative-draft-attention-backend flashinfer 
      --disable-radix-cache --mem-fraction-static 0.75 --port 30000
    

    The block size is read from the drafter’s config.json, and the baseline is the same command without the three --speculative-* flags.

    Key Takeaways

    • DSpark drafters add ~300M parameters and up to 3.18x faster decoding on an H100.
    • Greedy output is identical to baseline, so benchmark accuracy is unchanged.
    • Speedup follows acceptance rate and varies by workload, from 1.04x to 3.18x.
    • On-device MoE is the weak spot: LFM2.5-8B-A1B gains only 1.18x on M4 Max.
    • Multi-tool function calling gets the biggest practical win: 57% lower latency on LFM2.5-2.6B.

    Check out the model card on 8B-A1B and the full technical write-up. All credit for this research goes to the researchers of this project.

    Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

    Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


    Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

    3.18x changing Decoding deliver Draft Faster LFM2.5DSpark Liquid model models Outputs Releases
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    HoneyBook bets on agentic AI to streamline small business operations with its new Claude connector

    AI data centre regulation without a new law: the US template others can copy

    Amazon’s Prime Air autonomous drones to reach 500 US cities

    Agentic AI Presents New Insider Threat Model for Orgs

    A third of ChatGPT ads appear in irrelevant conversations

    Agentic AI in government: the UAE decides what machines decide

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    U.S.-Canada Trade Talks Aim to Avert Another Tariff War

    August 20, 2026

    Kyiv’s Dormition Cathedral is Revived After Russian Drone Strike

    August 20, 2026

    Paris St-Germain move game after heat damages Parc des Princes pitch

    August 20, 2026

    Reform’s new economic adviser has called for end of pensioners’ triple lock | Reform UK

    August 20, 2026
    Latest Posts

    New Dysphoria DDoS botnet spreads to 200k devices worldwide

    July 28, 2026

    OpenAI’s biggest threat may just be open AI

    July 28, 2026

    6 Takeaways From Michigan’s Senate Debate Between Abdul El-Sayed and Haley Stevens

    July 28, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    U.S.-Canada Trade Talks Aim to Avert Another Tariff War

    August 20, 2026

    Kyiv’s Dormition Cathedral is Revived After Russian Drone Strike

    August 20, 2026

    Paris St-Germain move game after heat damages Parc des Princes pitch

    August 20, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.