← back to catalog · registered 2026-09-16 23:56

Dragoy/Swift-Qwen3.8-27B-abliterated-NVFP4

Dragoy 27B multimodal
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-16
Downloads over time
Now0from0↑0%
00110 on Sep 160 on Sep 17Sep
Sep 16 → Sep 17 · 2 snapshots · spans 1 day

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
other
Tags
transformers safetensors qwen3_5 image-text-to-text nvfp4 fp8 qwen3.8 abliterated uncensored multimodal mtp vllm

Related

Total size
20.2 GB
Files
14
Quantizations
1
Registered
2026-09-16 23:56
Last updated on HF
2026-09-16 23:51

Files by quantization

Auxiliary files 14 files 20.2 GB
model-00001-of-00002.safetensors 18.6 GB b89f127e download
model-00002-of-00002.safetensors 1.60 GB 7e8bf5fd download
tokenizer.json 19.1 MB 06b95093 download
model.safetensors.index.json 159 KB 6c55c5f8 download
config.json 16.9 KB ea6c1b82 download
LICENSE 13.0 KB adfde1bf download
LICENSE-APACHE-2.0 11.3 KB f938136e download
chat_template.jinja 8.74 KB c0c686f9 download
README.md 6.63 KB ea988d4d download
.gitattributes 1.53 KB 52373fe2 download
tokenizer_config.json 1.10 KB d1a20cc3 download
preprocessor_config.json 390 B 2ea84a43 download
video_preprocessor_config.json 385 B 3ba673a5 download
generation_config.json 214 B 0bc3addd download

README current version from Hugging Face


license: other
license_name: swift-open-license-1.0
license_link: https://huggingface.co/Dragoy/Swift-Qwen3.8-27B-abliterated-NVFP4/blob/main/LICENSE
base_model: ukisai/Swift-Qwen3.8-27b
tags:

  • nvfp4
  • fp8
  • qwen3.8
  • qwen3_5
  • abliterated
  • uncensored
  • multimodal
  • mtp
  • vllm
  • transformers
  • blackwell
    pipeline_tag: image-text-to-text
    library_name: transformers

Swift-Qwen3.8-27B · huihui-style abliterated · NVFP4 (standard HF format)

NVFP4 + FP8 quantized checkpoint of the abliterated Swift model, published in the
standard Hugging Face safetensors format. It loads in vLLM and
transformers, so standard features such as JSON-schema structured output
(vLLM guided decoding) work out of the box.

Specs

Base model ukisai/Swift-Qwen3.8-27b (rev 1b30aaaf)
Chain Swift → huihui-style abliteration → NVFP4/FP8 quantization
Quantization NVFP4 (MLP gate/up/down) + FP8 (attention, GDN, lm_head) — allocation copied verbatim from unsloth/Qwen3.8-27B-NVFP4 (recipe.yaml in this repo), 32 calibration samples
Weight size 21.8 GiB (2 safetensors shards) + MTP module included
Architecture hybrid mamba/attention, 64 layers, multimodal (vision + MTP)
Built on Modal, RTX PRO 6000 (sm_120a), vLLM 0.27.1

The NVFP4 weights alone are 21.8 GiB, so a single 16 GB card is not enough for
this format. Working options for 16 GB-class cards:

  1. GGUF IQ4_XS (~14.5 GiB, imatrix, MTP head included)
    jakeatx/ATX-Swift-Qwen3.8-27B-Uncensored-IQ4_XS-M-GGUF
    (abliterated Swift, text-only) via llama.cpp / LM Studio.
    For 24 GB cards with long context the same author documents a dedicated recipe.
  2. 2 × 16 GB, tensor parallel 2 — NVFP4 runs on 2 × RTX 5070 Ti
    (16 GB each): documented benchmark at
    unsloth/Qwen3.8-27B-NVFP4, discussion #16
    (54–120 tok/s decode with MTP, 80–120K context).
  3. NVFP4 + CPU offload — vLLM --cpu-offload-gb / llama.cpp partial -ngl:
    full 1:1 quality, lower speed (15–40 tok/s range).
  4. The hybrid mamba/attention architecture keeps the KV cache minimal, so the
    weight size — not the context — is the binding constraint on small cards.

Usage (vLLM)

pip install vllm==0.27.1
export VLLM_USE_FLASHINFER_SAMPLER=0   # no nvcc needed in the container
vllm serve dragoy/Swift-Qwen3.8-27B-abliterated-NVFP4 \
  --max-model-len 32768 --gpu-memory-utilization 0.9

JSON-schema output:

from vllm import SamplingParams
params = SamplingParams(temperature=1.0, top_p=0.95, top_k=20,
                        guided_json={"type": "object",
                                     "properties": {"answer": {"type": "string"}},
                                     "required": ["answer"]})

Provenance

  1. Source: ukisai/Swift-Qwen3.8-27b @ 1b30aaaf753fe5c1cb51ada2ea0367a53445359c
  2. Abliteration: huihui-style (refusal-direction projection, Arditi et al. 2024 family),
    transferred by per-tensor weight difference from the Qwen/Qwen3.8-27B
    huihui-ai/Huihui-Qwen3.8-27B-abliterated pair — format/weight change, no fine-tuning
  3. Quantization: llm-compressor oneshot, NVFP4 + FP8 allocation copied verbatim from
    unsloth/Qwen3.8-27B-NVFP4 (quantization_config), 32 calibration samples
  4. Config repair: nested multimodal config restored + quantization_config grafted
    (llm-compressor flattens it)
  5. Verification: shape preflight + vLLM 0.27.1 smoke on RTX PRO 6000

Also available

The same checkpoint, packaged as a single-file engine artifact for Blackwell
(sm_120a) instead of standard safetensors:
Dragoy/Swift-Qwen3.8-27B-abliterated-NVFP4-NInfer.

License

This repository is a derivative of the Swift checkpoint, whose license is the
Swift Open License v1.0 — not Apache. The chain:

Component Licence
Qwen/Qwen3.8-27B (base model) Apache-2.0 — Copyright 2026 Alibaba Cloud (LICENSE-APACHE-2.0)
ukisai/Swift-Qwen3.8-27b (Swift Contribution) Swift Open License v1.0 (LICENSE)
This repo (abliteration + quantization of Swift) derivative work — the Swift Contribution contained in it stays under the Swift Open License v1.0

What that means in practice:

  • Free use, including commercial, while your gross revenue (counting all
    controlled entities) is below the $1,000,000 per fiscal year threshold;
    qualified non-profits have no threshold for non-commercial or research use.
  • Above the threshold: obtain a separate written licence from UkisAI
    (Swift Enterprise License).
  • Redistribution: ship both licence files, keep the copyright and attribution
    notices, and mark files you modified (Swift licence §4–§5).

This is a description of what the licences say, not legal advice.

Intended use and limitations

This is an uncensored model: the upstream abliteration removes the refusal
direction, so it will attempt requests a stock instruction-tuned model declines.
It is published for research, evaluation and local deployment where that
behaviour is understood and wanted.

Use at your own responsibility. Anyone deploying it is responsible for their
own safeguards, output handling, and compliance with the licences above and
applicable law. The publisher publishes this checkpoint as-is, without warranty
of any kind, and is not liable for how it is used or for its outputs. The refusal
behaviour — and any capability cost of the abliteration — originates
entirely upstream; this repository changes precision and format, not behaviour.

Credit for the base model to Qwen (Alibaba Cloud);
for the Swift training to UkisAI; for the
abliteration style to huihui-ai; and for the
published NVFP4 recipe to unsloth.

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