cudabenchmarktest commited on
Commit
5534cdd
·
verified ·
1 Parent(s): f1b6e3f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -7
README.md CHANGED
@@ -2,16 +2,41 @@
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3.5-9B
4
  tags:
5
- - qwen3.5
6
- - reasoning
7
- - distillation
8
- - lora
9
- - sft
10
- - gguf
11
  datasets:
12
- - Crownelius/Opus-4.6-Reasoning-3300x
13
  pipeline_tag: text-generation
14
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  # Qwen3.5-9B Reasoning Distilled GGUF (R3 Crown)
17
 
 
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3.5-9B
4
  tags:
5
+ - qwen3.5
6
+ - reasoning
7
+ - distillation
8
+ - lora
9
+ - sft
10
+ - gguf
11
  datasets:
12
+ - Crownelius/Opus-4.6-Reasoning-3300x
13
  pipeline_tag: text-generation
14
  ---
15
+ > ## ⚠️ CRITICAL: Ollama Inference Flag Required
16
+ >
17
+ > **If you serve this model via Ollama with the qwen3.5 RENDERER (the standard
18
+ > recommended setup), you MUST pass `"think": false` in the `/api/chat`
19
+ > request body for chat / instruction following / tool use.**
20
+ >
21
+ > ```bash
22
+ > curl -X POST http://localhost:11434/api/chat \
23
+ > -d '{"model": "...", "think": false, "messages": [...], "stream": false}'
24
+ > ```
25
+ >
26
+ > Without this flag, the renderer auto-injects `<think>` tags into every chat
27
+ > completion. On longer prompts the model can stay inside the `<think>` block
28
+ > past the response budget, never emit `</think>`, and produce **zero answer
29
+ > tokens** on 25-46% of requests.
30
+ >
31
+ > Set `think: true` (or omit) only when you DO want chain-of-thought reasoning
32
+ > (math, planning, complex multi-step). This is Qwen3 dual-mode operation per
33
+ > https://qwenlm.github.io/blog/qwen3/.
34
+ >
35
+ > See the dataset `cudabenchmarktest/r9-research-framework`
36
+ > `_OLLAMA_INFERENCE_WARNING.md` for the full explanation.
37
+
38
+ ---
39
+
40
 
41
  # Qwen3.5-9B Reasoning Distilled GGUF (R3 Crown)
42