How to use from
llama.cpp
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
# Run inference directly in the terminal:
llama cli -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
# Run inference directly in the terminal:
llama cli -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
# Run inference directly in the terminal:
./llama-cli -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
# Run inference directly in the terminal:
./build/bin/llama-cli -hf tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
Use Docker
docker model run hf.co/tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF:F16
Quick Links

LFM2.5-1.2B-Instruct DSpark 5L draft (GGUF)

DSpark draft sidecar GGUF for mainline llama.cpp (DFlash/DSpark speculative decoding, merged in ggml-org/llama.cpp #25173). Converted from tugot17/LFM2.5-1.2B-Instruct-DSpark-5L with convert_hf_to_gguf.py --target-model-dir <target>.

Pairs with the target model LiquidAI/LFM2.5-1.2B-Instruct-GGUF โ€” the sidecar carries only the drafter (block size 7, rank-256 Markov head, confidence head); token embeddings and lm_head are shared from the target at load time.

Usage

llama-server -m <target>.gguf -md LFM2.5-1.2B-Instruct-DSpark-5L-draft-f16.gguf \
    --spec-type draft-dspark --spec-draft-n-max 8 --spec-draft-n-min 0 \
    -fa on -ngl 99

Greedy outputs are identical to the target alone; the timings field of each response reports draft_n / draft_n_accepted for acceptance-length tracking.

Downloads last month
71
GGUF
Model size
0.3B params
Architecture
dflash
Hardware compatibility
Log In to add your hardware

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for tugot17/LFM2.5-1.2B-Instruct-DSpark-5L-GGUF