Views
No views yet
mmproj-BF16.gguf projection model| File | Approach | Tool-calling tests |
|---|---|---|
Qwen_Qwen3.6-27B-Q3_K_M-vendor-sampling.gguf | Vendor sampling injected | 14/14 |
Qwen_Qwen3.6-27B-Q4_K_M-vendor-sampling.gguf | Vendor sampling injected | 14/14 |
Qwen_Qwen3.6-27B-Q8_0-vendor-sampling.gguf | Vendor sampling injected | not separately run (RAM) |
mmproj-BF16.gguf | Vision projection (use with any of the above) | — |
Verified with NobodyWho's suite — tool calling 14/14 on Q3_K_M and Q4_K_M, vision on Q3_K_M (June 2026); Q8_0 not separately run (RAM). Q3_K_M (≈13.6 GB) is the comfortable fit on 24 GB; Q4_K_M (≈16.8 GB) also runs on 24 GB but is tight — it swaps and runs slower (tested 14/14); Q8_0 (≈28.6 GB) wants 32 GB+. BF16 (≈54 GB) is not hosted. The upstream GGUF has nogeneral.sampling.*metadata, so all quants embed Qwen's recommended sampler (seeINJECTION.md).
1from nobodywho import Chat
2
3chat = Chat("huggingface:NobodyWho/Qwen_Qwen3.6-27B-GGUF/Qwen_Qwen3.6-27B-Q3_K_M-vendor-sampling.gguf")
4response = chat.ask("What is the capital of Denmark?").completed()
5print(response) # The capital of Denmark is Copenhagen.1from nobodywho import Model, Chat, Prompt, Image, Text
2
3model = Model(
4 "huggingface:NobodyWho/Qwen_Qwen3.6-27B-GGUF/Qwen_Qwen3.6-27B-Q3_K_M-vendor-sampling.gguf",
5 projection_model_path="huggingface:NobodyWho/Qwen_Qwen3.6-27B-GGUF/mmproj-BF16.gguf",
6)
7chat = Chat(model=model, system_prompt="You are a helpful assistant.")
8response = chat.ask(Prompt([
9 Text("What is in this image?"),
10 Image("./photo.png"),
11])).completed()
12print(response)1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="NobodyWho/Qwen_Qwen3.6-27B-GGUF",
5 filename="Qwen_Qwen3.6-27B-Q3_K_M-vendor-sampling.gguf",
6)