petr567/LFM2.5-2.6B-Ubuntu-Strix-Halo-Vulkan-GGUF overview
LFM2.5 2.6B Q4 K M Fast — Ubuntu Strix Halo Vulkan This repository contains a directly runnable Q4 K M GGUF of LiquidAI/LFM2.5 2.6B GGUF https://huggingface.co…
Runs locally from ~1.56 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| LFM2.5-2.6B-Q4_K_M.gguf | GGUF | Q4_K_M | 1.56 GB | Download |
Model Details
| Model ID | petr567/LFM2.5-2.6B-Ubuntu-Strix-Halo-Vulkan-GGUF |
|---|---|
| Author | petr567 |
| Pipeline | text-generation |
| License | other |
| Base model | LiquidAI/LFM2.5-2.6B-GGUF |
| Last modified | 2026-08-06T04:55:46.000Z |
Model README
---
base_model: LiquidAI/LFM2.5-2.6B-GGUF
license: other
license_name: lfm-open-license-v1.0
license_link: https://www.liquid.ai/lfm-license
library_name: llama.cpp
pipeline_tag: text-generation
tags:
- gguf
- llama.cpp
- lfm2
- lfm2.5
- ubuntu
- linux
- vulkan
- amd
- strix-halo
- speculative-decoding
- fast-inference
- text-generation
---
LFM2.5-2.6B Q4_K_M Fast — Ubuntu Strix Halo Vulkan
This repository contains a directly runnable Q4_K_M GGUF of
and a validated Fast single-request Ubuntu/Vulkan profile for AMD Strix Halo systems using llama.cpp.
The model weights are not modified. The same verified GGUF is published in both paired repositories; only the tested runtime profile differs.
> Fast profile: inference is accelerated relative to the same Q4_K_M baseline without the Fast runtime settings. The frozen validation gate detected no quality regression and no new failures. This is a measured result for the documented hardware, workloads, and single-request setup—not a universal guarantee for every prompt or runtime.
Measured Fast result
Primary metric: wall-clock decoded tokens per second for one request, without batching. The profile validation used three workloads with five repetitions each (15 runs total, 256 generated tokens per run).
| Workload | Baseline, tok/s | Fast, tok/s | Fast vs baseline |
|---|---:|---:|---:|
| Code copy | 108.97 | 231.56 | 2.125× (+112.5%) |
| Editorial rewrite | 106.75 | 127.55 | 1.195× (+19.5%) |
| Technical summary | 105.86 | 187.06 | 1.767× (+76.7%) |
| All 15 runs, mean ± SD | 107.20 ± 1.53 | 182.06 ± 44.30 | 1.698× (+69.8%) |
| Independent quality gate | Baseline | Fast | Regression |
|---|---:|---:|---:|
| Passed tasks | 9/12 | 9/12 | None measured |
The larger Fast standard deviation reflects the deliberately mixed workload set: repetitive code benefits more than free-form editing and summarization. These are profile-validation measurements, not the pending frozen cross-machine benchmark.
Choose the matching profile
| Platform | Hardware/backend | Repository |
|---|---|---|
| Windows 11 | NVIDIA RTX / CUDA | LFM2.5-2.6B-Windows-RTX-CUDA-GGUF |
| Ubuntu | AMD Strix Halo / Vulkan | This repository |
Included weight
| File | Quantization | Size | SHA-256 |
|---|---:|---:|---|
| LFM2.5-2.6B-Q4_K_M.gguf | Q4_K_M | 1,674,454,848 bytes (1.56 GiB) | 79fdf00351b46cf26f020aead28d01889886be87c55fa0eb907e6f9b00bfee14 |
Source revision: b22e29ebf6249a8c9fcdda36914743e9980595c4.
Tested setup
- Ubuntu on AMD Ryzen AI Max+ / Strix Halo
- Vulkan backend with full model offload
- 128 GiB unified memory system
- context 8,192, one parallel slot, continuous batching disabled
llama.cppVulkan server compatible with build 9994 or newer
Build llama.cpp with Vulkan
sudo apt update
sudo apt install -y git cmake build-essential libvulkan-dev glslc
git clone https://github.com/ggml-org/llama.cpp
cd llama.cpp
cmake -B build -DGGML_VULKAN=ON -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release -j --target llama-server
For strict reproducibility, record the llama.cpp commit after cloning and reuse that commit for future comparisons.
Download and verify
python3 -m pip install -U huggingface_hub
MODEL_DIR="$HOME/models/LFM2.5-2.6B"
mkdir -p "$MODEL_DIR"
hf download petr567/LFM2.5-2.6B-Ubuntu-Strix-Halo-Vulkan-GGUF \
LFM2.5-2.6B-Q4_K_M.gguf \
--local-dir "$MODEL_DIR"
echo "79fdf00351b46cf26f020aead28d01889886be87c55fa0eb907e6f9b00bfee14 $MODEL_DIR/LFM2.5-2.6B-Q4_K_M.gguf" \
| sha256sum -c -
Run the validated Fast Ubuntu/Vulkan profile
From the llama.cpp checkout:
MODEL_DIR="$HOME/models/LFM2.5-2.6B"
./build/bin/llama-server \
-m "$MODEL_DIR/LFM2.5-2.6B-Q4_K_M.gguf" \
--alias lfm2.5-2.6b-q4_k_m \
--host 127.0.0.1 --port 8080 \
-c 8192 -np 1 -ngl 99 \
-t 16 -tb 16 -b 2048 -ub 512 \
-fa auto \
--no-cont-batching --no-cache-prompt --cache-ram 0 \
--slot-prompt-similarity 0 --jinja --no-webui \
--spec-type ngram-simple \
--spec-ngram-simple-size-n 8 \
--spec-ngram-simple-size-m 32 \
--spec-ngram-simple-min-hits 1 \
--spec-draft-n-max 48
The OpenAI-compatible endpoint is available at http://127.0.0.1:8080/v1.
curl http://127.0.0.1:8080/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model": "lfm2.5-2.6b-q4_k_m",
"messages": [{"role": "user", "content": "Write a short hello-world function in Python."}],
"max_tokens": 128,
"temperature": 0.2
}'
Release scope
This release contains the runnable weight and the final launch recipe. The frozen cross-machine benchmark package and its results will be attached in a later revision after verification.
Attribution and license
- Base model and GGUF: Liquid AI
- Upstream repository: LiquidAI/LFM2.5-2.6B-GGUF
- License: LFM Open License v1.0; a copy is included as
LICENSE
The license includes a commercial-use revenue threshold. Review the included license before use or redistribution.
Run petr567/LFM2.5-2.6B-Ubuntu-Strix-Halo-Vulkan-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models