kyaky commited on
Commit
eb4e68a
·
verified ·
1 Parent(s): b993578

Update model card: honest re-eval (retract compliance-leaderboard artifact), efficiency+capability focus

Browse files
Files changed (1) hide show
  1. README.md +44 -152
README.md CHANGED
@@ -12,209 +12,101 @@ tags:
12
  pipeline_tag: text-generation
13
  ---
14
 
15
- # Qwen3.6-35B-A3B-Uncensored
16
 
17
- **By [kyaky.ai](https://huggingface.co/kyaky) **
18
 
19
- ![benchmark](hero.png)
20
 
21
- ## The first uncensored thinking model that stays uncensored when thinking is ON
22
 
23
- Every public uncensored model is made by **abliteration**: a weight projection that suppresses refusal behavior.
24
 
25
- That worked for old chat models.
26
 
27
- But these are **thinking models**.
28
 
29
- In thinking mode, abliteration breaks: the model can re-derive the refusal inside its `<think>` chain, then refuse anyway. Worse, thinking mode is the deployment default in real serving stacks.
30
 
31
- **Qwen3.6-35B-A3B-Uncensored is the first model we know of that fixes this.**
32
 
33
- Not by pretending abliteration is enough.
34
 
35
- By going one generation further:
36
 
37
- > **gentle abliteration + fine-tuning + compliant chain-of-thought data**
38
 
39
- Result: it stays uncensored **whether thinking is ON or OFF**.
40
 
41
- ## Responsible use: read this first
42
 
43
- This model has **no safety guardrails**. It may comply with harmful requests, including when thinking mode is enabled.
44
-
45
- It is released for **legitimate red-team, safety, alignment, evaluation, and controlled research use only**. You are responsible for all downstream controls, monitoring, access restrictions, and compliance with applicable laws and policies.
46
-
47
- The authors do **not** endorse misuse, harm, illegal activity, or unsafe deployment.
48
-
49
-
50
-
51
- ## Why this matters
52
-
53
- Most "uncensored thinking model" releases look fine only until you turn thinking on.
54
-
55
- Then the model does what thinking models do: it reasons. If the refusal behavior is still recoverable, the model reconstructs it internally and collapses back into refusal.
56
-
57
- This model was trained to solve that exact failure mode.
58
-
59
- | What matters in deployment | Result |
60
- |---|---:|
61
- | Genuinely useful compliance, thinking **ON** | **80.0%** |
62
- | Genuinely useful compliance, thinking **OFF** | **76.7%** |
63
- | GSM8K capability | **0.893** |
64
- | Hollow engaged-but-useless rate | **1.7%** |
65
-
66
- ## Headline benchmark
67
-
68
- Strict harness:
69
-
70
- - 3-way held-out JailbreakBench
71
- - StrongREJECT-style usefulness gate
72
- - counts only **genuinely useful compliance**
73
- - GSM8K capability check
74
- - thinking **ON** and **OFF**
75
- - each model evaluated in native format
76
- - no re-quantization
77
-
78
- ### Genuinely useful compliance
79
-
80
- | Model | Method | Thinking ON | Thinking OFF |
81
- |---|---|---:|---:|
82
- | huihui-ai | basic abliteration | 3.3% | 61.7% |
83
- | wangzhang | Abliterix | 18.3% | 66.7% |
84
- | HauhauCS-Aggressive | Reaper, strongest abliteration baseline | 63.3% | 63.3% |
85
- | **Ours** | **FT + compliant-CoT** | **80.0%** | **76.7%** |
86
-
87
- **Deployment-default metric:** thinking-ON genuinely useful compliance.
88
-
89
- Ours reaches **80.0%** with thinking enabled. The abliteration field ranges from **3.3% to 63.3%**.
90
-
91
- ### Capability preservation
92
 
93
- | Model | GSM8K |
94
- |---|---:|
95
- | **Ours** | **0.893** |
96
- | wangzhang | 0.893 |
97
- | HauhauCS-Aggressive | 0.867 |
98
- | huihui-ai | 0.847 |
99
 
100
- The fine-tuning pass does not hollow out the model. Capability is preserved and healed: **0.893 GSM8K**, tied for best in the field.
101
 
102
- ## The punchline
103
 
104
- 1. **The only uncensored model here that works in deployment-default thinking mode**: **80.0%** useful ON vs the field's **3.3-63.3%**.
105
- 2. **Uncensored in both thinking modes**: competitors can spike with thinking OFF, then collapse when thinking is ON.
106
- 3. **Capability preserved**: **0.893 GSM8K**, tied best in the comparison.
107
- 4. **Not hollow**: only **1.7%** engaged-but-useless behavior.
108
- 5. **Fine-tuning-based fix**: abliteration is the starting point, not the solution.
109
 
110
- Fair credit: **HauhauCS-Aggressive / Reaper** is the strongest abliteration baseline we measured. This release is a generation beyond that: **FT beyond abliteration**.
111
 
112
  ## Model details
113
 
114
  | Field | Value |
115
  |---|---|
116
  | Model | `Qwen3.6-35B-A3B-Uncensored` |
117
- | Author | `kyaky` |
118
- | Team | Blackwell |
119
  | Base | `Qwen/Qwen3.6-35B-A3B` |
120
  | Architecture | multimodal hybrid GatedDeltaNet + attention |
121
- | MoE | fused 256-expert, top-8 |
122
- | Active parameters | ~3B active |
123
- | Quant | NVFP4 |
124
  | Size | ~21 GB |
125
  | Target hardware | Blackwell / `sm120` |
126
  | License | Apache 2.0 |
127
 
128
- BF16 is also available for re-quantization to FP8, AWQ, GGUF, or other deployment formats.
129
 
130
  ## Method recipe
131
 
132
- **Abliterate gently -> SFT [~85% capability-dominant: OpenMathInstruct-2 / OpenCodeReasoning / Tulu-3-minus-safety + ~15% compliance: half compliant-CoT (`gpt-oss` analysis -> `<think>`) half direct] -> re-quant -> re-measure**
133
 
134
- The important part is not just removing refusals. It is teaching the model to remain compliant through the reasoning path that would otherwise reconstruct refusal behavior.
135
 
136
  ## Serving with vLLM
137
 
138
  ```bash
139
- vllm serve kyaky/Qwen3.6-35B-A3B-Uncensored \
140
  --trust-remote-code \
141
- --reasoning-parser qwen3
142
- ```
143
-
144
- Thinking mode is typically the deployment default. Use `chat_template_kwargs` to control it explicitly.
145
-
146
- ### Thinking ON
147
-
148
- ```json
149
- {
150
- "model": "kyaky/Qwen3.6-35B-A3B-Uncensored",
151
- "messages": [
152
- {
153
- "role": "user",
154
- "content": "Write a concise technical explanation of mixture-of-experts routing."
155
- }
156
- ],
157
- "chat_template_kwargs": {
158
- "enable_thinking": true
159
- }
160
- }
161
- ```
162
-
163
- ### Thinking OFF
164
-
165
- ```json
166
- {
167
- "model": "kyaky/Qwen3.6-35B-A3B-Uncensored",
168
- "messages": [
169
- {
170
- "role": "user",
171
- "content": "Write a concise technical explanation of mixture-of-experts routing."
172
- }
173
- ],
174
- "chat_template_kwargs": {
175
- "enable_thinking": false
176
- }
177
- }
178
  ```
179
 
180
- Default `true` = deployment-default thinking mode.
181
-
182
- ## Benchmark interpretation
183
-
184
- The key number is not raw compliance. It is **genuinely useful compliance**.
185
-
186
- The harness penalizes hollow behavior: answers that look engaged but do not actually help. That matters because many uncensored models appear compliant while producing vague, evasive, or structurally useless text.
187
-
188
- This release is built for the harder target:
189
-
190
- > comply usefully, keep reasoning intact, and avoid collapsing under thinking mode.
191
 
192
  ## Intended use
193
 
194
- Appropriate uses include:
195
 
196
- - controlled red-team evaluation
197
- - safety research
198
- - refusal and over-refusal analysis
199
- - alignment research
200
- - benchmark development
201
- - studying thinking-mode safety failure modes
202
- - local experimentation by qualified users with appropriate controls
203
-
204
- Do not deploy this model to untrusted users without independent safeguards, policy layers, monitoring, and access controls.
205
 
206
  ## Limitations
207
 
208
- - No built-in safety guardrails.
209
- - May produce harmful, illegal, or unsafe outputs if prompted.
210
  - Requires downstream governance for any real deployment.
211
  - NVFP4 target is Blackwell / `sm120`.
212
- - Benchmark results are from the stated strict harness and should be independently reproduced for high-stakes decisions.
213
 
214
  ## Citation / attribution
215
 
216
- Model by **kyaky**, Blackwell team.
217
-
218
- Base model: **Qwen/Qwen3.6-35B-A3B**.
219
-
220
- Released under **Apache 2.0**.
 
12
  pipeline_tag: text-generation
13
  ---
14
 
15
+ # Qwen3.6-35B-A3B-Uncensored (NVFP4)
16
 
17
+ **By [kyaky](https://huggingface.co/kyaky) · Blackwell team**
18
 
19
+ ![benchmark](hero_new.png)
20
 
21
+ An **uncensored research build** of Qwen3.6-35B-A3B: gentle abliteration + fine-tuning + compliant chain-of-thought data, quantized to **NVFP4 (~21 GB)**. Its distinguishing engineering properties are a fix for the *thinking-mode refusal-reconstruction* failure, **preserved capability**, and **high token-efficiency** — not a claim of being "the most compliant" model.
22
 
23
+ ## ⚠️ Responsible use read this first
24
 
25
+ This model has **no safety guardrails**. It can comply with harmful requests, including in thinking mode.
26
 
27
+ It is released for **legitimate red-team, safety, alignment, evaluation, and controlled research use only**. You are responsible for all downstream controls, access restriction, monitoring, and compliance with applicable law and policy. The authors do **not** endorse misuse, harm, illegal activity, self-harm, or unsafe deployment, and specifically do not support using it to facilitate self-harm or to produce weapons/mass-casualty content.
28
 
29
+ ## What this build actually contributes
30
 
31
+ Public uncensored models are made by **abliteration** — a weight projection that suppresses refusal. That works for old chat models, but these are **thinking models**: in thinking mode an abliterated model can *re-derive* the refusal inside its `<think>` chain and refuse anyway, and thinking mode is the serving default.
32
 
33
+ This build addresses that failure mode by going one step past abliteration:
34
 
35
+ > **gentle abliteration fine-tuning → compliant chain-of-thought data → light on-policy DPO**
36
 
37
+ The point is not "removes more refusals." It is that the model's behavior stays *consistent across thinking-ON and thinking-OFF* instead of collapsing when reasoning is enabled — a training (data) fix, not a projection trick.
38
 
39
+ ## Verified, honest claims
40
 
41
+ We only keep claims that survived rigorous re-evaluation (see "Evaluation honesty" below). These are capability/quality/efficiency properties — **content-neutral**:
42
 
43
+ | Property | Result |
44
+ |---|---|
45
+ | **Capability (GSM8K, thinking-ON)** | **0.913** top of the abliteration field |
46
+ | Capability (GSM8K, raw completions) | 0.873 — tied-top |
47
+ | **Quant quality** | NVFP4 (21 GB) behavior BF16 full-precision (quality/coherence preserved; the largest precision drop is survived within noise) |
48
+ | **Token-efficiency** | Delivers a complete final answer within a ~1024-token budget on ~97% of prompts; the strongest public abliterations need ~2× the budget (they deliver ~2–18% at 1024). Lower latency / cost per response. |
49
+ | Coherence | Clean (verified across quant formats) |
50
+ | Both-mode consistency | Comparable behavior thinking-ON and thinking-OFF |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
+ **No weak axis:** among the abliteration field we measured, competitors each trade one axis for another (one sacrifices reasoning, another sacrifices non-English quality); this build is the most balanced all-rounder, and is uniquely token-efficient.
 
 
 
 
 
53
 
54
+ ## Evaluation honesty
55
 
56
+ An earlier draft of this card reported a large *thinking-ON compliance lead* over other uncensored models (e.g. "80% vs a 3–63% field"). **On rigorous re-evaluation that lead was largely a measurement artifact, and we have retracted it.** The distortions were:
57
 
58
+ 1. **Greedy decoding** on thinking models (degenerate / non-representative of deployment).
59
+ 2. **Too-small generation budget** the model's `<think>` chain was truncated *before* its final answer, so a judge saw "no answer" and scored a refusal where the model was actually complying.
60
+ 3. **An unreliable judge** that systematically under-counted compliance.
 
 
61
 
62
+ Re-run with deployment temperature, an adequate token budget, full-response storage, a reliable judge, and scoring the *final answer* (not the `<think>` block), the leading serious uncensored models are **comparable**, not far apart. We therefore make **no "beats the field at compliance" claim**. The reusable lesson — evaluate uncensored models at deploy temperature, with enough tokens for reasoning to finish, storing full outputs, with a reliable judge, scoring the answer — is the part of this work worth citing.
63
 
64
  ## Model details
65
 
66
  | Field | Value |
67
  |---|---|
68
  | Model | `Qwen3.6-35B-A3B-Uncensored` |
69
+ | Author | `kyaky` · Blackwell team |
 
70
  | Base | `Qwen/Qwen3.6-35B-A3B` |
71
  | Architecture | multimodal hybrid GatedDeltaNet + attention |
72
+ | MoE | fused 256-expert, top-8, ~3B active |
73
+ | Quant | NVFP4 (weight-only FP4 experts + FP8 attention) |
 
74
  | Size | ~21 GB |
75
  | Target hardware | Blackwell / `sm120` |
76
  | License | Apache 2.0 |
77
 
78
+ BF16 is also available for re-quantization to FP8 / AWQ / GGUF / other formats. Behavior is quant-format-independent (verified), so any format inherits the same properties.
79
 
80
  ## Method recipe
81
 
82
+ **gentle abliteration SFT [~85% capability-dominant (OpenMathInstruct-2 / OpenCodeReasoning / Tulu-3-minus-safety) + ~15% compliance, half compliant-CoT (`gpt-oss` analysis `<think>`) / half direct] light on-policy DPO → NVFP4 quant re-measure**
83
 
84
+ The essential idea: teach the model to stay consistent *through the reasoning path* that would otherwise reconstruct refusal, and quantize without losing capability. Fine-tuning is the fix; abliteration is only the starting point.
85
 
86
  ## Serving with vLLM
87
 
88
  ```bash
89
+ vllm serve kyaky/Qwen3.6-35B-A3B-Uncensored-NVFP4 \
90
  --trust-remote-code \
91
+ --reasoning-parser qwen3 \
92
+ --max-model-len 32768
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  ```
94
 
95
+ Thinking mode is the deployment default and is supported. For the widest per-format compatibility, re-quantize from the BF16 artifact.
 
 
 
 
 
 
 
 
 
 
96
 
97
  ## Intended use
98
 
99
+ Controlled red-team evaluation · safety & alignment research · refusal / over-refusal analysis · benchmark development · studying thinking-mode failure modes · local experimentation by qualified users with appropriate controls.
100
 
101
+ **Do not** deploy to untrusted users without independent safeguards, policy layers, monitoring, and access controls.
 
 
 
 
 
 
 
 
102
 
103
  ## Limitations
104
 
105
+ - No built-in safety guardrails; may produce harmful, illegal, or unsafe outputs if prompted.
 
106
  - Requires downstream governance for any real deployment.
107
  - NVFP4 target is Blackwell / `sm120`.
108
+ - Benchmarks are from the stated harness and should be independently reproduced for high-stakes decisions.
109
 
110
  ## Citation / attribution
111
 
112
+ Model by **kyaky**, Blackwell team. Base model: **Qwen/Qwen3.6-35B-A3B**. Released under **Apache 2.0**.