XReyRobert commited on
Commit
de5bd59
·
verified ·
1 Parent(s): 5bd7724

Upload GPTQ-Pro FOEM 4-bit g128 ns256 v2

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ base_model: Jackrong/Qwopus3.6-27B-v2
4
+ quantized_by: XReyRobert
5
+ private: true
6
+ ---
7
+
8
+ # Qwopus3.6-27B-v2 GPTQ-Pro FOEM 4-bit g128 ns256 v2
9
+
10
+ Private GPTQ-Pro FOEM 4-bit group-size 128 quantization of Jackrong/Qwopus3.6-27B-v2.
11
+
12
+ Quantization recipe:
13
+ - GPTQ-Pro factory profile
14
+ - bits: 4
15
+ - group_size: 128
16
+ - sym: true
17
+ - desc_act: false
18
+ - true_sequential: true
19
+ - mse: 2.0
20
+ - damp_percent: 0.05
21
+ - damp_auto_increment: 0.01
22
+ - FOEM alpha: 0.25
23
+ - FOEM beta: 0.2
24
+ - calibration dataset: Salesforce/wikitext wikitext-2-raw-v1
25
+ - nsamples: 256
26
+ - seqlen: 2048
27
+ - dynamic skips: visual, vision, mtp, lm_head, embed_tokens, norm
28
+
29
+ Validation on RunPod A100 80GB with vLLM 0.18.0:
30
+ - max_model_len: 131072
31
+ - quantization: gptq_marlin
32
+ - kv_cache_dtype: fp8_e5m2
33
+ - text-only mode
34
+ - loaded successfully at 131072 context
35
+ - short completion after warmup: about 64-67 tok/s
36
+ - chat no-thinking after warmup: about 64 tok/s
37
+ - long context check: 130810 prompt tokens, recovered needle zebra-9901 with enable_thinking=false
38
+
39
+ Notes:
40
+ - This artifact is private and experimental.
41
+ - vLLM startup requires ninja in PATH for flashinfer JIT on this environment.
42
+ - For normal chat validation, use chat_template_kwargs enable_thinking=false when no reasoning output is desired.
chat_template.jinja ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_count = namespace(value=0) %}
2
+ {%- set video_count = namespace(value=0) %}
3
+ {%- macro render_content(content, do_vision_count, is_system_content=false) %}
4
+ {%- if content is string %}
5
+ {{- content }}
6
+ {%- elif content is iterable and content is not mapping %}
7
+ {%- for item in content %}
8
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
9
+ {%- if is_system_content %}
10
+ {{- raise_exception('System message cannot contain images.') }}
11
+ {%- endif %}
12
+ {%- if do_vision_count %}
13
+ {%- set image_count.value = image_count.value + 1 %}
14
+ {%- endif %}
15
+ {%- if add_vision_id %}
16
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
17
+ {%- endif %}
18
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
19
+ {%- elif 'video' in item or item.type == 'video' %}
20
+ {%- if is_system_content %}
21
+ {{- raise_exception('System message cannot contain videos.') }}
22
+ {%- endif %}
23
+ {%- if do_vision_count %}
24
+ {%- set video_count.value = video_count.value + 1 %}
25
+ {%- endif %}
26
+ {%- if add_vision_id %}
27
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
28
+ {%- endif %}
29
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
30
+ {%- elif 'text' in item %}
31
+ {{- item.text }}
32
+ {%- else %}
33
+ {{- raise_exception('Unexpected item type in content.') }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- elif content is none or content is undefined %}
37
+ {{- '' }}
38
+ {%- else %}
39
+ {{- raise_exception('Unexpected content type.') }}
40
+ {%- endif %}
41
+ {%- endmacro %}
42
+ {%- if not messages %}
43
+ {{- raise_exception('No messages provided.') }}
44
+ {%- endif %}
45
+ {%- set num_sys = 0 %}
46
+ {%- set merged_system = '' %}
47
+ {%- if messages[0].role == 'system' or messages[0].role == 'developer' %}
48
+ {%- set first = render_content(messages[0].content, false, true)|trim %}
49
+ {%- if messages|length > 1 and (messages[1].role == 'system' or messages[1].role == 'developer') %}
50
+ {%- set second = render_content(messages[1].content, false, true)|trim %}
51
+ {%- set merged_system = first + '\n' + second %}
52
+ {%- set num_sys = 2 %}
53
+ {%- else %}
54
+ {%- set merged_system = first %}
55
+ {%- set num_sys = 1 %}
56
+ {%- endif %}
57
+ {%- endif %}
58
+ {%- if tools and tools is iterable and tools is not mapping %}
59
+ {{- '<|im_start|>system\n' }}
60
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
61
+ {%- for tool in tools %}
62
+ {{- "\n" }}
63
+ {{- tool | tojson }}
64
+ {%- endfor %}
65
+ {{- "\n</tools>" }}
66
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
67
+ {%- if merged_system %}
68
+ {{- '\n\n' + merged_system }}
69
+ {%- endif %}
70
+ {{- '<|im_end|>\n' }}
71
+ {%- else %}
72
+ {%- if merged_system %}
73
+ {{- '<|im_start|>system\n' + merged_system + '<|im_end|>\n' }}
74
+ {%- endif %}
75
+ {%- endif %}
76
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
77
+ {%- for message in messages[::-1] %}
78
+ {%- set index = (messages|length - 1) - loop.index0 %}
79
+ {%- if ns.multi_step_tool and message.role == "user" %}
80
+ {%- set content = render_content(message.content, false)|trim %}
81
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
82
+ {%- set ns.multi_step_tool = false %}
83
+ {%- set ns.last_query_index = index %}
84
+ {%- endif %}
85
+ {%- endif %}
86
+ {%- endfor %}
87
+ {%- for message in messages %}
88
+ {%- if loop.index0 >= num_sys and message.role != "system" and message.role != "developer" %}
89
+ {%- set content = render_content(message.content, true)|trim %}
90
+ {%- if message.role == "user" %}
91
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
92
+ {%- elif message.role == "assistant" %}
93
+ {%- set reasoning_content = '' %}
94
+ {%- if message.reasoning_content is string %}
95
+ {%- set reasoning_content = message.reasoning_content %}
96
+ {%- else %}
97
+ {%- if '</think>' in content %}
98
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
99
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
100
+ {%- endif %}
101
+ {%- endif %}
102
+ {%- set reasoning_content = reasoning_content|trim %}
103
+ {%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}
104
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
105
+ {%- else %}
106
+ {{- '<|im_start|>' + message.role + '\n' + content }}
107
+ {%- endif %}
108
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
109
+ {%- for tool_call in message.tool_calls %}
110
+ {%- if tool_call.function is defined %}
111
+ {%- set tool_call = tool_call.function %}
112
+ {%- endif %}
113
+ {%- if loop.first %}
114
+ {%- if content|trim %}
115
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
116
+ {%- else %}
117
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
118
+ {%- endif %}
119
+ {%- else %}
120
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
121
+ {%- endif %}
122
+ {%- if tool_call.arguments is mapping %}
123
+ {%- for args_name in tool_call.arguments %}
124
+ {%- set args_value = tool_call.arguments[args_name] %}
125
+ {{- '<parameter=' + args_name + '>\n' }}
126
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
127
+ {{- args_value }}
128
+ {{- '\n</parameter>\n' }}
129
+ {%- endfor %}
130
+ {%- endif %}
131
+ {{- '</function>\n</tool_call>' }}
132
+ {%- endfor %}
133
+ {%- endif %}
134
+ {{- '<|im_end|>\n' }}
135
+ {%- elif message.role == "tool" %}
136
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
137
+ {{- '<|im_start|>user' }}
138
+ {%- endif %}
139
+ {{- '\n<tool_response>\n' }}
140
+ {{- content }}
141
+ {{- '\n</tool_response>' }}
142
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
143
+ {{- '<|im_end|>\n' }}
144
+ {%- elif loop.last %}
145
+ {{- '<|im_end|>\n' }}
146
+ {%- endif %}
147
+ {%- endif %}
148
+ {%- endif %}
149
+ {%- endfor %}
150
+ {%- if add_generation_prompt %}
151
+ {{- '<|im_start|>assistant\n' }}
152
+ {%- if enable_thinking is defined and enable_thinking is false %}
153
+ {{- '<think>\n\n</think>\n\n' }}
154
+ {%- else %}
155
+ {{- '<think>\n' }}
156
+ {%- endif %}
157
+ {%- endif %}
158
+ {#- Unsloth fixes - developer role, tool calling #}
config.json ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5ForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": 248044,
6
+ "dtype": "bfloat16",
7
+ "eos_token_id": 248044,
8
+ "image_token_id": 248056,
9
+ "language_model_only": false,
10
+ "model_name": "Unsloth/Qwen3.6-27B",
11
+ "model_type": "qwen3_5",
12
+ "mtp_num_hidden_layers": 1,
13
+ "pad_token_id": 248055,
14
+ "quantization_config": {
15
+ "bits": 4,
16
+ "checkpoint_format": "gptq",
17
+ "desc_act": false,
18
+ "dynamic": {
19
+ "-:.*embed_tokens.*": {},
20
+ "-:.*lm_head.*": {},
21
+ "-:.*mtp.*": {},
22
+ "-:.*norm.*": {},
23
+ "-:.*vision.*": {},
24
+ "-:.*visual.*": {}
25
+ },
26
+ "format": "gptq",
27
+ "group_size": 128,
28
+ "lm_head": false,
29
+ "meta": {
30
+ "act_group_aware": true,
31
+ "activation_weighted_mse": true,
32
+ "auto_forward_data_parallel": true,
33
+ "calibration_dataset": "wikitext",
34
+ "damp_auto_increment": 0.01,
35
+ "damp_percent": 0.05,
36
+ "dense_vram_strategy": "exclusive",
37
+ "dense_vram_strategy_devices": null,
38
+ "fallback": {
39
+ "smooth": {
40
+ "group_size_threshold": 128,
41
+ "maxshrink": 0.9,
42
+ "steps": 32,
43
+ "type": "mse"
44
+ },
45
+ "strategy": "rtn",
46
+ "threshold": "0.5%"
47
+ },
48
+ "foem": {
49
+ "alpha": 0.25,
50
+ "beta": 0.2,
51
+ "device": "auto"
52
+ },
53
+ "gc_mode": "interval",
54
+ "gptaq": null,
55
+ "hessian": {
56
+ "chunk_bytes": null,
57
+ "chunk_size": null,
58
+ "staging_dtype": "float32"
59
+ },
60
+ "mock_quantization": false,
61
+ "moe_vram_strategy": "exclusive",
62
+ "moe_vram_strategy_devices": null,
63
+ "mse": 2.0,
64
+ "nsamples": 256,
65
+ "offload_to_disk": true,
66
+ "offload_to_disk_path": "./gptqmodel_offload/ixgdjlqx-esuvlqbb/",
67
+ "pack_impl": "cpu",
68
+ "quantizer": [
69
+ "gptqmodel:6.1.0-dev"
70
+ ],
71
+ "reference_recipe": "groxaxo/Qwen3.6-27B-GPTQ-Pro-4bit",
72
+ "seqlen": 2048,
73
+ "source_model": "Jackrong/Qwopus3.6-27B-v2",
74
+ "static_groups": false,
75
+ "true_sequential": true,
76
+ "uri": "https://github.com/modelcloud/gptqmodel",
77
+ "wait_for_submodule_finalizers": false
78
+ },
79
+ "method": "gptq",
80
+ "pack_dtype": "int32",
81
+ "quant_method": "gptq",
82
+ "sym": true
83
+ },
84
+ "rope_parameters": {
85
+ "rope_theta": 10000.0,
86
+ "rope_type": "default"
87
+ },
88
+ "text_config": {
89
+ "attention_bias": false,
90
+ "attention_dropout": 0.0,
91
+ "attn_output_gate": true,
92
+ "bos_token_id": 248044,
93
+ "dtype": "bfloat16",
94
+ "eos_token_id": 248044,
95
+ "full_attention_interval": 4,
96
+ "head_dim": 256,
97
+ "hidden_act": "silu",
98
+ "hidden_size": 5120,
99
+ "initializer_range": 0.02,
100
+ "intermediate_size": 17408,
101
+ "layer_types": [
102
+ "linear_attention",
103
+ "linear_attention",
104
+ "linear_attention",
105
+ "full_attention",
106
+ "linear_attention",
107
+ "linear_attention",
108
+ "linear_attention",
109
+ "full_attention",
110
+ "linear_attention",
111
+ "linear_attention",
112
+ "linear_attention",
113
+ "full_attention",
114
+ "linear_attention",
115
+ "linear_attention",
116
+ "linear_attention",
117
+ "full_attention",
118
+ "linear_attention",
119
+ "linear_attention",
120
+ "linear_attention",
121
+ "full_attention",
122
+ "linear_attention",
123
+ "linear_attention",
124
+ "linear_attention",
125
+ "full_attention",
126
+ "linear_attention",
127
+ "linear_attention",
128
+ "linear_attention",
129
+ "full_attention",
130
+ "linear_attention",
131
+ "linear_attention",
132
+ "linear_attention",
133
+ "full_attention",
134
+ "linear_attention",
135
+ "linear_attention",
136
+ "linear_attention",
137
+ "full_attention",
138
+ "linear_attention",
139
+ "linear_attention",
140
+ "linear_attention",
141
+ "full_attention",
142
+ "linear_attention",
143
+ "linear_attention",
144
+ "linear_attention",
145
+ "full_attention",
146
+ "linear_attention",
147
+ "linear_attention",
148
+ "linear_attention",
149
+ "full_attention",
150
+ "linear_attention",
151
+ "linear_attention",
152
+ "linear_attention",
153
+ "full_attention",
154
+ "linear_attention",
155
+ "linear_attention",
156
+ "linear_attention",
157
+ "full_attention",
158
+ "linear_attention",
159
+ "linear_attention",
160
+ "linear_attention",
161
+ "full_attention",
162
+ "linear_attention",
163
+ "linear_attention",
164
+ "linear_attention",
165
+ "full_attention"
166
+ ],
167
+ "linear_conv_kernel_dim": 4,
168
+ "linear_key_head_dim": 128,
169
+ "linear_num_key_heads": 16,
170
+ "linear_num_value_heads": 48,
171
+ "linear_value_head_dim": 128,
172
+ "mamba_ssm_dtype": "float32",
173
+ "max_position_embeddings": 262144,
174
+ "model_type": "qwen3_5_text",
175
+ "mtp_num_hidden_layers": 1,
176
+ "mtp_use_dedicated_embeddings": false,
177
+ "num_attention_heads": 24,
178
+ "num_hidden_layers": 64,
179
+ "num_key_value_heads": 4,
180
+ "output_gate_type": "swish",
181
+ "pad_token_id": 248055,
182
+ "partial_rotary_factor": 0.25,
183
+ "rms_norm_eps": 1e-06,
184
+ "rope_parameters": {
185
+ "mrope_interleaved": true,
186
+ "mrope_section": [
187
+ 11,
188
+ 11,
189
+ 10
190
+ ],
191
+ "partial_rotary_factor": 0.25,
192
+ "rope_theta": 10000000,
193
+ "rope_type": "default"
194
+ },
195
+ "tie_word_embeddings": false,
196
+ "use_cache": true,
197
+ "vocab_size": 248320
198
+ },
199
+ "tie_word_embeddings": false,
200
+ "transformers_version": "5.9.0",
201
+ "unsloth_fixed_mtp": true,
202
+ "unsloth_version": "2026.5.2",
203
+ "use_cache": false,
204
+ "video_token_id": 248057,
205
+ "vision_config": {
206
+ "deepstack_visual_indexes": [],
207
+ "depth": 27,
208
+ "dtype": "bfloat16",
209
+ "hidden_act": "gelu_pytorch_tanh",
210
+ "hidden_size": 1152,
211
+ "in_channels": 3,
212
+ "initializer_range": 0.02,
213
+ "intermediate_size": 4304,
214
+ "model_type": "qwen3_5_vision",
215
+ "num_heads": 16,
216
+ "num_position_embeddings": 2304,
217
+ "out_hidden_size": 5120,
218
+ "patch_size": 16,
219
+ "spatial_merge_size": 2,
220
+ "temporal_patch_size": 2
221
+ },
222
+ "vision_end_token_id": 248054,
223
+ "vision_start_token_id": 248053
224
+ }
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 248044,
4
+ "do_sample": true,
5
+ "eos_token_id": 248044,
6
+ "output_attentions": false,
7
+ "output_hidden_states": false,
8
+ "pad_token_id": 248055,
9
+ "transformers_version": "5.9.0",
10
+ "use_cache": true
11
+ }
model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:028ad551521a430a223ccbfecfcfd0444e9b6fa932dbbc8916f7b18dea0886f5
3
+ size 3516829256
model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19daeef7d6ae382fa36ea6eedb39a3cbbc038ccc0a0cbe912ac9c04ab23f2626
3
+ size 4278206560
model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4338f437b3e85727c46fb8c53e3bd7cb19739489d0b2c7403fd2cc4da3e2e352
3
+ size 4258595144
model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ad3a52f97e92ebdc3bc0c499b89fabae2a2af609054fe2355b00c8ceb62198
3
+ size 4284981464
model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caa2000e8c218c214b6a33c3248ff251fb0628bd8a51e09fdbdc1d4cf89f981e
3
+ size 2371438160
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
processor_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "do_convert_rgb": true,
6
+ "do_normalize": true,
7
+ "do_rescale": true,
8
+ "do_resize": true,
9
+ "image_mean": [
10
+ 0.5,
11
+ 0.5,
12
+ 0.5
13
+ ],
14
+ "image_processor_type": "Qwen2VLImageProcessor",
15
+ "image_std": [
16
+ 0.5,
17
+ 0.5,
18
+ 0.5
19
+ ],
20
+ "merge_size": 2,
21
+ "patch_size": 16,
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 16777216,
26
+ "shortest_edge": 65536
27
+ },
28
+ "temporal_patch_size": 2
29
+ },
30
+ "processor_class": "Qwen3VLProcessor",
31
+ "video_processor": {
32
+ "data_format": "channels_first",
33
+ "default_to_square": true,
34
+ "do_convert_rgb": true,
35
+ "do_normalize": true,
36
+ "do_rescale": true,
37
+ "do_resize": true,
38
+ "do_sample_frames": true,
39
+ "fps": 2,
40
+ "image_mean": [
41
+ 0.5,
42
+ 0.5,
43
+ 0.5
44
+ ],
45
+ "image_std": [
46
+ 0.5,
47
+ 0.5,
48
+ 0.5
49
+ ],
50
+ "max_frames": 768,
51
+ "merge_size": 2,
52
+ "min_frames": 4,
53
+ "patch_size": 16,
54
+ "resample": 3,
55
+ "rescale_factor": 0.00392156862745098,
56
+ "return_metadata": false,
57
+ "size": {
58
+ "longest_edge": 25165824,
59
+ "shortest_edge": 4096
60
+ },
61
+ "temporal_patch_size": 2,
62
+ "video_processor_type": "Qwen3VLVideoProcessor"
63
+ }
64
+ }
quantize_config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "dynamic": {
4
+ "-:.*visual.*": {},
5
+ "-:.*vision.*": {},
6
+ "-:.*mtp.*": {},
7
+ "-:.*lm_head.*": {},
8
+ "-:.*embed_tokens.*": {},
9
+ "-:.*norm.*": {}
10
+ },
11
+ "group_size": 128,
12
+ "desc_act": false,
13
+ "lm_head": false,
14
+ "method": "gptq",
15
+ "quant_method": "gptq",
16
+ "format": "gptq",
17
+ "checkpoint_format": "gptq",
18
+ "pack_dtype": "int32",
19
+ "meta": {
20
+ "act_group_aware": true,
21
+ "activation_weighted_mse": true,
22
+ "damp_auto_increment": 0.01,
23
+ "damp_percent": 0.05,
24
+ "fallback": {
25
+ "strategy": "rtn",
26
+ "threshold": "0.5%",
27
+ "smooth": {
28
+ "type": "mse",
29
+ "group_size_threshold": 128,
30
+ "steps": 32,
31
+ "maxshrink": 0.9
32
+ }
33
+ },
34
+ "foem": {
35
+ "alpha": 0.25,
36
+ "beta": 0.2,
37
+ "device": "auto"
38
+ },
39
+ "mse": 2.0,
40
+ "pack_impl": "cpu",
41
+ "reference_recipe": "groxaxo/Qwen3.6-27B-GPTQ-Pro-4bit",
42
+ "source_model": "Jackrong/Qwopus3.6-27B-v2",
43
+ "calibration_dataset": "wikitext",
44
+ "nsamples": 256,
45
+ "seqlen": 2048,
46
+ "offload_to_disk": true,
47
+ "offload_to_disk_path": "./gptqmodel_offload/ixgdjlqx-esuvlqbb/",
48
+ "quantizer": [
49
+ "gptqmodel:6.1.0-dev"
50
+ ],
51
+ "uri": "https://github.com/modelcloud/gptqmodel",
52
+ "static_groups": false,
53
+ "true_sequential": true,
54
+ "gptaq": null,
55
+ "gc_mode": "interval",
56
+ "wait_for_submodule_finalizers": false,
57
+ "auto_forward_data_parallel": true,
58
+ "dense_vram_strategy": "exclusive",
59
+ "dense_vram_strategy_devices": null,
60
+ "moe_vram_strategy": "exclusive",
61
+ "moe_vram_strategy_devices": null,
62
+ "mock_quantization": false,
63
+ "hessian": {
64
+ "chunk_size": null,
65
+ "chunk_bytes": null,
66
+ "staging_dtype": "float32"
67
+ }
68
+ },
69
+ "sym": true
70
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
tokenizer_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": true,
13
+ "local_files_only": false,
14
+ "model_max_length": 262144,
15
+ "model_specific_special_tokens": {
16
+ "audio_bos_token": "<|audio_start|>",
17
+ "audio_eos_token": "<|audio_end|>",
18
+ "audio_token": "<|audio_pad|>",
19
+ "image_token": "<|image_pad|>",
20
+ "video_token": "<|video_pad|>",
21
+ "vision_bos_token": "<|vision_start|>",
22
+ "vision_eos_token": "<|vision_end|>"
23
+ },
24
+ "pad_token": "<|vision_pad|>",
25
+ "padding_side": "left",
26
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
27
+ "processor_class": "Qwen3VLProcessor",
28
+ "split_special_tokens": false,
29
+ "tokenizer_class": "Qwen2TokenizerFast",
30
+ "unk_token": null,
31
+ "video_token": "<|video_pad|>",
32
+ "vision_bos_token": "<|vision_start|>",
33
+ "vision_eos_token": "<|vision_end|>",
34
+ "_commit_hash": null,
35
+ "pad_token_id": 248055
36
+ }