← back to catalog · registered 2026-09-26 05:57

IstroSec/ThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16

IstroSec 27B multimodal second-order
curl -H "Authorization: Bearer $ABL_KEY" \
     "https://abliteration.org/api/v1/models/IstroSec%2FThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16"
Response includes
  • classification m-uncensored
  • files 15
  • author_summary 7 models
  • readme_text full
10 credits · hourly refresh · ~4 KB payload Get an API key →
Abliteration classifier · v1.0.0
M-U
Primary method

Uncensored (method unknown)

No other method signals detected in this model.
Confidence
LOW
Why this label 3 signals
Weak or ambiguous signals. Best guess based on catalog patterns; treat as tentative and check the evidence below.
  • 'uncensored' in name/tags but no 'abliterated' marker
  • method not identifiable from author declaration alone
  • may be DPO fine-tune, prompt engineering, or unknown technique
Refusal direction extraction

No specific extraction method could be identified for this model. The producer either did not document it or used a proprietary pipeline.

What is a refusal direction? →
Downloads · 30-day
0
Likes
0
Model age
today
created 2026-09-25

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
Languages
en multilingual
Tags
transformers safetensors qwen3_5 image-text-to-text qwen3_8 thinkingcap abliterated uncensored nvfp4 nvfp4a16 fp4 compressed-tensors

Related

Total size
26.6 GB
Files
15
Quantizations
1
Registered
2026-09-26 05:57
Last updated on HF
2026-09-26 05:38

Files by quantization

Auxiliary files 15 files 26.6 GB
model-00001-of-00002.safetensors 18.6 GB dc30856f download
model-00002-of-00002.safetensors 7.20 GB 7643b9a6 download
model_mtp.safetensors 810 MB 1d8268aa download
tokenizer.json 19.1 MB 06b95093 download
model.safetensors.index.json 163 KB 26327ccb download
config.json 24.2 KB a09469e7 download
chat_template.jinja 8.74 KB c0c686f9 download
README.md 5.82 KB 37f92da7 download
.gitattributes 1.53 KB 52373fe2 download
LICENSE 1.23 KB c6b9bd63 download
processor_config.json 1.19 KB 43c4343e download
tokenizer_config.json 1.14 KB 1d134cd2 download
NOTICE 757 B ced5b77f download
recipe.yaml 251 B 5daf2c33 download
generation_config.json 214 B c53835dc download

README current version from Hugging Face


license: other
license_name: polyform-small-business-1.0.0
license_link: LICENSE
base_model: IstroSec/ThinkingCap-Qwen3.8-27B-abliterated
base_model_relation: quantized
library_name: transformers
pipeline_tag: image-text-to-text
language:

  • en
  • multilingual
    tags:
  • qwen3_5
  • qwen3_8
  • thinkingcap
  • abliterated
  • uncensored
  • nvfp4
  • nvfp4a16
  • fp4
  • compressed-tensors
  • llmcompressor
  • vllm
  • mtp
  • vision

ThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16

NVFP4 weight-only quantization (4-bit FP4 weights, bf16 activations) of ThinkingCap-Qwen3.8-27B-abliterated, the uncensored variant of bottlecapai/ThinkingCap-Qwen3.8-27B.

28.6 GB (from 55.6 GB bf16). Plan on a 48 GB-class GPU; 32 GB leaves almost nothing for KV cache. Fastest on Blackwell (native FP4 path); runs on Hopper via the Marlin weight-only kernel (the same support matrix bottlecapai lists for its own NVFP4 weight-only build).

If you have the memory for it, the FP8-DYNAMIC build is closer to lossless. This one is for when 36.8 GB doesn't fit.

What is quantized

Produced with llm-compressor, scheme NVFP4A16: FP4 (E2M1) weights in groups of 16 with FP8 (E4M3) per-group scales and a per-tensor FP32 global scale. Activations stay bf16, so no calibration set is needed and there's no activation-quantization noise.

Quantized: all Linear modules in the 64 decoder layers' MLPs and the 16 full-attention layers' q/k/v/o_proj.

Kept in bf16 on purpose:

Component Why
linear_attn.* (Gated DeltaNet, 48 layers) 4-bit on the recurrent block roughly doubles KL and introduces thinking loops on this architecture
visual.* vision tower and merger
lm_head standard
mtp.* MTP head, re-grafted from bf16 after quantization; its Linears are in quantization_config.ignore

The bf16 islands are why this lands at 28.6 GB rather than the ~21 GB of a build that also quantizes DeltaNet (bottlecapai's own NVFP4 weight-only is 21 GB). The DeltaNet block is 5.6B of the 28B parameters. Community measurements on the Qwen3.6-27B sibling showed that 4-bit-quantizing it roughly doubles KL and can produce thinking loops, so those 8 GB are deliberately spent. If size matters more than that risk, bottlecapai's build of the original (censored) model shows the smaller trade-off.

Evaluation

Refusals (100 harmful) KL vs. bf16 abliterated
bf16 abliterated (source) 6 / 100 —
FP8-DYNAMIC {{fp8.refusals}} {{fp8.kl}}
NVFP4A16 (this repo) {{nvfp4a16.refusals}} {{nvfp4a16.kl}}

Method: Heretic --evaluate-model against the bf16 abliterated checkpoint, non-thinking mode. Expect this build to land somewhat above FP8; under ~0.05 KL is the target for a 4-bit build of a reasoning model. {{nvfp4a16.kl_note}}

Provenance chain: original ThinkingCap refuses 97/100 → bf16 abliteration 6/100 at KL 0.065 vs. original → this quantization adds the KL above.

Usage

vLLM (Blackwell for the native FP4 path; Hopper falls back to Marlin automatically)

vllm serve IstroSec/ThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16 \
  --reasoning-parser qwen3 \
  --enable-auto-tool-choice --tool-call-parser qwen3_xml \
  --speculative-config '{"method":"mtp","num_speculative_tokens":3}' \
  --max-model-len 65536 --gpu-memory-utilization 0.85

Sampling (Qwen3.8 recommendations, which ThinkingCap uses unchanged): thinking mode temperature 1.0, top_p 0.95, top_k 20, min_p 0; non-thinking mode temperature 0.7, top_p 0.8, top_k 20, presence_penalty 1.5. Thinking budget via chat_template_kwargs: {"reasoning_effort": "xhigh"} — xhigh (default, recommended), medium, or low.

Notes:

  • Only the 16 full-attention layers have a KV cache; FP8 KV (--kv-cache-dtype fp8_e5m2) is a small win here, not a large one.
  • Weight-only FP4 is bandwidth-bound like any weight-only format: single-stream decode is fast, high-batch throughput is where W4A4 (NVFP4) would pull ahead. That variant needs calibration and loses more quality; it isn't published here.

Transformers loads it (dequantized to bf16, so ~56 GB of memory):

from transformers import AutoModelForImageTextToText
m = AutoModelForImageTextToText.from_pretrained("IstroSec/ThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16", device_map="cuda")

Not for llama.cpp — compressed-tensors format. GGUF builds are made separately from the bf16 source.

Reproduce

from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier
recipe = QuantizationModifier(
    targets="Linear", scheme="NVFP4A16",
    ignore=["lm_head", "re:.*visual.*", "re:.*linear_attn.*"],
)
oneshot(model=model, recipe=recipe)
# then copy mtp.* from the bf16 checkpoint and add the MTP Linears to quantization_config.ignore

Limitations

Everything from the bf16 card applies: no safety filter, 6/100 residual refusals, thinking mode not separately evaluated. You are the safety layer. Add to that the usual 4-bit caveats: slightly lower accuracy on long multi-step reasoning and code than FP8; if a task is failing here and working on FP8, that's the quantization.

License

PolyForm Small Business License 1.0.0 + BottleCap personal-use grant, inherited from ThinkingCap (see LICENSE). Upstream Qwen materials and the abliteration adapter are Apache-2.0 (see NOTICE). Commercial use beyond the PolyForm terms: contact BottleCap AI.

Credits

bottlecapai (ThinkingCap) · MuXodious (abliteration adapter) · p-e-w/heretic · vllm-project/llm-compressor · Qwen team

README history 1 version

The author's README evolved over time. Click a version to see its content at that point.

  1. 2026-09-26Upload ThinkingCap-Qwen3.8-27B-abliterated-NVFP4A16915fd185.8 KB
    Loading...
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.