Instructions to use Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit") 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("Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit") model = AutoModelForMultimodalLM.from_pretrained("Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit
- SGLang
How to use Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit with Docker Model Runner:
docker model run hf.co/Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit
Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit
AutoRound 4-bit AWQ quantization of Qwen/Qwen3.6-35B-A3B.
Quantization Summary
- Base model:
Qwen/Qwen3.6-35B-A3B - Quantization: AutoRound -> AWQ
- Scheme:
W4A16 - Bits:
4 - Group size:
128 - Iterations:
500 - Output format:
auto_awq
What Was Quantized
This checkpoint keeps the multimodal stack intact and focuses AWQ quantization on the language-model blocks.
Quantized:
model.language_model.layers
Left unquantized where required for functional runtime compatibility:
lm_headlinear_attn.*self_attn.*on the full-attention layersmlp.shared_expert.*mlp.shared_expert_gate- visual tower and merger modules
- MTP tensors were preserved in
model_extra_tensors.safetensors
Runtime Notes
This checkpoint was validated on a recent vLLM build that loads it through the awq_marlin path.
Environment used for validation:
export VLLM_USE_DEEP_GEMM=0
export VLLM_USE_FLASHINFER_MOE_FP16=1
export VLLM_USE_FLASHINFER_SAMPLER=0
export OMP_NUM_THREADS=4
Example:
from vllm import LLM
llm = LLM(
model="Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit",
trust_remote_code=True,
max_model_len=256,
gpu_memory_utilization=0.95,
max_num_seqs=1,
language_model_only=True,
)
Validation
The checkpoint was loaded and exercised with vLLM 0.19.1.
Observed:
- loads successfully as AWQ (
awq_marlin) - coherent factual generation works
- this model family may still emit reasoning-style
<think>output depending on prompt formatting and runtime settings
Files
The repo includes:
- AWQ weight shards
config.jsonquantization_config.json- tokenizer and processor files
model_extra_tensors.safetensorsfor preserved non-exported tensors
Caveat
This is a mixed FP/AWQ export tailored to Qwen3.6's hybrid-attention MoE architecture. The quantization intentionally does not compress every submodule.
- Downloads last month
- 1,343
Model tree for Chunity/Qwen3.6-35B-A3B-AutoRound-AWQ-4bit
Base model
Qwen/Qwen3.6-35B-A3B