YTan2000 commited on
Commit
9b71285
·
verified ·
1 Parent(s): af35834

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -51
README.md CHANGED
@@ -22,57 +22,6 @@ language:
22
 
23
  [![Qwen Chat](https://img.shields.io/badge/%F0%9F%92%9C%EF%B8%8F%20Qwen%20Chat%20-536af5)](https://chat.qwen.ai)
24
 
25
- > [!Note]
26
- > This repository contains model weights and configuration files for the post-trained model in GGUF format.
27
- >
28
- > These artifacts are intended for llama.cpp-style runtimes and other GGUF-compatible inference stacks.
29
-
30
- Following the February release of the Qwen3.5 series, we're pleased to share a `TQ3_4S` GGUF release of Qwen3.6-27B. Built on the upstream Qwen3.6-27B model and converted through the `unsloth/Qwen3.6-27B-GGUF` path, this release is aimed at strong local inference efficiency while preserving the stability and real-world coding utility of the base model.
31
-
32
- ## Qwen3.6 Highlights
33
-
34
- This release delivers substantial upgrades, particularly in
35
-
36
- - **Agentic Coding:** the model now handles frontend workflows and repository-level reasoning with greater fluency and precision.
37
- - **Thinking Preservation:** Qwen introduced the option to retain reasoning context from historical messages, reducing overhead during iterative work.
38
-
39
- ![Benchmark Results](https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3.6/Figures/qwen3.6_27b_score.png)
40
-
41
- For the full upstream write-up, see the Qwen blog post: [Qwen3.6-27B](https://qwen.ai/blog?id=qwen3.6-27b).
42
-
43
- ## Model Overview
44
-
45
- - Type: Causal Language Model with Vision Encoder
46
- - Training Stage: Pre-training and Post-training
47
- - Architecture: `qwen35`
48
- - Parameters: `27B`
49
- - Layers: `64`
50
- - Embedding dimension: `5120`
51
- - FFN dimension: `17408`
52
- - Hidden layout: `16 × (3 × (Gated DeltaNet -> FFN) -> 1 × (Gated Attention -> FFN))`
53
- - Gated DeltaNet heads: `48` for `V`, `16` for `QK`, head dim `128`
54
- - Gated Attention heads: `24` for `Q`, `4` for `KV`, head dim `256`
55
- - RoPE dim: `64`
56
- - Native context: `262,144`
57
-
58
- ## Benchmark Results
59
-
60
- For the full upstream benchmark tables, refer to the official Qwen model card:
61
-
62
- - [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B)
63
-
64
- Selected upstream headline results for the base model:
65
-
66
- - `SWE-bench Verified`: `77.2`
67
- - `Terminal-Bench 2.0`: `59.3`
68
- - `SkillsBench Avg5`: `48.2`
69
- - `GPQA Diamond`: `87.8`
70
- - `AIME26`: `94.1`
71
- - `MMMU`: `82.9`
72
- - `AndroidWorld`: `70.3`
73
-
74
- These are upstream base-model results, not local GGUF quant results.
75
-
76
  ## TQ3_4S Release
77
 
78
  This repository packages the model as a TurboQuant `TQ3_4S` GGUF for local deployment.
@@ -103,6 +52,12 @@ Prompt processing:
103
  - `PPL = 6.2452 +/- 0.16138`
104
  - `prompt eval = 712.02 tok/s`
105
 
 
 
 
 
 
 
106
  ## Runtime Notes
107
 
108
  - Use a TurboQuant-capable llama.cpp build for best performance.
@@ -112,6 +67,31 @@ Prompt processing:
112
  - Upstream guidance recommends keeping at least `128K` context when possible for reasoning-heavy workloads. On smaller local GPUs, reduce context as needed to fit memory.
113
  - Upstream default sampling guidance differs between thinking and non-thinking mode; follow the official Qwen card if you are trying to reproduce base-model behavior.
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  ## Example
116
 
117
  ```bash
@@ -128,6 +108,47 @@ Build/runtime:
128
  git clone https://github.com/turbo-tan/llama.cpp-tq3
129
  ```
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  ## Sources
132
 
133
  - Upstream base model: [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B)
 
22
 
23
  [![Qwen Chat](https://img.shields.io/badge/%F0%9F%92%9C%EF%B8%8F%20Qwen%20Chat%20-536af5)](https://chat.qwen.ai)
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ## TQ3_4S Release
26
 
27
  This repository packages the model as a TurboQuant `TQ3_4S` GGUF for local deployment.
 
52
  - `PPL = 6.2452 +/- 0.16138`
53
  - `prompt eval = 712.02 tok/s`
54
 
55
+ 16 GB VRAM fit checks on RTX 5060 Ti with the recommended KV settings:
56
+
57
+ - `32k` context fits
58
+ - `64k` context fits
59
+ - `128k` context does not fit
60
+
61
  ## Runtime Notes
62
 
63
  - Use a TurboQuant-capable llama.cpp build for best performance.
 
67
  - Upstream guidance recommends keeping at least `128K` context when possible for reasoning-heavy workloads. On smaller local GPUs, reduce context as needed to fit memory.
68
  - Upstream default sampling guidance differs between thinking and non-thinking mode; follow the official Qwen card if you are trying to reproduce base-model behavior.
69
 
70
+ ## Recommended llama.cpp Settings
71
+
72
+ Default prompt-processing settings on 16 GB:
73
+
74
+ ```bash
75
+ llama-bench \
76
+ -m Qwen3.6-27B-TQ3_4S.gguf \
77
+ -ngl 99 \
78
+ -ctk q4_0 \
79
+ -ctv tq3_0 \
80
+ -fa 1 \
81
+ -p 2048 -n 0 -r 3
82
+ ```
83
+
84
+ Default chat/server settings:
85
+
86
+ ```bash
87
+ llama-server \
88
+ -m Qwen3.6-27B-TQ3_4S.gguf \
89
+ --host 127.0.0.1 --port 8080 \
90
+ -ngl 99 -c 4096 -np 1 \
91
+ -ctk q4_0 -ctv tq3_0 -fa on \
92
+ --jinja
93
+ ```
94
+
95
  ## Example
96
 
97
  ```bash
 
108
  git clone https://github.com/turbo-tan/llama.cpp-tq3
109
  ```
110
 
111
+ ## Qwen3.6 Base Model
112
+
113
+ > [!Note]
114
+ > The upstream Qwen repository contains model weights and configuration files for the post-trained model in the Hugging Face Transformers format.
115
+ >
116
+ > Those upstream artifacts are compatible with Hugging Face Transformers, vLLM, SGLang, KTransformers, and related runtimes.
117
+
118
+ Following the February release of the Qwen3.5 series, Qwen describes Qwen3.6 as the first open-weight Qwen3.6 variant, built for stronger stability and real-world utility.
119
+
120
+ ### Qwen3.6 Highlights
121
+
122
+ - **Agentic Coding:** the model handles frontend workflows and repository-level reasoning with greater fluency and precision.
123
+ - **Thinking Preservation:** the model family retains reasoning context across historical turns to reduce overhead during iterative work.
124
+
125
+ ![Benchmark Results](https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3.6/Figures/qwen3.6_27b_score.png)
126
+
127
+ ### Model Overview
128
+
129
+ - Type: Causal Language Model with Vision Encoder
130
+ - Training Stage: Pre-training and Post-training
131
+ - Architecture: `qwen35`
132
+ - Parameters: `27B`
133
+ - Layers: `64`
134
+ - Embedding dimension: `5120`
135
+ - FFN dimension: `17408`
136
+ - Hidden layout: `16 × (3 × (Gated DeltaNet -> FFN) -> 1 × (Gated Attention -> FFN))`
137
+ - Gated DeltaNet heads: `48` for `V`, `16` for `QK`, head dim `128`
138
+ - Gated Attention heads: `24` for `Q`, `4` for `KV`, head dim `256`
139
+ - RoPE dim: `64`
140
+ - Native context: `262,144`
141
+
142
+ ### Selected Upstream Benchmark Highlights
143
+
144
+ - `SWE-bench Verified`: `77.2`
145
+ - `Terminal-Bench 2.0`: `59.3`
146
+ - `SkillsBench Avg5`: `48.2`
147
+ - `GPQA Diamond`: `87.8`
148
+ - `AIME26`: `94.1`
149
+ - `MMMU`: `82.9`
150
+ - `AndroidWorld`: `70.3`
151
+
152
  ## Sources
153
 
154
  - Upstream base model: [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B)