Views
No views yet
llama-server, published with a complete, verifiable provenance chain — source revision, converter version, and output checksum.convert_hf_to_gguf.py, so a GGUF converted before the fix has the bug baked in permanently — a current runtime cannot repair it (see #14234). Many third-party conversions have squashed histories, making their conversion vintage unprovable.| Provenance fact | Value |
|---|---|
| Source repo | Qwen/Qwen3-Embedding-4B (official, Apache-2.0) |
| Source revision | 5cf2132abc99cad020ac570b19d031efec650f2b |
| Source shard sha256 | model-00001…: e70bfe3c970523fb7ef4eddffed2254ce3f1e7150c3de2af4342de129dd756f8 · model-00002…: ed1b87c8e9eb7e535a1a155e4fd00d9f4dba80e58a6db48a4c9f82cede7079c1 (verified pre-conversion) |
| Converter | convert_hf_to_gguf.py from the official ghcr.io/ggml-org/llama.cpp:full-cuda13 image, digest sha256:500f241b5d7e27846bdda69ce6f4889db8de859ea3988d4265e5d9d7b7f1079b — post-#15023 |
| Conversion date | 2026-07-05 |
| Output | Qwen3-Embedding-4B-F16.gguf, 8,049,889,760 bytes, sha256 aae9f588cb47cba4503d5a0c71f64c90ade6a207dff2ff874972e2db6b099d35 |
| Pooling metadata | qwen3.pooling_type = 3 (LAST) present in the GGUF header — the #15023 fix's marker |
1docker run --rm -v "$PWD/src:/src:ro" -v "$PWD/out:/out" \
2 ghcr.io/ggml-org/llama.cpp:full-cuda13@sha256:500f241b5d7e27846bdda69ce6f4889db8de859ea3988d4265e5d9d7b7f1079b \
3 --convert /src --outtype f16 --outfile /out/Qwen3-Embedding-4B-F16.gguf1llama-server -m Qwen3-Embedding-4B-F16.gguf --embeddings --pooling last -ngl 999 \
2 --ctx-size 8192 --ubatch-size 2048--pooling last must be explicit. Qwen3-Embedding is a causal decoder — CLS/mean pooling produces silently wrong embeddings. Bring-up check: the verbose server log should print pooling type = 3, and any returned vector should have L2 norm ≈ 1.0 (normalization is server-side by default).--embeddings with --reranking on one instance (llama.cpp #20085: all-zero embeddings).--ubatch-size 2048 (a 8192 ubatch allocates a ~4.9 GiB compute buffer and OOMs). Ubatch is throughput-only for causal decoders — it never changes embedding values.Instruct: {task_description}
Query:{query}