Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen-Image-Edit-2511
|
| 4 |
+
tags:
|
| 5 |
+
- qwen-image
|
| 6 |
+
- comfyui
|
| 7 |
+
- int8
|
| 8 |
+
- quantized
|
| 9 |
+
- image-editing
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Qwen-Image-Edit-2511 — INT8 tensorwise (+ConvRot), stock-ComfyUI native
|
| 13 |
+
|
| 14 |
+
Offline INT8 quantization of the `Qwen/Qwen-Image-Edit-2511` transformer, produced
|
| 15 |
+
with [Comfy-Org/comfy-quants](https://github.com/Comfy-Org/comfy-quants)
|
| 16 |
+
(`export-model-int8-tensorwise`). Loads **natively in stock ComfyUI >= v0.27.0**
|
| 17 |
+
(`QUANT_ALGOS["int8_tensorwise"]`, SM >= 7.5 / Turing+) — no custom node required.
|
| 18 |
+
|
| 19 |
+
Transformer-only (for `models/diffusion_models/`, load via `UNETLoader`); pair with
|
| 20 |
+
the usual Qwen-Image-Edit text encoder and VAE.
|
| 21 |
+
|
| 22 |
+
## Quantization contract
|
| 23 |
+
|
| 24 |
+
- 839 quantized Linears (selection mirrors the family's official recipe — same
|
| 25 |
+
membership as the mxfp8/nvfp4 exports; `time_text_embed`/`img_in`/`norm_out`/
|
| 26 |
+
`proj_out`/`txt_in` kept bf16); all 839 ConvRot-rotated (regular Hadamard,
|
| 27 |
+
group 256).
|
| 28 |
+
- Per layer: `int8` weight + `float32 [out,1]` scale + `comfy_quant` marker
|
| 29 |
+
`{"format": "int8_tensorwise", "convrot": true, "convrot_groupsize": 256}`
|
| 30 |
+
(byte-exact to stock ComfyUI's save path).
|
| 31 |
+
- Includes the `__index_timestep_zero__` sentinel required for correct 2511
|
| 32 |
+
reference-image conditioning.
|
| 33 |
+
- Weight SQNR (comfy-kitchen dequant, original basis): ~40.6 dB.
|
| 34 |
+
- Quant math bit-faithful to comfy-kitchen >= 0.2.15.
|