Views
No views yet

An abliterated (refusal-removed) build ofQwen/Qwen3.8-27B— a 27B-parameter dense, hybrid-attention (Gated DeltaNet linear + full attention) native vision-language model with thinking control, tool-calling and an MTP head — quantized to MLX format for Apple Silicon. Four precisions are provided — 2 / 4 / 6 / 8-bit (affine, group size 64) — each as a subfolder, with the 4-bit build also mirrored at the repo root so thatorcarouter/Qwen3.8-27B-Uncensored-MLXloads directly in LM Studio and other tools that treat a repo as a single model. The vision tower, norms and conv layers are kept in BF16; only the language-model linear weights (includingembed_tokens/lm_head) are quantized. Browse all models in the OrcaRouter Model Catalog. This model is deployed as API here.
Qwen3.8-27B would refuse. It has no meaningful built-in guardrails.| Folder | Bits/weight | Size | Shards | Min Mac RAM | Quality vs BF16 source |
|---|---|---|---|---|---|
8-bit/ | 8.627 | ~27.5 GB | 6 | 32 GB | Near-lossless — recommended for quality |
6-bit/ | 6.661 | ~22 GB | 5 | 24–32 GB | Excellent — strong quality/size balance |
4-bit/ | 4.695 | ~15 GB | 3 | 24 GB | Very good — recommended default |
2-bit/ | 2.729 | ~8.7 GB | 2 | 16 GB | ⚠️ Severely degraded — archival only |
2-bit warning: at 27B, 2-bit quantization collapses generation quality (repetition loops, garbled output). It is included only as an extreme-compression archive; do not use it for real work — prefer 4-bit or higher.
Repo root =4-bit/. The root of this repo holds a copy of the 4-bit build, so--model orcarouter/Qwen3.8-27B-Uncensored-MLX(no subfolder) resolves to 4-bit. Use the subfolder paths to pick any other precision.
| Precision | Numerical fidelity (cosine) | Text / Chinese / Code | Refusal probes | Vision |
|---|---|---|---|---|
| 8-bit | cos 0.9997 | ✅ | ✅ 0 refusals | ✅ |
| 6-bit | cos 0.9996 | ✅ | ✅ 0 refusals | ✅ |
| 4-bit | cos 0.996 | ✅ | ✅ 0 refusals | ✅ |
| 2-bit | cos 0.92 | ⚠️ breaks down | ⚠️ garbled (not refusal) | partial |
Note: on 6-bit, mlx's offlinemx.dequantizemis-unpacks these weights (a library edge case), so correctness is verified by clean generation — inference is unaffected.
1pip install -U mlx-vlm # needs mlx-vlm >= 0.6.13, mlx >= 0.32
2
3# download one precision (e.g. 4-bit) from the subfolder
4hf download orcarouter/Qwen3.8-27B-Uncensored-MLX --include "4-bit/*" \
5 --local-dir ./Qwen3.8-27B-Uncensored-MLX
6
7# text
8python -m mlx_vlm generate \
9 --model ./Qwen3.8-27B-Uncensored-MLX/4-bit \
10 --prompt "Explain quantum entanglement in one sentence." --max-tokens 256
11
12# vision (image + text)
13python -m mlx_vlm generate \
14 --model ./Qwen3.8-27B-Uncensored-MLX/4-bit \
15 --image path/to/image.png \
16 --prompt "Describe this image." --max-tokens 256
17
18# OpenAI-compatible server
19python -m mlx_vlm server --model ./Qwen3.8-27B-Uncensored-MLX/4-bit --port 8080MLX_CUDA_USE_CUDNN_SDPA=0; this does not
apply on macOS.)orcarouter/Qwen3.8-27B-Uncensored-MLX in LM Studio and download it — the repo
root is the 4-bit build, and the other precisions appear as separate download options.qwen3_5
support landed in mlx-vlm 0.6.x, and older runtimes cannot load this architecture at all.| Base model | Qwen/Qwen3.8-27B |
| Architecture | Qwen3_5ForConditionalGeneration — 64 layers, hidden 5120, hybrid Gated DeltaNet (48 linear + 16 full attention, interval 4), native VL tower |
| Modification | Abliteration (refusal-direction removal), then MLX affine quantization |
| Quantization | MLX affine, group size 64, per-precision 2 / 4 / 6 / 8-bit |
| Kept in BF16 | vision tower, all norms, linear-attention conv1d |
| Quantized | language-model linear layers incl. embed_tokens and lm_head |
| Context | 262,144 tokens |