20.2 GB on disk, ~19.4 GB resident. Fits entirely in 24 GB of VRAM with
room for context, so it runs without offload on an RTX 3090 or 4090.
Built for single-image captioning and prompt generation through ComfyUI's
Generate Text node. It is a full vision-language model: load it with
CLIPLoader, wire an image in, and it describes what it sees.
Why this exists
An INT8 ConvRot build of this model lands around 32 GB. On a 24 GB card that
means streaming weights over PCIe on every forward pass, and generation is
memory-bandwidth-bound — every token re-reads the weights. Dropping to 4-bit
weights is not about disk space; it is about staying resident.
W4A8 gives no compute advantage over INT8. It executes on the same int8 GEMM
path and adds a codebook dequantization step on top. The entire win is that
16.4 GiB of weight traffic per token at ~936 GB/s beats streaming 10 GB over
a ~25 GB/s PCIe link, by roughly an order of magnitude.
Format
asym_w4a8_int8 — ConvRot-rotated int4 weights, a per-tensor Lloyd-Max
codebook, and fp8 group scales, executed on int8 GEMM. Calibration-free.
Each quantized layer carries four tensors:
tensor
dtype
role
weight
int8
packed int4 indices, two per byte
weight_s_rel
fp8_e4m3
per-group scale, one per 16 values
weight_s_channel
fp32
per-output-row scale
weight_codebook
fp32
the 16 quantization levels
Three tiers of scaling — codebook shape, group magnitude, row magnitude —
which is why 4-bit weights hold up here. The codebook is fitted to each
tensor's actual distribution rather than spacing levels uniformly, so the
packed values are indices into a learned table, not magnitudes.
ConvRot applies a group-wise Hadamard rotation before quantization, spreading
outliers across the group so no single large weight dominates its scale.
Group size 256 for the rotation, 16 for the codebook.
Precision plan
Not everything is quantized. 387 tensors across layers 1–62 go to 4-bit;
everything below stays BF16 for a specific reason.
kept at BF16
size
why
lm_head
2.54 GB
produces logits over 248,320 tokens. This is a text generator, so 4-bit noise here flips token choices directly.
embed_tokens
2.54 GB
input side; error propagates through every layer downstream.
vision tower
0.92 GB
linear_fc2 has in_features 4304 = 16 × 269, and 269 is prime — no usable ConvRot group size divides it. The choice is BF16 or non-rotated int8, and non-rotated int8 is the weakest option available. Comfy-Org's official INT8 builds keep the whole tower BF16 for the same reason.
layers 0 and 63
1.51 GB
first and last decoder blocks.
in_proj_a, in_proj_b
22 MB
Gated DeltaNet decay and beta gates, the analogue of Mamba's A and dt. Error here compounds through the recurrent state instead of staying local to one matmul.
conv1d, A_log, dt_bias, all norms
90 MB
1-D and 3-D parameters; quantizing them buys nothing.
mtp.*
0.79 GB
see below.
On the MTP head
The multi-token-prediction head is retained at BF16 and costs zero VRAM —
ComfyUI has no speculative decoding path, so its Qwen3.5 implementation never
constructs those modules and the keys are dropped at load. It is kept because
Comfy-Org's reference Qwen3.5 files keep it, and because MTP is BF16-or-nothing:
quantized MTP weights collapse draft acceptance from the 79–85% range to
5–11%. Should ComfyUI ever gain speculative decoding, the weights are here and
usable. Until then it is 0.79 GB of disk and nothing else.
Requirements
ComfyUI ≥ 0.31.0 (w4a8 loader support)
comfy-kitchen ≥ 0.2.31 with AsymW4A8Int8Layout
PyTorch built against CUDA 13.0+
Compute capability ≥ 8.0 (Ampere or newer). INT8 tensor cores are the
execution path, so 30-series and up.
Usage
Drop the .safetensors into ComfyUI/models/text_encoders/.
CLIPLoader → select this file. The type dropdown is ignored; detection
is shape-based and resolves to QWEN35_27B automatically.
serialization fidelity compares this file's dequantized weights against
comfy-kitchen re-quantizing the same source tensor. Near-zero means the file
faithfully reproduces what the library itself produces — no scale or codebook
tensor silently dropped, which is a failure mode that loads without error and
computes wrong.
Note that weight_correction is absent by design: comfy-kitchen 0.2.31 does
not emit a correction tensor in codebook mode, so correction=None at load is
correct rather than a missing field.
Reproducing
Converted with a purpose-built script that reconciles the packed weight by
tensor identity rather than by naming convention, holds the DeltaNet gates and
edge layers out of quantization, and audits the result:
--seed 42 pins the codebook fitting, which samples, so rebuilds are
comparable.
Safety and user responsibility
This model has had its safety alignment removed. The upstream
AEON-7
release applied directional ablation (abliteration) to suppress refusal
behaviour. This repository contributes quantization only — no alignment,
guardrails, or filtering were added, and none were removed here either.
Consequences you are accepting by using it:
It will not refuse. It will attempt to answer requests that the original
Qwen3.8-27B declines, including harmful, illegal, or dangerous ones. There is
no residual safety layer to catch anything.
Ablation degrades more than refusals. Suppressing refusal directions
perturbs the model's weights generally. Expect some loss of judgment,
calibration, and factual reliability relative to the original, in ways that
are not confined to safety-adjacent topics.
4-bit quantization compounds this. The precision plan above minimizes
it, but this is a lossy artifact of a lossy artifact.
Not suitable for unsupervised or public-facing deployment. If you expose
this to users who are not you, you need your own moderation layer. It has none.
You are responsible for what you generate. Output is your
responsibility, not the model's, not this repository's, and not any upstream
author's. You are responsible for compliance with applicable law and with the
licenses of all upstream artifacts.
Quantization format: asym_w4a8_int8 from
comfy-kitchen, by Comfy-Org.
This is an unofficial, community-produced derivative. It is not endorsed
by, affiliated with, or supported by the Qwen team, Alibaba Cloud, AEON-7, or Comfy-Org. The behaviour of this model does not reflect the
intentions, standards, or positions of any of them. Do not report issues with
this model to those projects — its modifications are not theirs.
Please respect the license terms of all upstream artifacts. Verify the
license field above against both parent repositories before redistributing.