Views
No views yet
llm-compressor workflow, with group-wise low-bit weight compression for the language-side transformer modules.4,155,411 KB2,122,583 KB-48.920%Qwen/Qwen3-VL-2B-InstructQwen3-VLGPTQW4A16llm-compressorllm-compressor, where the compressed checkpoint is produced by reconstructing low-bit weights layer-by-layer using calibration statistics.1recipe = GPTQModifier(
2 ignore=[
3 "re:.*lm_head", "re:.*visual.*"
4 ],
5 block_size=128,
6 dampening_frac=0.01,
7 actorder="static",
8 offload_hessians=False,
9 config_groups={
10 "group_0": {
11 "targets": ["Linear"],
12 "weights": {
13 "num_bits": 4,
14 "type": "int",
15 "symmetric": True,
16 "group_size": 128,
17 "strategy": "group",
18 "dynamic": False,
19 "actorder": None,
20 },
21 },
22 },
23)Linear layers with 4-bit symmetric integer weights and group-wise compression (group_size=128).block_size=128 controls the GPTQ reconstruction granularity during compression.dampening_frac=0.01 is used to stabilize Hessian-based quantization.actorder="static" is enabled for better accuracy recovery with no extra runtime cost.lm_head and visual modules are excluded from quantization in this release.seed=42). Each sample was converted into a multimodal chat-style input containing one image and one paired caption, and then processed into model inputs such as input_ids, attention_mask, pixel_values, and image_grid_thw.1282048VLMEvalKit/vlmeval/config.py:1'Qwen3-VL-2B-Instruct-GPTQ-W4A16': partial(
2 vlm.Qwen3VLChat,
3 model_path='/home/lml/models/Qwen3-VL-2B-Instruct-GPTQ-W4A16-g128-llmcompressor',
4 min_pixels=256 * 28 * 28,
5 max_pixels=1280 * 28 * 28,
6 use_custom_prompt=False,
7 use_vllm=True,
8 temperature=0.7,
9 max_new_tokens=8192,
10 repetition_penalty=1.0,
11 presence_penalty=1.5,
12 top_p=0.8,
13 top_k=20,
14 max_model_len=16384,
15 gpu_utils=0.85,
16 enable_thinking=False,
17)1@article{bai2025qwen3vl,
2 title={Qwen3-VL Technical Report},
3 author={Bai, Shuai and Cai, Yuxuan and Zhu, Keming and others},
4 journal={arXiv preprint arXiv:2511.21631},
5 year={2025}
6}
7
8@inproceedings{frantar2023gptq,
9 title={GPTQ: Accurate Post-Training Quantization for Generative Pre-trained Transformers},
10 author={Frantar, Elias and Ashkboos, Saleh and Hoefler, Torsten and Alistarh, Dan},
11 booktitle={International Conference on Learning Representations (ICLR)},
12 year={2023}
13}
14
15@misc{duan2024vlmevalkit,
16 title={VLMEvalKit: An Open-Source Toolkit for Evaluating Large Vision-Language Models},
17 author={OpenCompass Team},
18 howpublished={\url{https://github.com/open-compass/VLMEvalKit}},
19 year={2024}
20}
21
22@article{young2014image,
23 title={From image descriptions to visual denotations: New similarity metrics for semantic inference over event descriptions},
24 author={Young, Peter and Lai, Alice and Hodosh, Micah and Hockenmaier, Julia},
25 journal={Transactions of the Association for Computational Linguistics},
26 volume={2},
27 pages={67--78},
28 year={2014},
29 publisher={MIT Press}
30}