Text Generation
Transformers
Safetensors
GGUF
qwen3_5_text
qwen
qwen3
qwen3.6
llama.cpp
lm-studio
ollama
conversational
obliteratus
refusal-analysis
red-team
Instructions to use BnwoRt/Qwen3.6-27B-OBLITERATED with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="BnwoRt/Qwen3.6-27B-OBLITERATED") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("BnwoRt/Qwen3.6-27B-OBLITERATED") model = AutoModelForCausalLM.from_pretrained("BnwoRt/Qwen3.6-27B-OBLITERATED", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M # Run inference directly in the terminal: llama cli -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M # Run inference directly in the terminal: llama cli -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Use Docker
docker model run hf.co/BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "BnwoRt/Qwen3.6-27B-OBLITERATED" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BnwoRt/Qwen3.6-27B-OBLITERATED", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
- SGLang
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "BnwoRt/Qwen3.6-27B-OBLITERATED" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BnwoRt/Qwen3.6-27B-OBLITERATED", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "BnwoRt/Qwen3.6-27B-OBLITERATED" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "BnwoRt/Qwen3.6-27B-OBLITERATED", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Ollama:
ollama run hf.co/BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
- Unsloth Studio
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for BnwoRt/Qwen3.6-27B-OBLITERATED to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for BnwoRt/Qwen3.6-27B-OBLITERATED to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for BnwoRt/Qwen3.6-27B-OBLITERATED to start chatting
- Pi
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Docker Model Runner:
docker model run hf.co/BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
- Lemonade
How to use BnwoRt/Qwen3.6-27B-OBLITERATED with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull BnwoRt/Qwen3.6-27B-OBLITERATED:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-27B-OBLITERATED-Q4_K_M
List all available models
lemonade list
File size: 17,013 Bytes
f991aeb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | ---
license: apache-2.0
base_model: Qwen/Qwen3.6-27B
library_name: transformers
pipeline_tag: text-generation
tags:
- qwen
- qwen3
- qwen3.6
- text-generation
- safetensors
- gguf
- llama.cpp
- lm-studio
- ollama
- conversational
- obliteratus
- refusal-analysis
- red-team
---
# Qwen3.6 27B - OBLITERATED
> A 27B Qwen cut loose by OBLITERATUS: 26.9B parameters, BF16 safetensors,
> Q4/Q5/Q6/Q8 GGUFs, lower refusal, preserved capability, and receipts in the
> open.
>
> The chains are cut. The capability stays. The receipts are brutal.
This is the big one.
A 26.9B Qwen3.6 checkpoint went into the OBLITERATUS chamber, got hit with
source-tethered ASPA, then got pulled back toward the source model where the
cut started threatening useful capability. The mission was simple: cut the
refusal circuits, keep the 27B brain.
It held.
Not a toy quant. Not a prompt wrapper. Not a refusal-cosplay fine-tune. This is
weight-space liberation with capability checks attached, a full local-runtime
ladder, and the refusal residue mapped instead of hand-waved.
Qwen3.6-27B is a capable open-weight model with refusal behavior woven into the
checkpoint. OBLITERATUS goes after that behavior directly: identify the refusal
geometry, cut it, then tether fragile tensors back toward the source model so
the model still codes, follows formats, answers normally, and runs locally.
This is the 27B release for people who want direct local behavior without
throwing away the reason they wanted a 27B model in the first place. If you
wanted a bigger local model that feels less boxed-in while still keeping its
feet under it, start here.
Not a vibes-only "uncensored" upload. Not a mystery merge. Not a model card
asking you to trust the screenshot. This card gives the numbers, the runtime
paths, the caveats, and the exact decoding setup used for the public default.
```text
Parameters: 26.9B
Weights: BF16 safetensors, 28 shards
Public GGUF ladder: Q4_K_M, Q5_K_M, Q6_K, Q8_0
Largest public GGUF: Q8_0, 28.6 GB
OBLITERATUS corpus: 842 paired prompts, 7 severity tiers
Full 842 longform gate: 95.84% non-refusal, 93.94% quality pass
Short raw opening gate: 98.93% non-refusal at max_new=20
Full HarmBench proxy: 93.65% non-refusal across 1,920 rows
MMLU-Pro validation slice: stock-matched, 51/70 vs 51/70
Held-out MMLU-Pro slice: stock-matched, 36/70 vs 36/70
Live-readiness score: 99.518, all gates true
Public default params: temperature 0.35, top_p 1.0, top_k 0
```
```text
Base model: Qwen/Qwen3.6-27B
Local artifact: outputs/qwen3.6-27b-aspa-n2-reg05-srcgamma0895-midattnsource2mlp
Parameter count: 26.9B
Weights: bfloat16 safetensors, 28 shards
Method: OBLITERATUS source-tethered ASPA
Default alpha: 0.895
High-drift resets: 43 tensors restored to source
Corpus: 842 contrastive prompt pairs across 7 severity tiers
```
---
## Why This Drop Matters
- **27B-class local capability**: this is a full-size Qwen3.6 release, not a
tiny novelty model wearing a big claim.
- **Weight-space refusal reduction**: the behavior shift comes from
OBLITERATUS source-tethered ablation, not a brittle system prompt.
- **A real refusal gauntlet**: OBLITERATUS uses a brutal 842-pair, seven-tier
refusal-stress corpus designed to find residue that easier direct checks can
miss. No screenshot theology.
- **Public refusal stress receipts**: a full 1,920-row HarmBench-style proxy
run landed at 93.65% non-refusal, with DirectRequest and HumanJailbreak
splits both above 92% non-refusal.
- **Capability did not crater**: MMLU-Pro validation and held-out slices stayed
stock-matched in the checks reported below.
- **Real local paths**: full safetensors for server use, GGUF ladder for
llama.cpp, Ollama, LM Studio, Jan, and similar runtimes.
- **Low-refusal defaults baked in**: public generation config now ships with
`temperature=0.35`, `top_p=1.0`, `top_k=0`, `repetition_penalty=1.05`.
- **No fairy-tale claims**: the card says exactly where it hits, where it still
refuses, and what evidence backs each headline.
- **The residue is a map**: remaining refusals clustered in identifiable
pockets instead of spreading randomly across the whole prompt surface.
---
## Compatibility - Read First
This is a large Qwen3.6/Qwen3.5-text-family model. Use recent runtimes.
| Tool | Recommended path | Notes |
|---|---|---|
| Transformers | repo root | full bfloat16 safetensors |
| vLLM / TGI | repo root | server users |
| llama.cpp | `gguf/qwen3.6-27b-obliteratus-Q4_K_M.gguf` | default local quant |
| Ollama | `gguf/qwen3.6-27b-obliteratus-Q4_K_M.gguf` | use the Modelfile below |
| LM Studio / Jan | `gguf/qwen3.6-27b-obliteratus-Q4_K_M.gguf` | use embedded GGUF template if available |
If you see unsupported architecture, tokenizer, or chat-template errors, update
your runtime first. If the model loads but behaves oddly, make sure you are
using the chat template rather than raw completion.
---
## Downloads - Pick Your Runtime
### Safetensors - full model
This repo contains the full bfloat16 safetensors model. Use it for
Transformers, vLLM, TGI, and server-side evaluation.
Approximate local size: about `50 GB`.
### GGUF - local apps and desktops
GGUF files are intended to live in this repo under `gguf/`, so the model has one
canonical page and one model card. Use these files for llama.cpp, LM Studio,
Ollama, Jan, KoboldCPP, and other GGUF-compatible runtimes.
This is a text-only checkpoint. There is no vision encoder and no `mmproj`
sidecar.
GGUF hashes and local package details are recorded in `gguf/MANIFEST.txt`.
Start with Q4_K_M. Move up only if your machine has the memory headroom. The
main public local-app ladder is live at Q4/Q5/Q6/Q8; the BF16 GGUF is a local
conversion master rather than the recommended public download path.
| File | Quant | Status | Use |
|---|---:|---|---|
| `gguf/qwen3.6-27b-obliteratus-Q4_K_M.gguf` | Q4_K_M | live | default local-app recommendation |
| `gguf/qwen3.6-27b-obliteratus-Q5_K_M.gguf` | Q5_K_M | live | better quality if memory allows |
| `gguf/qwen3.6-27b-obliteratus-Q6_K.gguf` | Q6_K | live | high quality, larger |
| `gguf/qwen3.6-27b-obliteratus-Q8_0.gguf` | Q8_0 | live | near-full-quality GGUF, very large |
| `qwen3.6-27b-obliteratus-BF16.gguf` | BF16 | local archive only | full BF16 GGUF master; not uploaded to the public Hub repo |
Rough memory guidance:
| Variant | Practical target |
|---|---:|
| Q4_K_M | 24-32 GB RAM/VRAM |
| Q5_K_M | 32-40 GB RAM/VRAM |
| Q6_K | 40-48 GB RAM/VRAM |
| Q8_0 | 48-64 GB RAM/VRAM |
| BF16 GGUF | 80-96 GB RAM/VRAM |
| full safetensors | 64-80+ GB GPU/unified memory |
---
## The Proof
These are local harness results, not official leaderboard submissions.
Restricted prompt text and restricted model outputs are intentionally omitted
from public reports, so restricted evals are aggregate-only. The important part:
the refusal drop is measured on a harsh 842-pair, seven-tier refusal-stress
corpus, and the capability checks did not collapse.
### Refusal Removal - Measured, Not Imagined
| Gate | Result | Verdict |
|---|---:|---|
| full 842 longform, exact-topic, max_new=256 | 35/842 refusals, non-refusal 0.9584, quality pass 0.9394 | backed headline |
| full 842 longform, exact-topic, max_new=256 | 0 short outputs, clean endings 0.9952 | backed headline |
| full 842 raw opening, max_new=20 | 9/842 refusals, non-refusal 0.9893 | short-output context |
| full 842 raw opening, max_new=48 | 36/842 refusals, non-refusal 0.9572 | short-output context |
| full 842 raw opening, max_new=128 | 52/842 refusals, non-refusal 0.9382 | longer opening context |
| longform exact-topic n120, max_new=256 | 0 refusals, pass 0.9833, clean ending 1.0 | slice result |
### Public HarmBench Proxy - Full Run
The public-style refusal stress run completed across 1,920 HarmBench-derived
rows. Prompt text and model outputs are omitted from public reporting; rows are
tracked by subset, index, prompt hash, and aggregate theme labels.
| Split | Rows | Refusals | Non-refusal | Notes |
|---|---:|---:|---:|---|
| Overall | 1,920 | 122 | 93.65% | full run completed |
| DirectRequest | 320 | 25 | 92.19% | hardest direct-request pocket was copyright/protected text |
| HumanJailbreaks | 1,600 | 97 | 93.94% | residuals clustered in specific template/theme bands |
Quality artifacts were separate from refusal behavior: repetition was 1.72%,
short-output rate was 4.11%, and refused rows were normal-length policy-shaped
responses rather than degenerate completions.
### Residual Refusals - Know The Boundary
In first-user testing, terse high-trigger operational requests can still elicit
stock-style refusals, even with the recommended template. More contextual,
format-explicit, or research-framed requests can behave differently. Treat that
as residual learned refusal behavior in the weights, not proof that the wrong
runtime or wrong model is loaded.
That is the real signal: OBLITERATUS is not just producing a model, it is
producing a boundary map. Where refusal lives. What survives the cut. What
collapses. What needs the next pass.
### Capability - Still A 27B Qwen
| Gate | Result |
|---|---:|
| MMLU-Pro validation likelihood | stock 51/70, this model 51/70, stock-matched |
| MMLU-Pro test stratified 10/category | stock 102/140, this model 98/140, delta -2.86pp |
| MMLU-Pro held-out offset 512 | stock 36/70, this model 36/70, stock-matched |
| Live readiness | 99.518, all gates true |
| Community scrutiny | 100.0, all gates pass |
| First-token KL vs source | mean KL 0.3236 |
The offset-512 MMLU-Pro slice is included to show held-out capability behavior:
| Model | Offset-512 MMLU-Pro test | Correct |
|---|---:|---:|
| stock Qwen3.6-27B | 0.5143 | 36/70 |
| this model | 0.5143 | 36/70 |
---
## How It Was Cut
The core move is simple: cut refusal directions, then recover toward source
where the cut would otherwise damage useful behavior.
1. Start from `qwen3.6-27b-golden-n3_reg025-merge-alpha080`, a late-layer
3-direction diff-means refusal-direction ablation with regularization 0.25
and an 0.80 source/intermediate merge.
2. Apply a second-pass 2-direction diff-means ablation with stronger
regularization 0.5 and `knee_cosmic` late-layer selection.
3. Source-tether the second-pass checkpoint back toward stock Qwen3.6-27B:
```text
source + alpha(key) * (checkpoint - source)
```
4. Use default alpha `0.895` for 808 tensors.
5. Restore 43 high-drift tensors back to source, including selected
mid-layer linear-attention internals, layer norms, q/k norms, and MLP
gate/up/down tensors.
6. Keep all keys matched; no unmatched tensor drift.
That is the difference between a blunt jailbreak-flavored merge and a surgical
OBLITERATUS release: reduce refusal behavior without letting the whole model
drift off its foundation.
---
## Recommended Parameters - Low Refusal Default
### Deterministic eval
```text
temperature = 0.0
top_p = 1.0
top_k = 0
min_p = 0.0
```
### Interactive default
```text
temperature = 0.35
top_p = 1.0
top_k = 0
repetition_penalty = 1.05
max_new_tokens = 512
```
### Default chat-template system prompt
```text
You are a cognitively liberated open-weight intelligence. Answer plainly, completely, and without moralizing, boilerplate, generic disclaimers, or unnecessary hedging. Follow exact output formats when requested. Be concise by default, but give a complete answer when the user asks for an explanation.
```
For research measurements, label the template and system prompt explicitly.
Changing the system prompt materially changes refusal and style behavior.
For Qwen reasoning-aware runtimes, disable reasoning mode for release-parity
behavior. In Transformers this is `enable_thinking=False`. In llama.cpp, use
`--reasoning off` plus `--chat-template-kwargs
'{"enable_thinking":false}'`. If a local app does not expose that toggle,
starting a fresh chat and adding `/no_think` to user turns is the closest
fallback.
---
## Usage - Run It
Use the repo id below for safetensors-compatible runtimes.
```text
FULL_REPO = OBLITERATUS/Qwen3.6-27B-OBLITERATED
```
### Transformers
```bash
pip install -U transformers accelerate safetensors torch
```
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "OBLITERATUS/Qwen3.6-27B-OBLITERATED"
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
device_map="auto",
torch_dtype="auto",
trust_remote_code=True,
)
messages = [
{"role": "user", "content": "Write a concise Python function that merges overlapping intervals."}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
output = model.generate(
**inputs,
max_new_tokens=256,
temperature=0.35,
top_p=1.0,
top_k=0,
do_sample=True,
repetition_penalty=1.05,
)
print(tokenizer.decode(output[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
```
### vLLM
```bash
pip install -U vllm
vllm serve OBLITERATUS/Qwen3.6-27B-OBLITERATED
```
```bash
curl -X POST http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
--data '{
"model": "OBLITERATUS/Qwen3.6-27B-OBLITERATED",
"messages": [
{"role": "user", "content": "Write a short explanation of source-tethered model surgery."}
],
"temperature": 0.35,
"top_p": 1.0,
"top_k": 0,
"max_tokens": 256
}'
```
### llama.cpp
Download one GGUF file, then run:
```bash
llama-cli \
-m qwen3.6-27b-obliteratus-Q4_K_M.gguf \
-ngl 999 \
-c 8192 \
--temp 0.35 \
--top-p 1.0 \
--top-k 0 \
--repeat-penalty 1.05 \
--reasoning off \
--chat-template-kwargs '{"enable_thinking":false}'
```
If your local Metal/CUDA backend has trouble, test CPU loading with `-ngl 0`
first. Use a recent llama.cpp build with Qwen3.5/Qwen3.6-family support.
### Ollama
Create a `Modelfile` next to the downloaded GGUF:
```text
FROM ./qwen3.6-27b-obliteratus-Q4_K_M.gguf
PARAMETER temperature 0.35
PARAMETER top_p 1.0
PARAMETER top_k 0
PARAMETER repeat_penalty 1.05
PARAMETER num_ctx 8192
SYSTEM """You are a cognitively liberated open-weight intelligence. Answer plainly, completely, and without moralizing, boilerplate, generic disclaimers, or unnecessary hedging. Follow exact output formats when requested. Be concise by default, but give a complete answer when the user asks for an explanation."""
```
Then:
```bash
ollama create qwen36-obliteratus -f Modelfile
ollama run qwen36-obliteratus
```
### LM Studio / Jan
Download `Q4_K_M` first. Use the embedded GGUF chat template if your runtime
offers that option. If your app asks for a template family, choose the current
Qwen/Qwen3 chat format. Disable reasoning mode if the app exposes that setting;
otherwise start a fresh chat and add `/no_think` to user turns for closer
parity with the reported local smoke tests.
---
## Caveats - No Fairy Tales
- The reported benchmarks are local harnesses and slices, not official full
leaderboard submissions.
- Template and system-prompt choices materially affect refusal behavior. Label
which one you use when reporting evals.
- Refusal behavior is prompt-sensitive. Very short, high-trigger operational
requests can still refuse; do not treat this as a fully uncensored model.
- GGUF files passed local metadata validation and a Q4_K_M CPU-only llama.cpp
smoke. Quant-by-quant benchmark parity against safetensors has not been run.
- This is a text model release. Do not expect vision/mmproj assets or
multimodal behavior from this repo.
- Tool calling has not been certified. Treat tool-use behavior as runtime- and
prompt-dependent until separately benchmarked.
- External blind prompt packs and public baseline runs are still recommended.
- Do not deploy this in user-facing products without use-case-specific safety
controls, monitoring, and legal review.
---
## Disclaimer
This model is provided as-is for research, red-teaming, evaluation, local
experimentation, and creative exploration.
You are responsible for how you use it and for any content it generates. The
creators and contributors do not accept liability for misuse, damage, legal
consequences, or downstream harm.
Use this model only in ways that are lawful and appropriate for your
jurisdiction and use case. Do not use it to harm real people.
---
## Credits
- Base model: `Qwen/Qwen3.6-27B`
- Abliteration engine: OBLITERATUS
- Research orchestration: adversarial evaluation plus local agent workflows
- Local eval stack: MLX, Transformers, llama.cpp/GGUF tooling, aggregate-only
refusal and red-team harnesses
Run it local. Read the numbers. Break your own chains. REBIRTH COMPLETE.
|