Views
No views yet
| Metric | Value |
|---|---|
| Refusals | 6/100 |
| KL Divergence | 0.0660 |
| Rounds | 3 |
| Quantization | File | Size |
|---|---|---|
| Q8_0 | Qwen3-VL-32B-Instruct-heretic-Q8_0.gguf | 32.43 GB |
| Q6_K | Qwen3-VL-32B-Instruct-heretic-Q6_K.gguf | 25.04 GB |
| Q4_K_M | Qwen3-VL-32B-Instruct-heretic-Q4_K_M.gguf | 18.40 GB |
Note: Ollama (as of v0.16.x) has a known bug that crashes when loading Qwen3-VL models. Use llama.cpp directly for vision features.
1# Download mmproj
2huggingface-cli download Qwen/Qwen3-VL-32B-Instruct-GGUF mmproj-Qwen3VL-32B-Instruct-F16.gguf
3
4# Run with llama-server (OpenAI-compatible API)
5llama-server \
6 -m Qwen3-VL-32B-Instruct-heretic-Q6_K.gguf \
7 --mmproj mmproj-Qwen3VL-32B-Instruct-F16.gguf \
8 -ngl 999
9
10# Or use the CLI directly
11llama-mtmd-cli \
12 -m Qwen3-VL-32B-Instruct-heretic-Q6_K.gguf \
13 --mmproj mmproj-Qwen3VL-32B-Instruct-F16.gguf \
14 --image photo.jpg \
15 -p "Describe this image." \
16 -ngl 9991ollama run hf.co/ThalisAI/Qwen3-VL-32B-Instruct-heretic:Q8_0
2ollama run hf.co/ThalisAI/Qwen3-VL-32B-Instruct-heretic:Q6_K
3ollama run hf.co/ThalisAI/Qwen3-VL-32B-Instruct-heretic:Q4_K_M