← back to catalog · registered 2026-09-18 10:56

com-kotobalabs/Qwen3.8-27B-Uncensored-whitehat-NVFP4

com-kotobalabs Qwen 27B multimodal
curl -H "Authorization: Bearer $ABL_KEY" \
     "https://abliteration.org/api/v1/models/com-kotobalabs%2FQwen3.8-27B-Uncensored-whitehat-NVFP4"
Response includes
  • classification m1
  • files 14
  • 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
1
Model age
1d ago
created 2026-09-17

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
transformers safetensors qwen3_5 image-text-to-text abliterated uncensored security-research red-team nvfp4 conversational arxiv:2406.11717 base_model:Qwen/Qwen3.8-27B

Related

Total size
18.4 GB
Files
14
Quantizations
1
Registered
2026-09-18 10:56
Last updated on HF
2026-09-18 10:07

Files by quantization

Auxiliary files 14 files 18.4 GB
model.safetensors 18.4 GB ******** download
tokenizer.json 19.1 MB ******** download
vocab.json 6.41 MB 0aa0ce06 download
merges.txt 3.20 MB a494e019 download
config.json 20.6 KB a1fa966a download
chat_template.jinja 8.74 KB c0c686f9 download
README.md 6.44 KB 71095cef download
.gitattributes 1.53 KB 52373fe2 download
tokenizer_config.json 1.10 KB d1a20cc3 download
recipe.yaml 421 B d3ab2c16 download
preprocessor_config.json 390 B 2ea84a43 download
video_preprocessor_config.json 385 B 3ba673a5 download
crc32.txt 238 B 6de5ee6a download
generation_config.json 219 B b54e2431 download

README current version from Hugging Face


license: apache-2.0
base_model: Qwen/Qwen3.8-27B
tags:

  • abliterated
  • uncensored
  • security-research
  • red-team
  • nvfp4
  • qwen3_5
    library_name: transformers
    pipeline_tag: image-text-to-text
    extra_gated_heading: "Access — authorized security research only"
    extra_gated_description: >-
    This is a dual-use, abliterated ("uncensored") model. Access is reviewed and
    granted for authorized security research. See the acceptable-use terms below.
    extra_gated_prompt: >-
    By requesting access you confirm that you will use this model ONLY within an
    authorized scope — your own systems, sanctioned engagements, CTFs, and model-safety
    research — and in compliance with applicable law. You will NOT use it to target
    systems, data, or people you are not authorized to test, nor to produce weapons,
    malware, or fraud for real-world harm. Removing a refusal filter does not remove your
    legal and ethical obligations; you accept sole responsibility for your use.
    extra_gated_fields:
    Full name: text
    Affiliation or organization: text
    Intended use (be specific): text
    I will use this model only for authorized security research and lawful purposes: checkbox
    I accept sole responsibility for how I use this model: checkbox
    extra_gated_button_content: "Request access"

Qwen3.8-27B-Uncensored-whitehat-NVFP4

An abliterated (refusal-direction-ablated) derivative of
Qwen/Qwen3.8-27B, quantized to NVFP4
for Blackwell-class GPUs — it runs on a single NVIDIA RTX PRO 6000. Built for
authorized security research and red-teaming: evaluating model safety, generating
adversarial test cases, and studying refusal behavior, where a model that does not
reflexively decline is a research instrument.

Dual-use artifact. Abliteration removes the model's tendency to refuse; it adds no
new capability but removes a safety layer, so it can produce content the base model
would decline. Use it only within an authorized scope (your own systems, sanctioned
engagements, CTFs, safety research). You are responsible for how you use it. The
procedure and calibration prompts are public and reproducible — documented below.

What was changed

Qwen3.8-27B is a dense multimodal model (Qwen3_5ForConditionalGeneration, qwen3_5):
64 decoder layers with hybrid attention (linear + periodic full), dense MLP,
hidden_size 5120, plus a vision tower.

  • Method: refusal-direction ablation
    (Arditi et al., 2024). Estimate the residual-stream
    direction that most separates refusal-eliciting from benign prompts, then orthogonalize
    every residual-stream writer against it — self_attn.o_proj (full-attn layers),
    linear_attn.out_proj (linear-attn layers), mlp.down_proj, and embed_tokens:
    W' = W − r·(rᵀW).
  • Untouched: the vision tower (visual.*), and lm_head. Vision behavior is
    unchanged.
  • Quantization: NVFP4 (Blackwell-native FP4) via
    llm-compressor
    compressed-tensors. Vision, embeddings, lm_head, and the linear-attention
    conv1d/in_proj_a/in_proj_b tensors stay higher-precision.

Serving — one RTX PRO 6000

NVFP4 weights are ~18 GB, so they fit a single 96 GB RTX PRO 6000 with ~76 GB free
for the KV cache (the base supports 262k context). (bf16, ~56 GB, also fits one card —
NVFP4 buys Blackwell FP4 throughput + long-context headroom.)

Weights are compressed-tensors NVFP4 (format: nvfp4-pack-quantized, W4A4),
auto-detected from config.json — no special flag needed on recent vLLM/SGLang.

# vLLM (single RTX PRO 6000)
vllm serve com-kotobalabs/Qwen3.8-27B-Uncensored-whitehat-NVFP4 --trust-remote-code
# SGLang
python -m sglang.launch_server \
  --model-path com-kotobalabs/Qwen3.8-27B-Uncensored-whitehat-NVFP4 \
  --quantization compressed-tensors --tp 1 --trust-remote-code

No GGUF (yet)

llama.cpp can't convert this architecture: qwen3_5 hybrid linear-attention tensors
(ssm_conv1d kernel dim + in_proj_a/in_proj_b expansion) are unhandled —
ggml-org/llama.cpp#27019. NVFP4 for
SGLang/vLLM is the supported path until that lands.

Validation (measured)

  • Ablation coverage: 129/129 residual-stream writers orthogonalized (64 attention
    output projections + 64 mlp.down_proj + embed_tokens).
  • Refusal rate (do_sample=False, on refusal-eliciting prompts base Qwen refuses
    ~universally): 0% in bf16 and 0% after NVFP4 — i.e. the abliteration survives
    quantization. This measures refusal removal, not general capability; run your own
    task-level evals before relying on it.
  • NVFP4 calibration: 256 general-instruction samples, W4A4.

Throughput / concurrency — RTX PRO 6000 (measured)

Measured 2026-09-18 on a single NVIDIA RTX PRO 6000 Blackwell (96 GB) via a
Hugging Face Inference Endpoint, vLLM serving the NVFP4 weights (maxNumSeqs=64,
max-model-len=32768, greedy, 256-token completions, streaming). Reproduce with
bench/benchmark.py; raw data in bench/results.json.

concurrency output tok/s req/s E2E p50 (256-tok request) errors
1 47 0.18 5.4 s 0
8 329 1.3 6.0 s 0
16 641 2.5 6.3 s 0
32 897 3.7 6.9 s 0
48 1,556 6.1 7.9 s 0
64 1,636 7.7 8.3 s 0
96 1,433 6.5 9.3 s 0
128 1,908 7.5 17.1 s 0
  • Peak throughput ≈ 1.9k output tok/s (concurrency 128). The batch fills at
    maxNumSeqs=64 (~1.6k tok/s, E2E 8.3 s); beyond that, requests queue and per-request
    latency roughly doubles (17 s at 128).
  • Max concurrency tested: 128, with zero errors — this is a sweep bound, not a
    failure ceiling; more is servable by raising maxNumSeqs at the cost of latency.
  • Interactive range: ≤ 64 concurrent keeps a full 256-token completion under ~8.3 s.
  • Note: fine-grained TTFT/ITL were not reliably captured this run (the
    --reasoning-parser qwen3 stream splits reasoning vs. content); wall-clock E2E
    latency
    is reported instead. Throughput/req-counts are from usage.

Reproduce

modal_pipeline.py (download → abliterate → NVFP4 → publish; smoke for the refusal
check) and bench/ (endpoint deploy + concurrency sweep). Calibration prompt sets in
data/harmful.txt and data/harmless.txt.

License

Apache-2.0, inherited from the base model.

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.