Views
No views yet
mmproj-BF16.gguf projection model| File | Approach | Tool-calling tests |
|---|---|---|
Qwen_Qwen3.5-4B-BF16-vendor-sampling.gguf | Vendor sampling injected | 14/14 |
Qwen_Qwen3.5-4B-Q8_0-vendor-sampling.gguf | Vendor sampling injected | 14/14 |
Qwen_Qwen3.5-4B-Q4_K_M-vendor-sampling.gguf | Vendor sampling injected | 14/14 |
mmproj-BF16.gguf | Vision projection (use with any of the above) | — |
Verified with NobodyWho's tool-calling suite across BF16 / Q8_0 / Q4_K_M (14/14 each, June 2026); vision, reasoning, and multilingual verified. The upstream GGUF has nogeneral.sampling.*metadata, so the-vendor-samplingfiles embed Qwen's recommended sampler (seeINJECTION.md).
1from nobodywho import Chat
2
3chat = Chat("huggingface:NobodyWho/Qwen_Qwen3.5-4B-GGUF/Qwen_Qwen3.5-4B-Q4_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.5-4B-GGUF/Qwen_Qwen3.5-4B-Q4_K_M-vendor-sampling.gguf",
5 projection_model_path="huggingface:NobodyWho/Qwen_Qwen3.5-4B-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.5-4B-GGUF",
5 filename="Qwen_Qwen3.5-4B-Q4_K_M-vendor-sampling.gguf",
6)