Views
No views yet
huihui-ai/Huihui-Qwen3.8-27B-abliterated,
prepared for local inference on Apple silicon with
mlx-vlm.739e3c5b89849f6c238ce1e5b70008612ae42cdd.
No additional fine-tuning or abliteration was performed during conversion.Qwen3_5ForConditionalGeneration architecture in MLX Safetensors format.mlx-vlm.mtp.* checkpoint tensors.| Item | Value |
|---|---|
| Source model | huihui-ai/Huihui-Qwen3.8-27B-abliterated |
| Source revision | 739e3c5b89849f6c238ce1e5b70008612ae42cdd |
| Upstream revision date | 2026-08-24 03:47:39 UTC |
| Conversion date | 2026-08-25 |
| Conversion tool | mlx-vlm 0.6.16 |
| MLX version | 0.32.2 |
| Source loading dtype | bfloat16 |
| Quantization | 8-bit affine RTN, group size 64 |
| Converter-reported average | 8.627 bits per weight |
| Vision quantization | Not applied; source precision retained |
| MTP | Not included |
1python -m pip install "mlx-vlm==0.6.16" "mlx==0.32.2" jinja2
2
3mlx_vlm.convert \
4 --hf-path huihui-ai/Huihui-Qwen3.8-27B-abliterated \
5 --revision 739e3c5b89849f6c238ce1e5b70008612ae42cdd \
6 --mlx-path ./Huihui-Qwen3.8-27B-abliterated-MLX-8bit \
7 --quantize \
8 --q-bits 8 \
9 --q-group-size 64 \
10 --q-mode affine \
11 --quant-method rtnmlx-vlm. Version 0.6.16 is the version used and tested for
this conversion.python -m pip install -U "mlx-vlm>=0.6.16"1MODEL="daguoagi/Huihui-Qwen3.8-27B-abliterated-MLX-8bit"
2
3mlx_vlm.generate \
4 --model "$MODEL" \
5 --prompt "Explain why the sky appears blue." \
6 --max-tokens 512 \
7 --temperature 1.0 \
8 --top-p 0.95 \
9 --top-k 201MODEL="daguoagi/Huihui-Qwen3.8-27B-abliterated-MLX-8bit"
2
3mlx_vlm.generate \
4 --model "$MODEL" \
5 --image /absolute/path/to/image.jpg \
6 --prompt "Describe this image in detail." \
7 --max-tokens 512 \
8 --temperature 1.0 \
9 --top-p 0.95 \
10 --top-k 201from mlx_vlm import generate, load
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model_path = "daguoagi/Huihui-Qwen3.8-27B-abliterated-MLX-8bit"
5image_path = "/absolute/path/to/image.jpg"
6
7model, processor = load(model_path)
8messages = [
9 {
10 "role": "user",
11 "content": [{"type": "text", "text": "Describe this image in detail."}],
12 }
13]
14prompt = apply_chat_template(
15 processor,
16 model.config,
17 messages,
18 num_images=1,
19)
20
21result = generate(
22 model,
23 processor,
24 prompt,
25 image=[image_path],
26 max_tokens=512,
27 temperature=1.0,
28 top_p=0.95,
29 top_k=20,
30)
31print(result.text)generation_config.json uses temperature=1.0, top_p=0.95, and
top_k=20. These are useful starting points rather than mandatory settings.z-lab/Qwen3.8-27B-DFlash2,
an Apache-2.0 DFlash 2 draft checkpoint for Qwen/Qwen3.8-27B. It is a separate
dependency and is not included in this repository. The draft is not a
standalone language model; a compatible runtime uses it to propose tokens that
are verified by this target model.mlx-vlm 0.6.16 can load this DFlash2 checkpoint directly:1MODEL="daguoagi/Huihui-Qwen3.8-27B-abliterated-MLX-8bit"
2
3mlx_vlm.generate \
4 --model "$MODEL" \
5 --prompt "Explain why the sky appears blue." \
6 --max-tokens 512 \
7 --temperature 1.0 \
8 --top-p 0.95 \
9 --top-k 20 \
10 --draft-model z-lab/Qwen3.8-27B-DFlash2 \
11 --draft-kind dflash \
12 --draft-block-size 8mlx-vlm 0.6.16, the draft checkpoint is loaded at its native precision;
that version does not expose the runtime draft-quantization controls described
below for oMLX.oMLX 0.6.3rc3 and the
4-bit sibling model. It is provided as a starting point for this 8-bit release:| Setting | Value |
|---|---|
| Draft model | z-lab/Qwen3.8-27B-DFlash2 |
| Draft quantization | Q4 weights / A16 activations / group size 64 |
| Draft window | 2048 (checkpoint default / automatic) |
| Draft sink | 0 |
| Block size | 8 |
| Verification | Adaptive |
| In-memory draft cache | 1 entry, 2 GB limit |
| SSD draft cache | Disabled |
mlx-vlm 0.6.16 conversion completed successfully.uncensored or abliterated label does not guarantee that every
refusal has been removed, nor does it guarantee factual or safe output.huihui-ai/Huihui-Qwen3.8-27B-abliterated
and Qwen/Qwen3.8-27B model cards.