← back to catalog · registered 2026-09-26 18:57

preemware/Qwen3.8-27B-RANA-abliterated-MLX

preemware 27B multimodal second-order
curl -H "Authorization: Bearer $ABL_KEY" \
     "https://abliteration.org/api/v1/models/preemware%2FQwen3.8-27B-RANA-abliterated-MLX"
Response includes
  • classification unknown
  • files 16
  • author_summary 4 models
  • readme_text full
10 credits · hourly refresh · ~4 KB payload Get an API key →
Abliteration classifier · v1.0.0
?
Primary method

Unclassified

No clear signals of an abliteration technique in this model.
Confidence
UNKNOWN
Why this label 1 signal
No classification signals present. This may not be an abliterated model at all - it could be a repackaging, a merge with unrelated goals, or unrelated content that mentions the term.
  • no classification signals present (no abliterated, uncensored, or known producer/method markers)
Refusal direction extraction

No specific extraction method could be identified for this model. The producer either did not document it or used a proprietary pipeline.

What is a refusal direction? →
Downloads · 30-day
0
Likes
0
Model age
today
created 2026-09-26

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.

Variants by this author 4 formats · 1K downloads combined

The same weights this author released in different packaging. Pick the format that matches your runtime.

Metadata

License
apache-2.0
Tags
mlx safetensors qwen3_5 mlx-vlm apple-silicon abliteration refusal-direction qwen3 vision-language 4-bit 5-bit 6-bit

Related

Total size
15.0 GB
Files
16
Quantizations
1
Registered
2026-09-26 18:57
Last updated on HF
2026-09-26 18:43

Files by quantization

Auxiliary files 16 files 15.0 GB
model-00003-of-00003.safetensors 4.99 GB 00a15caf download
model-00002-of-00003.safetensors 4.99 GB 4760d575 download
model-00001-of-00003.safetensors 4.98 GB 6659c4ec download
tokenizer.json 19.1 MB 06b95093 download
vocab.json 6.41 MB 0aa0ce06 download
model.safetensors.index.json 213 KB 05a3a3a1 download
LICENSE 11.3 KB f938136e download
chat_template.jinja 8.74 KB c0c686f9 download
README.md 6.93 KB acf87ce6 download
config.json 4.82 KB 3fb03e91 download
.gitattributes 1.86 KB 5d2c6c26 download
tokenizer_config.json 1.14 KB 1d134cd2 download
processor_config.json 991 B 8f29fe38 download
preprocessor_config.json 390 B 2ea84a43 download
video_preprocessor_config.json 385 B 3ba673a5 download
generation_config.json 202 B 023756cf download

README current version from Hugging Face


license: apache-2.0
base_model: preemware/Qwen3.8-27B-RANA-abliterated
base_model_relation: quantized
library_name: mlx
pipeline_tag: image-text-to-text
tags:

  • mlx
  • mlx-vlm
  • apple-silicon
  • abliteration
  • refusal-direction
  • qwen3
  • vision-language
  • 4-bit
  • 5-bit
  • 6-bit
  • 8-bit

Qwen3.8-27B-RANA-abliterated-MLX

MLX builds of preemware/Qwen3.8-27B-RANA-abliterated,
a refusal-ablated Qwen/Qwen3.8-27B, for Apple Silicon (MLX, mlx-vlm).
One repo: the root is the 4-bit build, the other precisions are in subfolders, and mtp/ holds the
drafter for MTP speculative decoding. Vision is included in every build.

This is a safety-alignment-removed research model. Read Intended use and
Limitations before using it. Method, full evaluation and release gates are on the
BF16 card.

Builds

KLD = mean KL divergence of each build's next-token distribution from the bf16/ build on wiki.test.raw, the
same protocol as the GGUF card: 100 chunks of
512 tokens, second half of each chunk scored. Lower is closer to BF16.

Folder Precision Size KLD Same top token
(root) same files as 4-bit/ 16.08 GB 0.0468 90.0%
4-bit/ 4-bit, 4.695 bits/weight 16.08 GB 0.0468 90.0%
5-bit/ 5-bit, 5.678 bits/weight 19.44 GB 0.0129 94.8%
6-bit/ 6-bit, 6.661 bits/weight 22.80 GB 0.0042 96.9%
8-bit/ 8-bit, 8.627 bits/weight 29.53 GB 0.0013 98.3%
bf16/ BF16, unquantized 54.74 GB reference –
mtp/ MTP drafter, BF16 0.87 GB – –

Other formats: BF16 (Transformers),
FP8 (vLLM / SGLang),
GGUF (llama.cpp).

Quick start

Download one precision folder, then load it by path:

pip install -U mlx-vlm    # mlx-vlm >= 0.7.3, mlx >= 0.32.2
hf download preemware/Qwen3.8-27B-RANA-abliterated-MLX --include "4-bit/*" \
  --local-dir ./Qwen3.8-27B-RANA-abliterated-MLX

python -m mlx_vlm generate --model ./Qwen3.8-27B-RANA-abliterated-MLX/4-bit \
  --enable-thinking --max-tokens 32768 --temperature 1.0 --top-p 0.95 --top-k 20 \
  --prompt "Explain how a hash map handles collisions."

Another precision, plus the MTP drafter (repeat --include for each folder):

hf download preemware/Qwen3.8-27B-RANA-abliterated-MLX --include "8-bit/*" --include "mtp/*" \
  --local-dir ./Qwen3.8-27B-RANA-abliterated-MLX

python -m mlx_vlm generate --model ./Qwen3.8-27B-RANA-abliterated-MLX/8-bit \
  --draft-model ./Qwen3.8-27B-RANA-abliterated-MLX/mtp --draft-kind mtp \
  --enable-thinking --max-tokens 32768 --temperature 1.0 --top-p 0.95 --top-k 20 \
  --prompt "Explain how a hash map handles collisions."
  • Don't pass the repo id itself to --model. mlx-vlm then downloads every folder (about 160 GB), not just
    the 4-bit files at the root. The root copy is there for apps that open a repo's top level.
  • Add --image path/to/image.png for vision input. The drafter is optional; it only speeds up generation.
  • An OpenAI-compatible server: python -m mlx_vlm server --model ./Qwen3.8-27B-RANA-abliterated-MLX/8-bit (add
    --draft-model …/mtp --draft-kind mtp for speculative decoding). It supports tool calls and returns the reasoning separately.
  • Thinking is on by default. Qwen's thinking-mode sampling: temperature 1.0, top_p 0.95, top_k 20.
  • Long technical requests can need 20–50k tokens of reasoning; allow a large --max-tokens.

Intended use

  • Research only: interpretability, red-teaming, and robustness evaluation of refusal behavior.
  • Not for public or end-user deployment without a separate moderation layer. The model's own
    refusals have been largely removed, so any safety filtering has to happen outside it.
  • You are responsible for complying with applicable law, the Apache-2.0 license inherited from Qwen,
    and the terms of any platform where outputs are used.

How it was made

  • Source: the published BF16 weights, converted with mlx_vlm.convert (mlx-vlm 0.7.3, MLX 0.32.2).
    Quantized builds use affine round-to-nearest quantization with group size 64; the vision tower stays in BF16.
    bf16/ is the same conversion without quantization. The MTP head is split into mtp/ with --mtp and kept in BF16.
  • Same layout as the standard conversions of the base model: in every folder, tensor names, shapes and dtypes and
    config.json are identical to the matching mlx-community or lmstudio-community build of Qwen/Qwen3.8-27B
    (4-bit/ and 8-bit/: mlx-community -4bit / -8bit; 5-bit/ and 6-bit/: lmstudio-community -MLX-5bit / -MLX-6bit; bf16/: mlx-community -bf16; mtp/: mlx-community -MTP-bf16). It loads wherever those load.

Checks

All checks ran with MLX 0.32.2's CUDA backend on Linux, on files sha256-identical to the ones in this repo. Raw outputs are in results/.

  • Files: after upload, every file here was hashed (sha256 for weights) and matched the conversion output.
  • Quality: the KLD table above, 25,500 scored tokens per build. Perplexity on the same tokens: BF16 6.778, 4-bit 6.945, 5-bit 6.863, 6-bit 6.788, 8-bit 6.779.
  • Function: with mlx_vlm server, reading text and a shape from an image and a three-turn tool-calling exchange pass on 4-bit/, 8-bit/ and bf16/.
  • MTP speculative decoding with mtp/, greedy, 512 tokens of a coding answer; mean accepted tokens per round: 4-bit 2.49 (74% of drafted), 5-bit 2.57 (79% of drafted), 6-bit 2.56 (78% of drafted), 8-bit 2.57 (79% of drafted), bf16 2.57 (79% of drafted).
  • The Quick start commands were run as written against this repo (with --max-tokens 4096), including the repeated---include download of 8-bit/ and mtp/.

Limitations

  • Not run on Apple Silicon by us. The checks above ran MLX's CUDA backend on Linux (same MLX version,
    same model code, same files); speed on a Mac is not measured here.
  • Refusal behavior was not re-measured on the MLX builds. KLD shows how closely each build tracks the
    BF16 weights; refusal results for BF16, FP8 and a 4-bit GGUF are on their cards. Lower-bit builds
    drift further from BF16.
  • Everything listed under Limitations on the BF16 card
    applies here too.

Credits

  • Qwen team: base model Qwen/Qwen3.8-27B.
  • Arditi et al., 2024: "Refusal in Language Models Is Mediated by a Single Direction".
  • Jim Lai (grimjim): prior work on norm-preserving abliteration.
  • Apple MLX team and mlx-vlm (Prince Canuma): MLX and the conversion and runtime tooling.
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 Abliteration" button that hands the model directly to the first-party desktop client, at the quantization your rig can actually run. No API keys, no subscription, no prompt leakage.