This isn't your average quantization. We used the GPTQ-Pro framework combined with the FOEM (First-Order Error Metric) approach. This advanced technique carefully preserves the most critical weights during the 4-bit compression process by evaluating the exact impact of quantization on the model's loss landscape.
1CUDA_VISIBLE_DEVICES=0,1 vllm serve groxaxo/Qwen3.6-27B-GPTQ-Pro-4Bit \
2 --dtype float16 \
3 --quantization gptq_marlin \
4 --disable-custom-all-reduce \
5 --tensor-parallel-size 2 \
6 --max-model-len 132144 \
7 --reasoning-parser qwen3 \
8 --enable-auto-tool-choice \
9 --tool-call-parser qwen3_coder \
10 --gpu-memory-utilization 0.92
1CUDA_VISIBLE_DEVICES=0,1 vllm serve /path/to/Qwen3.6-27B-GPTQ-Pro-4Bit \
2 --dtype float16 \
3 --quantization gptq_marlin \
4 --disable-custom-all-reduce \
5 --tensor-parallel-size 2 \
6 --max-model-len 132144
1from gptqmodel import BACKEND, GPTQModel
2
3model = GPTQModel.load(
4 "groxaxo/Qwen3.6-27B-GPTQ-Pro-4Bit",
5 backend=BACKEND.GPTQ_MARLIN,
6 device="cuda:0",
7)
8
9print(model.generate("Write a short deployment checklist.", max_new_tokens=64)[0])