Views
No views yet
| Weights | INT4, per-group, group size 128, symmetric, static |
| Activations | not quantized (BF16) |
| Algorithm | AWQ (Activation-aware Weight Quantization) |
| Quark scheme | int4_wo_128 |
| Expert path | unfused |
| Export | HF safetensors, real_quantized |
| Size | 24 GB (from 67 GB BF16) |
qwen3_5_moe recipe quantizes the routed MoE experts only — 30,720
linears (40 layers x 256 experts x 3 projections). 462 modules are excluded and remain
BF16:lm_head, model.visual.* (vision tower), mtp.*, *mlp.gate, *shared_expert_gate*, *.linear_attn.*, *.self_attn.*, *.shared_expert.*1python examples/torch/language_modeling/llm_ptq/quantize_quark.py \
2 --model_dir Qwen/Qwen3.6-35B-A3B \
3 --device cuda --data_type bfloat16 --model_attn_implementation eager \
4 --dataset pileval --num_calib_data 128 --seq_len 512 --batch_size 1 \
5 --quant_scheme int4_wo_128 \
6 --quant_algo awq --quant_algo_config_file awq <config.json> \
7 --model_export hf_format --export_weight_format real_quantized \
8 --output_dir <out> --skip_evaluation0.13+50dac6e159a.pileval (mit-han-lab/pile-val-backup), 128 samples, seq_len=512.MODEL_ARCH.LLAMA and supports asymmetric INT4 per-group-32 weight-only on Llama2/Llama3, while this model is Qwen3_5MoeForConditionalGeneration. Safetensors is published instead.