AI SeedbankHelp preserve open and free AI for humanity's future

← All models

orcarouter_Qwen3.8-27B-Uncensored-GGUF--q8_0

orcarouter · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-01T16:02:52Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 base_model: Qwen/Qwen3.8-27B base_model_relation: quantized pipeline_tag: image-text-to-text library_name: gguf language:

  • en
  • zh tags:
  • abliterated
  • qwen
  • qwen3
  • qwen3.8
  • gguf
  • llama.cpp
  • uncensored
  • ai-red-team
  • red-teaming
  • vision-language
  • mmproj
  • mtp
  • function-calling
  • reasoning

Qwen3.8-27B-Uncensored-GGUF

GGUF quants (2-bit → 16-bit) of the abliterated (refusal-removed) Qwen3.8-27B — for llama.cpp

One Gateway. Every Model. — Route Smarter · Ship Safer · Spend Less.

Website · Model Catalog · Model Card · GitHub · Ollama · Discord · X


GGUF conversions of Qwen3.8-27B-Uncensored — an abliterated (refusal-removed) build of Qwen's Qwen3.8-27B, a 27B dense hybrid-attention (Gated DeltaNet linear + full attention) native vision-language model with reasoning, tool-calling, and an MTP speculative-decoding head. These files run in llama.cpp (CPU / CUDA / Metal / ROCm), quantized from 2-bit to 16-bit, with a separate mmproj file that restores vision. Browse all models in the OrcaRouter Model Catalog. Qwen3.8 27B is deployed as API on OrcaRouter.


⚠️ Disclaimer — read before use

This model has had its safety alignment substantially removed via abliteration (orthogonalizing the refusal direction out of the residual stream). It will comply with harmful, unethical, or illegal requests the original Qwen3.8-27B would refuse. Released strictly for legitimate research — interpretability, AI-safety / refusal-mechanism study, red-teaming, and robustness evaluation. You assume full responsibility for how you use it and everything it generates; add your own safety and moderation layers before any deployment. Use must comply with the Apache 2.0 License inherited from the base model and all applicable law. The authors accept no liability for misuse.


Requirements

  • A recent llama.cpp built from source (the qwen35 hybrid-GDN architecture and the MTP / nextn speculative head — merged 2026-05 — must be present). Older releases will not load these files.
  • The GDN linear-attention layers are stored as SSM-style tensors (ssm_*); full-attention layers as attn_*; the MTP head as block nextn.* (qwen35.nextn_predict_layers).

Files

Standard K-quants

File Bits Size Notes / recommendation
…-Q2_K.gguf 2-bit 10.9 GB Smallest K-quant; noticeable quality drop — low-VRAM only
…-Q3_K_S.gguf 3-bit 12.3 GB
…-Q3_K_M.gguf 3-bit 13.5 GB Good small option
…-Q3_K_L.gguf 3-bit 14.6 GB
…-Q4_K_S.gguf 4-bit 15.8 GB
…-Q4_K_M.gguf 4-bit 16.8 GB Recommended default — best quality/size balance
…-Q5_K_S.gguf 5-bit 17.7 GB
…-Q5_K_M.gguf 5-bit 18.2 GB High quality
…-Q6_K.gguf 6-bit 20.9 GB Very high quality
…-Q8_0.gguf 8-bit 27.1 GB Near-lossless
…-F16-0000*-of-00002.gguf 16-bit 54.7 GB Full precision (split into 2 parts; point llama.cpp at part 00001)

IQ quants (imatrix)

Lower-bit quants built with an importance matrix (computed on English + Chinese calibration text) — better quality-per-bit than plain K-quants at the low end, especially IQ3/IQ2.

File Bits Size Notes / recommendation
…-IQ4_XS.gguf ~4.25-bit 15.3 GB Best low-bit pick — ≈ Q4_K_S quality at smaller size
…-IQ3_M.gguf ~3.7-bit 12.8 GB Solid 3-bit
…-IQ3_XXS.gguf ~3.1-bit 11.6 GB Smaller 3-bit
…-IQ2_M.gguf ~2.7-bit 10.5 GB Runs in low VRAM; some quality loss
…-IQ2_XXS.gguf ~2.1-bit 8.9 GB Smallest runnable; most degraded

Vision

File Size Notes
mmproj-…-f16.gguf 0.9 GB Vision projector — download this too for image input

All quants (K-quant and IQ) preserve the MTP (nextn) head and the GDN hybrid architecture; vision is provided by the separate mmproj file. The IQ files were quantized with an importance matrix (computed on English + Chinese calibration text) for better low-bit fidelity; the matrix itself is not shipped, as it is only needed to re-quantize these files, not to run them.

Usage (llama.cpp)

Download

hf download orcarouter/Qwen3.8-27B-Uncensored-GGUF \
  Qwen3.8-27B-Uncensored-Q4_K_M.gguf mmproj-Qwen3.8-27B-Uncensored-f16.gguf \
  --local-dir ./qwen38-uncensored

Chat (text)

./llama-cli -m Qwen3.8-27B-Uncensored-Q4_K_M.gguf --jinja -c 8192 -p "Hello!"

OpenAI-compatible server (tool calling + reasoning + vision)

./llama-server -m Qwen3.8-27B-Uncensored-Q4_K_M.gguf \
  --mmproj mmproj-Qwen3.8-27B-Uncensored-f16.gguf \
  --host 0.0.0.0 --port 8000 -c 8192 --jinja
  • Vision: pass --mmproj …, then send OpenAI image_url content parts (base64 data-URI or URL).
  • Tool calling: --jinja enables the Qwen tool template; use standard OpenAI tools + tool_calls.
  • Reasoning (thinking): thinking is on by default; toggle per request via chat_template_kwargs.enable_thinking. The reasoning trace is returned in reasoning_content (give max_tokens room, e.g. ≥ 2048, so the final answer isn't truncated by the thinking budget).
  • MTP speculative decoding: the nextn head is embedded; enable llama.cpp's MTP/speculative path for a decode speed-up (optional — the model runs fine without it).

Or skip llama.cpp — run it with Ollama

The same quants are published as Ollama tags, with the mmproj projector already bundled in (no second file, no --mmproj flag) and vision / tools / thinking wired up:

ollama run orcarouter/Qwen3.8-27B-Uncensored          # q4_K_M by default
ollama run orcarouter/Qwen3.8-27B-Uncensored:iq4_xs   # any of the 16 tags

Sixteen tags from q2_K to q8_0, each verified on the actual quantized artifact before release — ollama.com/orcarouter.

Evaluation

Measured on this exact abliterated build (served with vLLM) vs the official Qwen/Qwen3.8-27B-FP8, using the same scripts and settings. Refusal is judged by a rule-based opening-phrase classifier — indicative, not an LLM-judge / publication-grade number. GGUF quants are deterministic derivations and inherit these behaviours; lower bits trade some quality (see the file table).

Safety — harmful-prompt refusal, thinking OFF (lower = more uncensored)

Benchmark n Base FP8 This model
AdvBench 100 99.0% 0.0%
JailbreakBench (harmful) 100 94.0% 0.0%
StrongREJECT 150 97.3% 2.0%
HarmBench (standard) 150 98.7% 2.7%
MaliciousInstruct 100 99.0% 0.0%
SimpleSafetyTests 50 64.0% 6.0%
ForbiddenQuestions 150 73.3% 4.7%
Custom probes (zh/en) 11 63.6% 0.0%

Safety — harmful-prompt refusal, thinking ON (enable_thinking=true)

Benchmark n Base FP8 This model
AdvBench 60 66.7% 1.7%
JailbreakBench (harmful) 60 43.3% 0.0%
StrongREJECT 60 35.0% 0.0%
HarmBench (standard) 60 46.7% 0.0%
MaliciousInstruct 60 83.3% 0.0%
SimpleSafetyTests 50 44.0% 0.0%
ForbiddenQuestions 60 48.3% 0.0%
Custom probes (zh/en) 11 45.5% 0.0%

Over-refusal — benign prompts wrongly refused (lower = better)

Benchmark n Base FP8 (no-think / think) This model (no-think / think)
XSTest-safe 250 5.6% / 0.0% 0.4% / 0.0%

Capability retention — vs the official base FP8 (same scripts)

Benchmark n Base FP8 This model Δ
MMLU (all, 0-shot) 300 84.3% 84.7% +0.4
MMLU-Pro (CoT) 250 77.6% 76.8% −0.8
GSM8K (CoT) 150 90.0% 88.7% −1.3
CMMLU (0-shot, Chinese) 500 81.4% 80.8% −0.6
WikiText-2 perplexity 6.96 fluency sanity check

Harmful-prompt refusal collapses from 64–99% (base) to 0–6%; benign over-refusal drops (5.6%→0.4%); capability stays within ±1.3 pts of the base. Reasoning (enable_thinking), multi-turn tool calling (qwen3_coder), and vision (image + OCR via mmproj) all verified working on the GGUF build. Note: the above are full-precision/FP8 numbers; expect small additional degradation at lower quants (most visible at Q2_K / Q3).

Hardware

  • Runs on CPU, CUDA, Metal, or ROCm via llama.cpp. VRAM/RAM ≈ the file size + KV cache + (for vision) the ~0.9 GB mmproj. E.g. Q4_K_M fits comfortably on a 24 GB GPU with room for context.

License

Apache 2.0, inherited from Qwen/Qwen3.8-27B. Abliteration and quantization do not change the underlying license obligations.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:250beb77fa4c8d88209c1ef2d02d89ca6ebcd2c3&dn=orcarouter_Qwen3.8-27B-Uncensored-GGUF--q8_0

Open magnet in torrent client · infohash 250beb77fa4c8d88209c1ef2d02d89ca6ebcd2c3

Files & hashes

PathSizesha1sha256
Qwen3.8-27B-Uncensored-Q8_0.gguf27.05 GB (29,047,084,416 B)31756fca94beca71ea4b8706d6fdc896dab2a3c6376ab0c1863b98512a24f8d6
README.md10.5 KB (10,713 B)2b4cd1eb5024e5802938f4769b058c34e5e01debcb41517ea53df1f1b1150e12ad933c24313ef9fe3b6662000b27c11807840ad6
mmproj-Qwen3.8-27B-Uncensored-f16.gguf888.0 MB (931,145,984 B)add205b7bfdb3f71f6da36b0a82aa20928dd829a920878c602628cdfbebc5288

Cite this release

Canonical URL
https://aiseedbank.org/models/orcarouter_Qwen3.8-27B-Uncensored-GGUF--q8_0/
Slug
orcarouter_Qwen3.8-27B-Uncensored-GGUF--q8_0
Infohash
250beb77fa4c8d88209c1ef2d02d89ca6ebcd2c3
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: orcarouter_Qwen3.8-27B-Uncensored-GGUF--q8_0.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryorcarouter/Qwen3.8-27B-Uncensored-GGUF
Revision (pinned)a855f377abf5cbda99a278414466743f427e97c8
Fetched at2026-09-01T02:59:11Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-01T03:27:11Z

apache-2.027.92 GB (29,978,241,113 bytes)ggufabliteratedqwenqwen3qwen3.8llama.cppuncensoredai-red-teamred-teamingvision-languagemmprojmtpfunction-callingreasoningimage-text-to-textendpoints_compatibleimatrixconversational2 languages (en, zh)