How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-text-to-text", model="Billyjack3791/Qwen3.6-27B-EXL3-5.0bpw")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("Billyjack3791/Qwen3.6-27B-EXL3-5.0bpw")
model = AutoModelForMultimodalLM.from_pretrained("Billyjack3791/Qwen3.6-27B-EXL3-5.0bpw", device_map="auto")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwen3.6-27B-EXL3-5.0bpw

EXL3 quantized version of Qwen/Qwen3.6-27B at 5.0 bits per weight.

Quantization Details

Parameter Value
Source model Qwen/Qwen3.6-27B
Quantization method EXL3
EXL3 version v0.0.43
Bits per weight 5.0
Codebook mul1
Calibration 250 rows x 2048 columns

Hardware Used

Component Specification
CPU Intel Core i7-9800X @ 3.80GHz (8C/16T)
Motherboard ASUS WS X299 SAGE
RAM 32GB DDR4-2666
GPU(s) 6x NVIDIA GeForce RTX 3070 8GB
Storage MSI M480 PRO 1TB NVMe
OS Ubuntu 24.04.4 LTS
Driver NVIDIA 580.173.02

Orchestration: Quantization jobs were orchestrated from a dedicated control node (Intel i9-7920X, 62GB RAM, Quadro P5000 + RTX 3070 Ti + 2x RTX 3080) over a dedicated 10Gb interconnect to the compute node above.

File Sizes

File Size
model-00001-of-00003.safetensors 8.51 GB
model-00002-of-00003.safetensors 8.59 GB
model-00003-of-00003.safetensors 2.80 GB
Total 19.93 GB

Notes

  • Custom quantization not available from other sources at this precision
  • 5bpw offers a strong quality-to-size ratio for this model
  • Clean quantization with no hardware errors
Downloads last month
13
Safetensors
Model size
10B params
Tensor type
BF16
·
F16
·
I16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support