Views
No views yet
llm-compressor workflow, with group_size=128 and observer="mse".4,155,411 KB2,720,327 KB-34.535%Qwen/Qwen3-VL-2B-InstructQwen3-VLAWQW4A16llm-compressor1recipe = AWQModifier(
2 ignore=[
3 "re:.*lm_head", "re:.*visual.*"
4 ],
5 duo_scaling=False,
6 config_groups={
7 "group_0": {
8 "targets": ["Linear"],
9 "weights": {
10 "num_bits": 4,
11 "type": "int",
12 "symmetric": True,
13 "group_size": 128,
14 "strategy": "group",
15 "dynamic": False,
16 "actorder": None,
17 "observer": "mse",
18 },
19 },
20 },
21)lm_head is excluded from quantization.re:.*visual.* are excluded from quantization.seed=42). Each sample was converted into a multimodal chat-style input consisting of:input_ids, attention_mask, pixel_values, and image_grid_thwllm-compressor one-shot workflow.1282048VLMEvalKit/vlmeval/config.py:1"Qwen3-VL-2B-Instruct-AWQ-W4A16": partial(
2 vlm.Qwen3VLChat,
3 model_path="MLliu6/Qwen3-VL-2B-Instruct-AWQ-W4A16",
4 use_custom_prompt=False,
5 use_vllm=True,
6 temperature=0.7,
7 max_new_tokens=8192,
8 repetition_penalty=1.0,
9 presence_penalty=1.5,
10 top_p=0.8,
11 top_k=20,
12)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@article{lin2023awq,
9 title={AWQ: Activation-aware Weight Quantization for LLM Compression and Acceleration},
10 author={Lin, Ji and Tang, Jiaming and Tang, Haotian and Yang, Shang and Dang, Xingyu and Han, Song},
11 journal={arXiv preprint arXiv:2306.00978},
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}