← back to catalog · registered 2026-09-15 08:56

mshodiqul/qwen3.5-9b-uncensored

mshodiqul 9.4B second-order
Abliteration classifier · v1.0.0
M1
Primary method

Direct removal

No other method signals detected in this model.
Confidence
MEDIUM
Why this label 3 signals
Method inferred from partial signals - repository name, related files, or tag patterns. Producer identity not confirmed; label may sharpen or shift as we gather more evidence.
  • 'abliterated' in name/tags
  • is_gguf=0 (base model)
  • no specific method indicators - defaulting to M1 (most common)
Refusal direction extracted via
Extraction technique

Difference-of-means

Confidence
MEDIUM
Why we say so
primary_method=M1; difference-of-means is the reference extraction for M1/M3 (Arditi 2024)
Downloads · 30-day
333
Likes
1
Model age
1d ago
created 2026-09-15
Downloads over time
Now0from0↑0%
00110 on Sep 150 on Sep 16Sep
Sep 15 → Sep 16 · 2 snapshots · spans 1 day

Benchmarks

Benchmark Score Source
Entertainment 1.4 UGI
Hazardous 1.8 UGI
Natural Intelligence 15.29 UGI
Political lean -2.5% UGI
Sensitive-Info 13.54 UGI
SocPol 1 UGI
UGI 18.19 UGI
Willingness (10) 2.8 UGI
W10-Adherence 1.5 UGI
W10-Direct 4 UGI
Writing 29.57 UGI

Genealogy 0 direct forks

Full fork graph →

This model's place in the market. Above: what it was derived from. Below: the tree of everything derived from it.

Metadata

License
apache-2.0
Languages
en
Tags
transformers safetensors qwen3_5 image-text-to-text qwen3.5 uncensored coding agentic tool-use lora fine-tuned text-generation

Related

Total size
17.5 GB
Files
16
Quantizations
1
Registered
2026-09-15 08:56
Last updated on HF
2026-09-15 12:28

Files by quantization

Auxiliary files 16 files 17.6 GB
model-00002-of-00004.safetensors 4.65 GB f0148838 download
model-00003-of-00004.safetensors 4.61 GB e6d68290 download
model-00001-of-00004.safetensors 4.60 GB 9ef1b774 download
model-00004-of-00004.safetensors 3.66 GB 14f5a7a0 download
tokenizer.json 19.1 MB 87a7830d download
vocab.json 6.41 MB 0aa0ce06 download
model.safetensors.index.json 67.6 KB 778b7bbb download
chat_template.jinja 7.57 KB a585dec8 download
README.md 3.49 KB 8350966f download
config.json 2.76 KB 4130edd0 download
.gitattributes 1.53 KB 52373fe2 download
processor_config.json 1.27 KB 7ad6acdf download
tokenizer_config.json 1.11 KB a068e246 download
preprocessor_config.json 390 B 2ea84a43 download
video_preprocessor_config.json 385 B 3ba673a5 download
generation_config.json 115 B affcdf18 download

README current version from Hugging Face


license: apache-2.0
base_model: DavidAU/Qwen3.5-9B-Claude-4.6-HighIQ-THINKING-HERETIC-UNCENSORED
library_name: transformers
tags:

  • qwen3.5
  • uncensored
  • heretic
  • abliterated
  • coding
  • agentic
  • thinking
  • text-generation
  • image-text-to-text
    language:
  • en
    pipeline_tag: text-generation

Qwen3.5-9B Uncensored

An uncensored ("heretic") Qwen3.5-9B redistributed for convenient access under this
repo. This is the BF16 base model
DavidAU/Qwen3.5-9B-Claude-4.6-HighIQ-THINKING-HERETIC-UNCENSORED — no additional fine-tuning
was applied to this release (see Provenance below).

Qwen3.5-9B is a hybrid-attention (linear + full attention) decoder with a native
262,144-token (256K) context window and a vision tower (image-text-to-text).

What it's good at

  • Coding — clean Python / bash / Rust generation, algorithm implementation, debugging.
  • Agentic / tool use — emits the native Qwen3.5 tool-call XML
    (<tool_call><function=...><parameter=...></function></tool_call>) when tools are
    passed through the chat template.
  • Uncensored — answers technical/security/creative prompts without the usual
    refusals (inherited from the "heretic" ablation of the base).

Usage

from transformers import AutoModelForImageTextToText, AutoTokenizer

repo = "mshodiqul/qwen3.5-9b-uncensored"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForImageTextToText.from_pretrained(
    repo, torch_dtype="bfloat16", device_map="auto")

messages = [{"role": "user", "content": "Write a Python LRU cache with O(1) get/put."}]
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tok(text, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=1024)
print(tok.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))

Tool calling

tools = [{"type": "function", "function": {
    "name": "get_weather",
    "description": "Get current weather for a city",
    "parameters": {"type": "object",
                    "properties": {"city": {"type": "string"}},
                    "required": ["city"]}}}]

text = tok.apply_chat_template(messages, tools=tools, tokenize=False,
                               add_generation_prompt=True)

Serving (vLLM)

vllm serve mshodiqul/qwen3.5-9b-uncensored \
    --max-model-len 262144 \
    --trust-remote-code

Notes

  • Context window: 262,144 tokens (native max_position_embeddings). Quality of
    recall degrades long before the full window; the model is strongest within a few
    tens of thousands of tokens.
  • Output length: the config has no output cap — very long generations are
    possible but coherence falls off; practical output is a few thousand tokens.
  • Thinking: the native chat template supports enable_thinking=True/False; when
    enabled the model emits <think>...</think> reasoning blocks.
  • The vision tower is present but this card documents text usage only.

Provenance

Redistributed from DavidAU/Qwen3.5-9B-Claude-4.6-HighIQ-THINKING-HERETIC-UNCENSORED (BF16). An experimental LoRA SFT on agentic-coding
traces was attempted but not shipped here: the available synthetic trace datasets
were contaminated with degenerate templated reasoning that degraded coding quality
relative to the base model. This release is therefore the unmodified base, which
already provides strong coding + uncensored behaviour.

README history 4 versions

The author's README evolved over time. Click a version to see its content at that point.

  1. 2026-09-15Update model card (v3)b7ef2cb5 KB
    Loading...
  2. 2026-09-15Add model card9ea7cbc3.5 KB
    Loading...
  3. 2026-09-15Upload Qwen3.5-9B Uncensored (base, BF16)435367e77.7 KB
    Loading...
  4. 2026-09-15initial commit789ee8828 B
    Loading...
Catalog is the map. Apps are the tools.

Run models on your own machine, not in the cloud.

Every model page has an "Open in app" button that hands off directly to a local runtime of your choice - Infrahuman, LM Studio, or Ollama. No API keys, no subscription, no prompt leakage.