lightx2v commited on
Commit
b02d199
·
verified ·
1 Parent(s): f450d27

Upload folder using huggingface_hub

Browse files
Qwen25-VL-4bit-GPTQ/added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
Qwen25-VL-4bit-GPTQ/chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
Qwen25-VL-4bit-GPTQ/config.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "dtype": "float32",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "image_token_id": 151655,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 18944,
14
+ "max_position_embeddings": 128000,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen2_5_vl",
17
+ "num_attention_heads": 28,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 4,
20
+ "quantization_config": {
21
+ "bits": 4,
22
+ "checkpoint_format": "gptq",
23
+ "desc_act": false,
24
+ "format": "gptq",
25
+ "group_size": 128,
26
+ "lm_head": false,
27
+ "meta": {
28
+ "act_group_aware": true,
29
+ "damp_auto_increment": 0.01,
30
+ "damp_percent": 0.1,
31
+ "failsafe": {
32
+ "smooth": {
33
+ "group_size_threshold": 128,
34
+ "k": 2.75,
35
+ "type": "mad"
36
+ },
37
+ "strategy": "rtn",
38
+ "threshold": "0.5%"
39
+ },
40
+ "gptaq": false,
41
+ "gptaq_alpha": 0.25,
42
+ "gptaq_memory_device": "auto",
43
+ "hessian_chunk_bytes": null,
44
+ "hessian_chunk_size": null,
45
+ "hessian_use_bfloat16_staging": false,
46
+ "mock_quantization": false,
47
+ "mse": 0.0,
48
+ "offload_to_disk": true,
49
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
50
+ "pack_impl": "cpu",
51
+ "quantizer": [
52
+ "gptqmodel:5.7.0-dev"
53
+ ],
54
+ "static_groups": false,
55
+ "true_sequential": true,
56
+ "uri": "https://github.com/modelcloud/gptqmodel",
57
+ "vram_strategy": "exclusive"
58
+ },
59
+ "pack_dtype": "int32",
60
+ "quant_method": "gptq",
61
+ "sym": false
62
+ },
63
+ "rms_norm_eps": 1e-06,
64
+ "rope_scaling": {
65
+ "mrope_section": [
66
+ 16,
67
+ 24,
68
+ 24
69
+ ],
70
+ "rope_type": "default",
71
+ "type": "default"
72
+ },
73
+ "rope_theta": 1000000.0,
74
+ "sliding_window": 32768,
75
+ "text_config": {
76
+ "_name_or_path": "/data/nvme0/gushiqiao/models/code/model",
77
+ "architectures": [
78
+ "Qwen2_5_VLForConditionalGeneration"
79
+ ],
80
+ "attention_dropout": 0.0,
81
+ "bos_token_id": 151643,
82
+ "dtype": "float32",
83
+ "eos_token_id": 151645,
84
+ "hidden_act": "silu",
85
+ "hidden_size": 3584,
86
+ "initializer_range": 0.02,
87
+ "intermediate_size": 18944,
88
+ "layer_types": [
89
+ "full_attention",
90
+ "full_attention",
91
+ "full_attention",
92
+ "full_attention",
93
+ "full_attention",
94
+ "full_attention",
95
+ "full_attention",
96
+ "full_attention",
97
+ "full_attention",
98
+ "full_attention",
99
+ "full_attention",
100
+ "full_attention",
101
+ "full_attention",
102
+ "full_attention",
103
+ "full_attention",
104
+ "full_attention",
105
+ "full_attention",
106
+ "full_attention",
107
+ "full_attention",
108
+ "full_attention",
109
+ "full_attention",
110
+ "full_attention",
111
+ "full_attention",
112
+ "full_attention",
113
+ "full_attention",
114
+ "full_attention",
115
+ "full_attention",
116
+ "full_attention"
117
+ ],
118
+ "max_position_embeddings": 128000,
119
+ "max_window_layers": 28,
120
+ "model_type": "qwen2_5_vl_text",
121
+ "num_attention_heads": 28,
122
+ "num_hidden_layers": 28,
123
+ "num_key_value_heads": 4,
124
+ "rms_norm_eps": 1e-06,
125
+ "rope_scaling": {
126
+ "mrope_section": [
127
+ 16,
128
+ 24,
129
+ 24
130
+ ],
131
+ "rope_type": "default",
132
+ "type": "default"
133
+ },
134
+ "rope_theta": 1000000.0,
135
+ "sliding_window": null,
136
+ "use_cache": true,
137
+ "use_sliding_window": false,
138
+ "vision_token_id": 151654,
139
+ "vocab_size": 152064
140
+ },
141
+ "tie_word_embeddings": false,
142
+ "transformers_version": "4.57.3",
143
+ "use_cache": true,
144
+ "use_sliding_window": false,
145
+ "video_token_id": 151656,
146
+ "vision_config": {
147
+ "depth": 32,
148
+ "dtype": "float32",
149
+ "fullatt_block_indexes": [
150
+ 7,
151
+ 15,
152
+ 23,
153
+ 31
154
+ ],
155
+ "hidden_act": "silu",
156
+ "hidden_size": 1280,
157
+ "in_channels": 3,
158
+ "in_chans": 3,
159
+ "initializer_range": 0.02,
160
+ "intermediate_size": 3420,
161
+ "model_type": "qwen2_5_vl",
162
+ "num_heads": 16,
163
+ "out_hidden_size": 3584,
164
+ "patch_size": 14,
165
+ "spatial_merge_size": 2,
166
+ "spatial_patch_size": 14,
167
+ "temporal_patch_size": 2,
168
+ "tokens_per_second": 2,
169
+ "window_size": 112
170
+ },
171
+ "vision_end_token_id": 151653,
172
+ "vision_start_token_id": 151652,
173
+ "vision_token_id": 151654,
174
+ "vocab_size": 152064
175
+ }
Qwen25-VL-4bit-GPTQ/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "repetition_penalty": 1.05,
9
+ "temperature": 0.1,
10
+ "top_k": 1,
11
+ "top_p": 0.001,
12
+ "transformers_version": "4.57.3"
13
+ }
Qwen25-VL-4bit-GPTQ/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
Qwen25-VL-4bit-GPTQ/model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
Qwen25-VL-4bit-GPTQ/preprocessor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "disable_grouping": null,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_pad": null,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_processor_type": "Qwen2VLImageProcessorFast",
19
+ "image_std": [
20
+ 0.26862954,
21
+ 0.26130258,
22
+ 0.27577711
23
+ ],
24
+ "input_data_format": null,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_pixels": 3136,
28
+ "pad_size": null,
29
+ "patch_size": 14,
30
+ "processor_class": "Qwen2VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "longest_edge": 12845056,
36
+ "shortest_edge": 3136
37
+ },
38
+ "temporal_patch_size": 2
39
+ }
Qwen25-VL-4bit-GPTQ/quant_log.csv ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.q_proj,0.0000156653,0.10000,2.083
3
+ 0,self_attn.k_proj,0.0000032556,0.10000,2.094
4
+ 0,self_attn.v_proj,0.0000005451,0.10000,2.096
5
+ 0,self_attn.o_proj,0.0000008700,0.10000,0.596
6
+ 0,mlp.gate_proj,0.0000435553,0.10000,1.181
7
+ 0,mlp.up_proj,0.0000308079,0.10000,1.186
8
+ 0,mlp.down_proj,0.0000036231,0.10000,3.570
9
+ 1,self_attn.q_proj,0.0000096145,0.10000,2.272
10
+ 1,self_attn.v_proj,0.0000009271,0.10000,2.302
11
+ 1,self_attn.k_proj,0.0000025740,0.10000,2.312
12
+ 1,self_attn.o_proj,0.0000002494,0.10000,0.587
13
+ 1,mlp.gate_proj,0.0008104122,0.10000,1.194
14
+ 1,mlp.up_proj,0.0005772593,0.10000,1.199
15
+ 1,mlp.down_proj,0.0000024426,0.10000,3.619
16
+ 2,self_attn.q_proj,0.0000300082,0.10000,2.124
17
+ 2,self_attn.k_proj,0.0000076323,0.10000,2.135
18
+ 2,self_attn.v_proj,0.0000016731,0.10000,2.138
19
+ 2,self_attn.o_proj,0.0000004566,0.10000,0.589
20
+ 2,mlp.up_proj,0.0005655596,0.10000,1.200
21
+ 2,mlp.gate_proj,0.0008204051,0.10000,1.206
22
+ 2,mlp.down_proj,0.0000034888,0.10000,3.573
23
+ 3,self_attn.v_proj,0.0000023768,0.10000,2.066
24
+ 3,self_attn.q_proj,0.0000321667,0.10000,2.071
25
+ 3,self_attn.k_proj,0.0000077473,0.10000,2.076
26
+ 3,self_attn.o_proj,0.0000013562,0.10000,0.591
27
+ 3,mlp.gate_proj,0.0013856396,0.10000,1.208
28
+ 3,mlp.up_proj,0.0011071415,0.10000,1.213
29
+ 3,mlp.down_proj,0.0000201999,0.10000,3.568
30
+ 4,self_attn.q_proj,0.0000552769,0.10000,2.068
31
+ 4,self_attn.v_proj,0.0000055460,0.10000,2.085
32
+ 4,self_attn.k_proj,0.0000116454,0.10000,2.089
33
+ 4,self_attn.o_proj,0.0000010820,0.10000,0.596
34
+ 4,mlp.up_proj,0.0008047744,0.10000,1.181
35
+ 4,mlp.gate_proj,0.0011026591,0.10000,1.187
36
+ 4,mlp.down_proj,0.0000091144,0.10000,3.550
37
+ 5,self_attn.q_proj,0.0000541105,0.10000,2.220
38
+ 5,self_attn.v_proj,0.0000053406,0.10000,2.220
39
+ 5,self_attn.k_proj,0.0000105450,0.10000,2.224
40
+ 5,self_attn.o_proj,0.0000009863,0.10000,0.591
41
+ 5,mlp.up_proj,0.0011642066,0.10000,1.197
42
+ 5,mlp.gate_proj,0.0013546876,0.10000,1.205
43
+ 5,mlp.down_proj,0.0000043981,0.10000,3.593
44
+ 6,self_attn.q_proj,0.0000342204,0.10000,2.073
45
+ 6,self_attn.v_proj,0.0000037009,0.10000,2.089
46
+ 6,self_attn.k_proj,0.0000067855,0.10000,2.092
47
+ 6,self_attn.o_proj,0.0000017441,0.10000,0.589
48
+ 6,mlp.up_proj,0.0001849451,0.10000,1.194
49
+ 6,mlp.gate_proj,0.0002499141,0.10000,1.194
50
+ 6,mlp.down_proj,0.0000109457,0.10000,3.549
51
+ 7,self_attn.v_proj,0.0000060006,0.10000,2.174
52
+ 7,self_attn.q_proj,0.0000350479,0.10000,2.181
53
+ 7,self_attn.k_proj,0.0000057774,0.10000,2.184
54
+ 7,self_attn.o_proj,0.0000031796,0.10000,0.589
55
+ 7,mlp.up_proj,0.0001335227,0.10000,1.206
56
+ 7,mlp.gate_proj,0.0001452405,0.10000,1.206
57
+ 7,mlp.down_proj,0.0000178218,0.10000,3.530
58
+ 8,self_attn.q_proj,0.0000540192,0.10000,2.123
59
+ 8,self_attn.k_proj,0.0000110568,0.10000,2.137
60
+ 8,self_attn.v_proj,0.0000055582,0.10000,2.139
61
+ 8,self_attn.o_proj,0.0000041908,0.10000,0.589
62
+ 8,mlp.gate_proj,0.0001565939,0.10000,1.199
63
+ 8,mlp.up_proj,0.0001524405,0.10000,1.202
64
+ 8,mlp.down_proj,0.0000192921,0.10000,3.578
65
+ 9,self_attn.q_proj,0.0000465290,0.10000,2.145
66
+ 9,self_attn.v_proj,0.0000078169,0.10000,2.147
67
+ 9,self_attn.k_proj,0.0000080876,0.10000,2.151
68
+ 9,self_attn.o_proj,0.0000069479,0.10000,0.618
69
+ 9,mlp.gate_proj,0.0005196439,0.10000,1.216
70
+ 9,mlp.up_proj,0.0003377999,0.10000,1.219
71
+ 9,mlp.down_proj,0.0000234840,0.10000,3.559
72
+ 10,self_attn.q_proj,0.0000447259,0.10000,2.092
73
+ 10,self_attn.v_proj,0.0000055774,0.10000,2.113
74
+ 10,self_attn.k_proj,0.0000085554,0.10000,2.114
75
+ 10,self_attn.o_proj,0.0000042167,0.10000,0.587
76
+ 10,mlp.gate_proj,0.0001891744,0.10000,1.196
77
+ 10,mlp.up_proj,0.0001727057,0.10000,1.198
78
+ 10,mlp.down_proj,0.0000204545,0.10000,3.594
79
+ 11,self_attn.k_proj,0.0000104406,0.10000,2.091
80
+ 11,self_attn.q_proj,0.0000504052,0.10000,2.101
81
+ 11,self_attn.v_proj,0.0000049300,0.10000,2.104
82
+ 11,self_attn.o_proj,0.0000057882,0.10000,0.592
83
+ 11,mlp.gate_proj,0.0001683877,0.10000,1.228
84
+ 11,mlp.up_proj,0.0001652096,0.10000,1.231
85
+ 11,mlp.down_proj,0.0000196861,0.10000,3.563
86
+ 12,self_attn.q_proj,0.0000550930,0.10000,2.122
87
+ 12,self_attn.v_proj,0.0000062055,0.10000,2.139
88
+ 12,self_attn.k_proj,0.0000111796,0.10000,2.143
89
+ 12,self_attn.o_proj,0.0000068578,0.10000,0.585
90
+ 12,mlp.gate_proj,0.0001639272,0.10000,1.187
91
+ 12,mlp.up_proj,0.0001695412,0.10000,1.190
92
+ 12,mlp.down_proj,0.0000214752,0.10000,3.629
93
+ 13,self_attn.q_proj,0.0000566915,0.10000,2.093
94
+ 13,self_attn.v_proj,0.0000073534,0.10000,2.096
95
+ 13,self_attn.k_proj,0.0000102786,0.10000,2.103
96
+ 13,self_attn.o_proj,0.0000092767,0.10000,0.588
97
+ 13,mlp.gate_proj,0.0001736244,0.10000,1.184
98
+ 13,mlp.up_proj,0.0001677590,0.10000,1.187
99
+ 13,mlp.down_proj,0.0000210207,0.10000,3.562
100
+ 14,self_attn.q_proj,0.0000750175,0.10000,2.163
101
+ 14,self_attn.v_proj,0.0000076160,0.10000,2.175
102
+ 14,self_attn.k_proj,0.0000138165,0.10000,2.179
103
+ 14,self_attn.o_proj,0.0000093313,0.10000,0.589
104
+ 14,mlp.up_proj,0.0001827195,0.10000,1.219
105
+ 14,mlp.gate_proj,0.0001781230,0.10000,1.222
106
+ 14,mlp.down_proj,0.0000232633,0.10000,3.630
107
+ 15,self_attn.q_proj,0.0000644674,0.10000,2.133
108
+ 15,self_attn.k_proj,0.0000126894,0.10000,2.139
109
+ 15,self_attn.v_proj,0.0000067925,0.10000,2.140
110
+ 15,self_attn.o_proj,0.0000076798,0.10000,0.592
111
+ 15,mlp.up_proj,0.0001769633,0.10000,1.178
112
+ 15,mlp.gate_proj,0.0001678769,0.10000,1.181
113
+ 15,mlp.down_proj,0.0000247494,0.10000,3.561
114
+ 16,self_attn.q_proj,0.0000667001,0.10000,2.092
115
+ 16,self_attn.v_proj,0.0000090089,0.10000,2.111
116
+ 16,self_attn.k_proj,0.0000117023,0.10000,2.113
117
+ 16,self_attn.o_proj,0.0000114549,0.10000,0.589
118
+ 16,mlp.up_proj,0.0001811838,0.10000,1.178
119
+ 16,mlp.gate_proj,0.0001722064,0.10000,1.180
120
+ 16,mlp.down_proj,0.0000223780,0.10000,3.583
121
+ 17,self_attn.v_proj,0.0000100828,0.10000,2.238
122
+ 17,self_attn.k_proj,0.0000123868,0.10000,2.259
123
+ 17,self_attn.q_proj,0.0000762568,0.10000,2.264
124
+ 17,self_attn.o_proj,0.0000079355,0.10000,0.594
125
+ 17,mlp.up_proj,0.0002123742,0.10000,1.371
126
+ 17,mlp.gate_proj,0.0001976952,0.10000,1.374
127
+ 17,mlp.down_proj,0.0000311225,0.10000,3.594
128
+ 18,self_attn.q_proj,0.0000607342,0.10000,2.109
129
+ 18,self_attn.k_proj,0.0000096124,0.10000,2.121
130
+ 18,self_attn.v_proj,0.0000108709,0.10000,2.130
131
+ 18,self_attn.o_proj,0.0000120994,0.10000,0.596
132
+ 18,mlp.gate_proj,0.0002071995,0.10000,1.195
133
+ 18,mlp.up_proj,0.0002252296,0.10000,1.199
134
+ 18,mlp.down_proj,0.0000362348,0.10000,3.553
135
+ 19,self_attn.k_proj,0.0000095172,0.10000,2.110
136
+ 19,self_attn.q_proj,0.0000709936,0.10000,2.114
137
+ 19,self_attn.v_proj,0.0000133349,0.10000,2.115
138
+ 19,self_attn.o_proj,0.0000142899,0.10000,0.590
139
+ 19,mlp.gate_proj,0.0002420128,0.10000,1.201
140
+ 19,mlp.up_proj,0.0002512523,0.10000,1.204
141
+ 19,mlp.down_proj,0.0000400181,0.10000,3.529
142
+ 20,self_attn.k_proj,0.0000105798,0.10000,2.128
143
+ 20,self_attn.v_proj,0.0000149335,0.10000,2.135
144
+ 20,self_attn.q_proj,0.0000714233,0.10000,2.139
145
+ 20,self_attn.o_proj,0.0000085477,0.10000,0.586
146
+ 20,mlp.up_proj,0.0003235113,0.10000,1.247
147
+ 20,mlp.gate_proj,0.0003114748,0.10000,1.252
148
+ 20,mlp.down_proj,0.0000751625,0.10000,3.538
149
+ 21,self_attn.q_proj,0.0000870349,0.10000,2.168
150
+ 21,self_attn.v_proj,0.0000235002,0.10000,2.177
151
+ 21,self_attn.k_proj,0.0000107961,0.10000,2.181
152
+ 21,self_attn.o_proj,0.0000312681,0.10000,0.588
153
+ 21,mlp.gate_proj,0.0004483905,0.10000,1.200
154
+ 21,mlp.up_proj,0.0004428911,0.10000,1.202
155
+ 21,mlp.down_proj,0.0001190182,0.10000,3.628
156
+ 22,self_attn.q_proj,0.0001302130,0.10000,2.126
157
+ 22,self_attn.k_proj,0.0000150554,0.10000,2.130
158
+ 22,self_attn.v_proj,0.0000373550,0.10000,2.138
159
+ 22,self_attn.o_proj,0.0000171763,0.10000,0.592
160
+ 22,mlp.up_proj,0.0006391320,0.10000,1.196
161
+ 22,mlp.gate_proj,0.0006453207,0.10000,1.199
162
+ 22,mlp.down_proj,0.0002066607,0.10000,3.603
163
+ 23,self_attn.q_proj,0.0001625592,0.10000,2.178
164
+ 23,self_attn.v_proj,0.0000508609,0.10000,2.185
165
+ 23,self_attn.k_proj,0.0000197490,0.10000,2.188
166
+ 23,self_attn.o_proj,0.0000418422,0.10000,0.590
167
+ 23,mlp.up_proj,0.0009001281,0.10000,1.205
168
+ 23,mlp.gate_proj,0.0009187021,0.10000,1.205
169
+ 23,mlp.down_proj,0.0002839736,0.10000,3.559
170
+ 24,self_attn.k_proj,0.0000170952,0.10000,2.132
171
+ 24,self_attn.q_proj,0.0001363194,0.10000,2.140
172
+ 24,self_attn.v_proj,0.0000470417,0.10000,2.146
173
+ 24,self_attn.o_proj,0.0000316222,0.10000,0.598
174
+ 24,mlp.gate_proj,0.0009379816,0.10000,1.190
175
+ 24,mlp.up_proj,0.0009908391,0.10000,1.193
176
+ 24,mlp.down_proj,0.0003710463,0.10000,3.578
177
+ 25,self_attn.q_proj,0.0001556033,0.10000,2.113
178
+ 25,self_attn.v_proj,0.0000708320,0.10000,2.118
179
+ 25,self_attn.k_proj,0.0000174687,0.10000,2.121
180
+ 25,self_attn.o_proj,0.0000477942,0.10000,0.607
181
+ 25,mlp.up_proj,0.0012794713,0.10000,1.372
182
+ 25,mlp.gate_proj,0.0011451249,0.10000,1.385
183
+ 25,mlp.down_proj,0.0005603151,0.10000,3.566
184
+ 26,self_attn.q_proj,0.0002087234,0.10000,2.704
185
+ 26,self_attn.k_proj,0.0000243788,0.10000,2.723
186
+ 26,self_attn.v_proj,0.0001307992,0.10000,2.778
187
+ 26,self_attn.o_proj,0.0000752641,0.10000,0.586
188
+ 26,mlp.gate_proj,0.0011720247,0.10000,1.198
189
+ 26,mlp.up_proj,0.0013400149,0.10000,1.200
190
+ 26,mlp.down_proj,0.0010762026,0.10000,3.589
191
+ 27,self_attn.q_proj,0.0003179918,0.10000,2.117
192
+ 27,self_attn.k_proj,0.0000315897,0.10000,2.125
193
+ 27,self_attn.v_proj,0.0001504091,0.10000,2.142
194
+ 27,self_attn.o_proj,0.0001204303,0.10000,0.590
195
+ 27,mlp.up_proj,0.0021019895,0.10000,1.184
196
+ 27,mlp.gate_proj,0.0019921324,0.10000,1.188
197
+ 27,mlp.down_proj,0.0029983620,0.10000,3.615
Qwen25-VL-4bit-GPTQ/quantize_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "desc_act": false,
5
+ "sym": false,
6
+ "lm_head": false,
7
+ "quant_method": "gptq",
8
+ "checkpoint_format": "gptq",
9
+ "pack_dtype": "int32",
10
+ "meta": {
11
+ "quantizer": [
12
+ "gptqmodel:5.7.0-dev"
13
+ ],
14
+ "uri": "https://github.com/modelcloud/gptqmodel",
15
+ "damp_percent": 0.1,
16
+ "damp_auto_increment": 0.01,
17
+ "static_groups": false,
18
+ "true_sequential": true,
19
+ "mse": 0.0,
20
+ "gptaq": false,
21
+ "gptaq_alpha": 0.25,
22
+ "act_group_aware": true,
23
+ "failsafe": {
24
+ "strategy": "rtn",
25
+ "threshold": "0.5%",
26
+ "smooth": {
27
+ "type": "mad",
28
+ "group_size_threshold": 128,
29
+ "k": 2.75
30
+ }
31
+ },
32
+ "gptaq_memory_device": "auto",
33
+ "offload_to_disk": true,
34
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
35
+ "pack_impl": "cpu",
36
+ "mock_quantization": false,
37
+ "hessian_chunk_size": null,
38
+ "hessian_chunk_bytes": null,
39
+ "hessian_use_bfloat16_staging": false,
40
+ "vram_strategy": "exclusive"
41
+ },
42
+ "format": "gptq"
43
+ }
Qwen25-VL-4bit-GPTQ/special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|endoftext|>"
25
+ }
Qwen25-VL-4bit-GPTQ/tokenizer_config.json ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "model_max_length": 131072,
203
+ "pad_token": "<|endoftext|>",
204
+ "split_special_tokens": false,
205
+ "tokenizer_class": "Qwen2TokenizerFast",
206
+ "unk_token": null,
207
+ "_commit_hash": null
208
+ }
Qwen25-VL-4bit-GPTQ/video_preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "do_sample_frames": false,
12
+ "fps": null,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_std": [
19
+ 0.26862954,
20
+ 0.26130258,
21
+ 0.27577711
22
+ ],
23
+ "input_data_format": null,
24
+ "max_frames": 768,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_frames": 4,
28
+ "min_pixels": 3136,
29
+ "num_frames": null,
30
+ "pad_size": null,
31
+ "patch_size": 14,
32
+ "processor_class": "Qwen2VLProcessor",
33
+ "resample": 3,
34
+ "rescale_factor": 0.00392156862745098,
35
+ "return_metadata": false,
36
+ "size": {
37
+ "longest_edge": 12845056,
38
+ "shortest_edge": 3136
39
+ },
40
+ "temporal_patch_size": 2,
41
+ "video_metadata": null,
42
+ "video_processor_type": "Qwen2VLVideoProcessor"
43
+ }