Views
No views yet
| File | Size | Format | Use case |
|---|---|---|---|
Huihui-Qwen3-VL-4B-Instruct-abliterated.safetensors | 8.88 GiB | BF16 single safetensors | Maximum fidelity / training / full-precision workflows |
Huihui-Qwen3-VL-4B-Instruct-abliterated-fp8_scaled.safetensors | 5.24 GiB | FP8 (E4M3FN) per-tensor scaled | ComfyUI Qwen3-VL Text Encoder node — recommended |
huihui-ai/Huihui-Qwen3-VL-4B-Instruct-abliterated (apache-2.0)Qwen/Qwen3-VL-4B-Instruct*.safetensors, 8.88 GiB)model-00001-of-00002.safetensors + model-00002-of-00002.safetensors). They were merged into a single safetensors file using the original model.safetensors.index.json mapping. No weights modified.bfloat16*-fp8_scaled.safetensors, 5.24 GiB)float8_e4m3fn for the 252 linear projections of the language model (q/k/v/o_proj + gate/up/down_proj across all layers). Embeddings, layer norms, biases and the entire visual encoder stay in BF16.float8_e4m3fn weights + float32 per-tensor scale + uint8[64] comfy_quant marker (JSON: {"format": "float8_e4m3fn", "full_precision_matrix_mult": false})max(|w|) / 448 (E4M3FN max)qwen3vl_4b_fp8_scaled.safetensors)*-fp8_scaled.safetensors into your ComfyUI models/text_encoders/ directory.Huihui-Qwen3-VL-4B-Instruct-abliterated-fp8_scaled.*.safetensors into models/text_encoders/.huihui-ai/Huihui-Qwen3-VL-4B-Instruct-abliterated has the matching tokenizer, processor and configs. For BF16 inference:1from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
2import torch
3
4model = Qwen3VLForConditionalGeneration.from_pretrained(
5 "ahmed22xa/Huihui-Qwen3-VL-4B-Instruct-abliterated-comfy",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9processor = AutoProcessor.from_pretrained("huihui-ai/Huihui-Qwen3-VL-4B-Instruct-abliterated")transformers.from_pretrained directly — it follows ComfyUI's per-tensor-FP8 layout with comfy_quant markers.Qwen/Qwen3-VL-4B-Instruct).