Views
No views yet
GGUF quantizations of Qwen/Qwen3-Reranker-0.6B — the most-downloaded open-source reranker of 2026 (1.39 M downloads on HF). Part of BatiAI's on-device RAG stack for BatiFlow.
(query, candidate_document) and returns a relevance score. It's the "second pass" after vector search — turns "probably relevant" candidates into an ordered top-K that the LLM can use confidently.1./llama-cli -m Qwen3-Reranker-0.6B-Q6_K.gguf \
2 --chat-template-file chat-template.jinja \
3 -p "<query>weather in Seoul</query><doc>Seoul had rain yesterday</doc>"| File | Quant | Size | Recommended |
|---|---|---|---|
Qwen3-Reranker-0.6B-Q6_K.gguf | Q6_K | 472 MB | balanced (recommended default) |
Qwen3-Reranker-0.6B-Q8_0.gguf | Q8_0 | 610 MB | near-lossless, slightly larger |
(query, positive, negative) triples — 20 EN + 20 KO — twice:| Test | Q6_K | Q8_0 |
|---|---|---|
| Pairwise accuracy (easy) | 100 % | 100 % |
| Pairwise accuracy (hard) | 100 % | 100 % |
| Mean score margin (hard) | 0.751 | 0.723 |
r = 0.998 on hard test → quantization drift is under measurement noise. Q6_K is safe.scripts/bench-rerank-quality.sh.general.author: BatiAI, general.url: https://flow.bati.aibafae2765| Role | Model | HF |
|---|---|---|
| Reranker (0.6 B) | Qwen3-Reranker-0.6B | this repo |
| Reranker (4 B) | Qwen3-Reranker-4B | batiai/Qwen3-Reranker-4B-GGUF |
| VL Embedding (2 B) | Qwen3-VL-Embedding-2B | batiai/Qwen3-VL-Embedding-2B-GGUF |
| Chat LLM (35 B-A3B) | Qwen3.6-35B-A3B | batiai/Qwen3.6-35B-A3B-GGUF |