Views
No views yet
| Filename | Type | Size | Description |
|---|---|---|---|
qwen35-9b-instruct-mxfp4.gguf | Text model | 5.31 GB | MXFP4 quantized model (no MTP head) |
mmproj-qwen35-9b-f16.gguf | Vision encoder | 922 MB | SigLIP vision projector (F16) |
| Property | Value |
|---|---|
| Format | MXFP4 (OCP E2M1) |
| Block size | 32 elements |
| BPW | ~4.74 |
| Architecture | qwen35 (no MTP, 427 tensors) |
| Target hardware | Universal (CPU, AMD, NVIDIA, Intel) |
| Thinking | Disabled by default (opt-in via enable_thinking=true) |
| MTP | Disabled (--no-mtp) |
1# Basic text generation (thinking disabled by default)
2./llama-cli -m qwen35-9b-instruct-mxfp4.gguf -p "What is the capital of France?" -n 256
3
4# Vision (requires mmproj)
5./llama-cli -m qwen35-9b-instruct-mxfp4.gguf --mmproj mmproj-qwen35-9b-f16.gguf -p "Describe this image" --image photo.jpg -n 256
6
7# Enable thinking
8./llama-cli -m qwen35-9b-instruct-mxfp4.gguf -p "Solve: 2+2=?" -n 512 -e enable_thinking=true1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="qwen35-9b-instruct-mxfp4.gguf",
5 n_ctx=8192,
6 chat_format="qwen3",
7)
8
9# Basic chat (no thinking)
10output = llm.create_chat_completion([{"role": "user", "content": "What is AI?"}])
11
12# With thinking enabled
13output = llm.create_chat_completion(
14 [{"role": "user", "content": "Solve 2+2=?"}],
15 extra_body={"enable_thinking": True},
16)huggingface-cli download FreedomAISVR/Qwen3.5-9B-Instruct-MXFP4-GGUF --local-dir . --local-dir-use-symlinks False1python convert_hf_to_gguf.py --no-mtp --outfile qwen35-9b-f16.gguf D:\qwen35-9b-src
2python convert_hf_to_gguf.py --mmproj --outfile mmproj-qwen35-9b-f16.gguf D:\qwen35-9b-src
3llama-quantize.exe qwen35-9b-f16.gguf qwen35-9b-instruct-mxfp4.gguf MXFP4