Views
No views yet
⚠️ CRITICAL: Ollama Inference Flag Required
If you serve this model via Ollama with the qwen3.5 RENDERER (the standard recommended setup), you MUST pass"think": falsein the/api/chatrequest body for chat / instruction following / tool use.bash1curl -X POST http://localhost:11434/api/chat \ 2 -d '{"model": "...", "think": false, "messages": [...], "stream": false}'Without this flag, the renderer auto-injects<think>tags into every chat completion. On longer prompts the model can stay inside the<think>block past the response budget, never emit</think>, and produce zero answer tokens on 25-46% of requests.Setthink: true(or omit) only when you DO want chain-of-thought reasoning (math, planning, complex multi-step). This is Qwen3 dual-mode operation per https://qwenlm.github.io/blog/qwen3/.See the datasetcudabenchmarktest/r9-research-framework_OLLAMA_INFERENCE_WARNING.mdfor the full explanation.
| Model | Eval | Link |
|---|---|---|
| R5 Research | 84.2% | cudabenchmarktest/qwen3.5-9b-r5-research-GGUF |
| R7 Research | 86.8% | cudabenchmarktest/qwen3.5-9b-r7-research |
| R7 Vision | 86.8% | cudabenchmarktest/qwen3.5-9b-r7-research-vision |