Views
No views yet
| Metric | Value |
|---|---|
| Refusals | 6/100 |
| KL Divergence | 0.0033 |
| Rounds | 3 |
| Quantization | File | Size |
|---|---|---|
| Q8_0 | Qwen3-VL-8B-Instruct-heretic-Q8_0.gguf | 8.11 GB |
| Q6_K | Qwen3-VL-8B-Instruct-heretic-Q6_K.gguf | 6.26 GB |
| Q4_K_M | Qwen3-VL-8B-Instruct-heretic-Q4_K_M.gguf | 4.68 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-8B-Instruct-GGUF mmproj-Qwen3VL-8B-Instruct-F16.gguf
3
4# Run with llama-server (OpenAI-compatible API)
5llama-server \
6 -m Qwen3-VL-8B-Instruct-heretic-Q8_0.gguf \
7 --mmproj mmproj-Qwen3VL-8B-Instruct-F16.gguf \
8 -ngl 999
9
10# Or use the CLI directly
11llama-mtmd-cli \
12 -m Qwen3-VL-8B-Instruct-heretic-Q8_0.gguf \
13 --mmproj mmproj-Qwen3VL-8B-Instruct-F16.gguf \
14 --image photo.jpg \
15 -p "Describe this image." \
16 -ngl 9991ollama run hf.co/ThalisAI/Qwen3-VL-8B-Instruct-heretic:Q8_0
2ollama run hf.co/ThalisAI/Qwen3-VL-8B-Instruct-heretic:Q6_K
3ollama run hf.co/ThalisAI/Qwen3-VL-8B-Instruct-heretic:Q4_K_Mbf16/ subdirectory of this repository.bf16/ subdirectory can be loaded directly with Transformers:1from transformers import AutoModelForImageTextToText, AutoTokenizer
2
3model_id = "ThalisAI/Qwen3-VL-8B-Instruct-heretic"
4tokenizer = AutoTokenizer.from_pretrained(model_id, subfolder="bf16")
5model = AutoModelForImageTextToText.from_pretrained(
6 model_id, subfolder="bf16", torch_dtype="auto", device_map="auto"
7)
8
9messages = [{"role": "user", "content": "Hello!"}]
10text = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
11inputs = tokenizer(text, return_tensors="pt").to(model.device)
12outputs = model.generate(**inputs, max_new_tokens=512)
13print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))