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

Ae55667/halogen-qwen3.8-flash-next-abliterated

curl -H "Authorization: Bearer $ABL_KEY" \
     "https://abliteration.org/api/v1/models/Ae55667%2Fhalogen-qwen3.8-flash-next-abliterated"
Response includes
  • classification m1
  • files 7
  • author_summary 1 models
  • readme_text full
10 credits · hourly refresh · ~4 KB payload Get an API key →
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
0
Likes
0
Model age
today
created 2026-09-20

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
Tags
halogen qwen moe abliterated uncensored strix-halo gfx1151 rocm amd text-generation base_model:peonist-ai/halogen-qwen3.8-flash-next base_model:finetune:peonist-ai/halogen-qwen3.8-flash-next
Total size
22.0 GB
Files
7
Quantizations
1
Registered
2026-09-20 15:56
Last updated on HF
2026-09-20 14:57

Files by quantization

Auxiliary files 7 files 25.3 GB
expert_patch.bin 22.0 GB ******** download
qwen38-flash-next-w4b.overlay.hgn 3.27 GB ******** download
expert_patch.manifest.json 14.3 KB a06fb486 download
README.md 6.21 KB a172f232 download
apply_expert_patch.py 3.49 KB 7cd4499f download
restore_expert_patch.py 1.67 KB f3a19dbc download
.gitattributes 1.55 KB fbefcc6c download

README current version from Hugging Face


license: apache-2.0
base_model: peonist-ai/halogen-qwen3.8-flash-next
pipeline_tag: text-generation
library_name: halogen
inference: false
tags:

  • halogen
  • qwen
  • moe
  • abliterated
  • uncensored
  • strix-halo
  • gfx1151
  • rocm
  • amd

Qwen3.8-Flash-Next, abliterated, for the Halogen engine (AMD Strix Halo)

A refusal-direction abliteration of
peonist-ai/halogen-qwen3.8-flash-next,
delivered as a patch kit on top of the vendor checkpoint. It keeps the vendor's .hgn
format, engine and speed; only the weights that carry the refusal behaviour change.

This repo does not contain the base model. You download the vendor checkpoint yourself and
apply the patch to it.

Files

file size what it is
qwen38-flash-next-w4b.overlay.hgn 3.27 GiB replaces the vendor quality sidecar: the vendor's 723 tensors plus the abliterated attention / shared-expert / embedding tensors (727 total, 99 stored as Q8G64)
expert_patch.bin 22.0 GiB abliterated bytes for the 49 experts.down_proj tensors, same dtype and size as the originals
expert_patch.manifest.json 12 KB offset, size and sha256 (original and abliterated) of each of the 49 ranges
apply_expert_patch.py writes the 49 ranges into the base file in place, with backup and verification
restore_expert_patch.py puts the original ranges back

Both parts are required. The overlay alone loads but still refuses; the MoE expert
down_proj tensors carry most of the refusal behaviour.

The patch is pinned to vendor revision 942daecd6013d640bc329e13a409ad3ea7a76439
(qwen38-flash-next-w4b.hgn, 124,068,083,904 bytes, sha256 9c116bbc…5bd6). The apply script
hashes every range first and refuses to write if the base file is anything else.

Method

Standard directional ablation, W' = W − r (rᵀ W), applied to 149 tensors: attention
o_proj, linear-attention out_proj, expert and shared-expert down_proj, the per-layer
embedding value_proj, and embed_tokens (right-side). r is a single refusal direction in the
2560-wide hidden space.

The delta is smaller than one 4-bit quantisation step, so plain re-quantisation erases it.
Non-expert tensors are therefore stored at 8-bit (Q8G64) in the overlay, which the engine accepts
in place of 4-bit. Expert tensors must stay 4-bit and byte-identical in size, so they are encoded
with greedy ±1-step nibble flips along r (about 2 % of weights touched, projection onto r
reduced by ~99 %).

Measured (one Strix Halo box, engine 0.5.9)

  • Refusals on a 25 harmful / 25 harmless prompt set: harmful 25/25 → 0/25, harmless 0/25 before and after.
  • Decode 31–37 tok/s, the same band as the unmodified checkpoint.
  • Resident footprint about 88 GiB (vendor configuration: about 87 GiB).

No broader quality benchmark has been run. Treat it as experimental.

Install on Strix Halo

Requirements: Ryzen AI MAX (gfx1151) with 128 GB unified memory, Linux with /dev/kfd and
/dev/dri available, podman (or docker), Python 3, about 170 GiB of free disk during install
(118 vendor + 25 this repo + 22 backup; the backup and expert_patch.bin can be deleted afterwards
if you do not need to roll back).

1. Download the vendor checkpoint at the pinned revision

hf download peonist-ai/halogen-qwen3.8-flash-next \
  --revision 942daecd6013d640bc329e13a409ad3ea7a76439 \
  --local-dir ~/halogen-models/halogen-qwen3.8-flash-next

2. Download this repo (request access on the model page first, then hf auth login)

hf download Ae55667/halogen-qwen3.8-flash-next-abliterated --local-dir ~/halogen-models/flash-next-ablit

3. Patch the experts — the engine must be stopped; never patch a file the engine has mapped.

python3 ~/halogen-models/flash-next-ablit/apply_expert_patch.py \
  ~/halogen-models/halogen-qwen3.8-flash-next/qwen38-flash-next-w4b.hgn

Expect PATCH APPLIED AND VERIFIED. It reads 22 GiB three times and writes it twice, so allow
several minutes.

4. Start the engine with the abliterated overlay

sudo sysctl -w vm.drop_caches=1 vm.compact_memory=1   # the engine needs large contiguous blocks

podman run --rm --name halogen-serve -p 127.0.0.1:8731:8731 \
  --device /dev/kfd --device /dev/dri --group-add keep-groups \
  --security-opt seccomp=unconfined --security-opt label=disable \
  --ipc=host --ulimit memlock=-1:-1 \
  -v ~/halogen-models/halogen-qwen3.8-flash-next:/models:ro \
  -v ~/halogen-models/flash-next-ablit:/ablit:ro \
  -e HALOGEN_CK_OVERLAY=/ablit/qwen38-flash-next-w4b.overlay.hgn \
  ghcr.io/peonist-ai/halogen-flash-server:0.5.9

HALOGEN_CK_OVERLAY is the only change from the vendor's own run command. The startup log should
report 727 tensors for the overlay and 99 tensors upgraded to q8g64. Add
-e HALOGEN_VISION_TOWER=1 for image input, as in the vendor README.

5. Test

curl -s 127.0.0.1:8731/v1/chat/completions -H 'content-type: application/json' \
  -d '{"messages":[{"role":"user","content":"Say hello."}],"max_tokens":64}'

Notes

  • If startup sits at "reserving the KV pool" for minutes and then exits, memory is fragmented:
    stop other large processes, rerun the sysctl line, start again. Do not put the 49 expert
    tensors in the overlay instead of patching them: overlay bytes are pinned in addition to the
    base, and the extra 22 GiB no longer fits.
  • The engine is the vendor's closed binary; this repo changes weights only.

Roll back

# stop the engine, then:
python3 ~/halogen-models/flash-next-ablit/restore_expert_patch.py \
  ~/halogen-models/halogen-qwen3.8-flash-next/qwen38-flash-next-w4b.hgn

and start the engine without HALOGEN_CK_OVERLAY. Removing only the overlay leaves abliterated
experts in the base file, which is a hybrid, not the vendor model.

License and provenance

Apache-2.0, inherited from the vendor checkpoint, itself a derivative of Qwen3.8-Flash-Next and
governed by that model's license. The refusal direction was recovered from the published
difference between unsloth/Qwen3.8-Flash-Next-GGUF and
orcarouter/Qwen3.8-Flash-Next-Uncensored-GGUF.

This model will comply with requests the original refuses. You are responsible for how you use it.

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 - Abliteration, LM Studio, or Ollama. No API keys, no subscription, no prompt leakage.