littlebird13 commited on
Commit
33d15c5
·
verified ·
1 Parent(s): 4ad8c0c

Add files using upload-large-folder tool

Browse files
chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n\\n' }}\n {%- endif %}\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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- for message in messages %}\n {%- if message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content_item in message.content %}\n {%- if 'text' in content_item %}\n {{- content_item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and message.content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n"
3
+ }
config.json ADDED
@@ -0,0 +1,418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3VLMoeForConditionalGeneration"
4
+ ],
5
+ "image_token_id": 151655,
6
+ "model_type": "qwen3_vl_moe",
7
+ "text_config": {
8
+ "attention_bias": false,
9
+ "attention_dropout": 0.0,
10
+ "bos_token_id": 151643,
11
+ "decoder_sparse_step": 1,
12
+ "dtype": "bfloat16",
13
+ "eos_token_id": 151645,
14
+ "head_dim": 128,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 4096,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 12288,
19
+ "max_position_embeddings": 262144,
20
+ "mlp_only_layers": [],
21
+ "model_type": "qwen3_vl_moe_text",
22
+ "moe_intermediate_size": 1536,
23
+ "norm_topk_prob": true,
24
+ "num_attention_heads": 64,
25
+ "num_experts": 128,
26
+ "num_experts_per_tok": 8,
27
+ "num_hidden_layers": 94,
28
+ "num_key_value_heads": 4,
29
+ "rms_norm_eps": 1e-06,
30
+ "rope_scaling": {
31
+ "mrope_interleaved": true,
32
+ "mrope_section": [
33
+ 24,
34
+ 20,
35
+ 20
36
+ ],
37
+ "rope_type": "default"
38
+ },
39
+ "rope_theta": 5000000,
40
+ "use_cache": true,
41
+ "vocab_size": 151936
42
+ },
43
+ "tie_word_embeddings": false,
44
+ "transformers_version": "4.57.0.dev0",
45
+ "video_token_id": 151656,
46
+ "vision_config": {
47
+ "deepstack_visual_indexes": [
48
+ 8,
49
+ 16,
50
+ 24
51
+ ],
52
+ "depth": 27,
53
+ "hidden_act": "gelu_pytorch_tanh",
54
+ "hidden_size": 1152,
55
+ "in_channels": 3,
56
+ "initializer_range": 0.02,
57
+ "intermediate_size": 4304,
58
+ "model_type": "qwen3_vl_moe",
59
+ "num_heads": 16,
60
+ "num_position_embeddings": 2304,
61
+ "out_hidden_size": 4096,
62
+ "patch_size": 16,
63
+ "spatial_merge_size": 2,
64
+ "temporal_patch_size": 2
65
+ },
66
+ "vision_end_token_id": 151653,
67
+ "vision_start_token_id": 151652,
68
+ "quantization_config": {
69
+ "activation_scheme": "dynamic",
70
+ "fmt": "e4m3",
71
+ "quant_method": "fp8",
72
+ "ignored_layers": [
73
+ "lm_head",
74
+ "model.visual.merger.linear_fc1",
75
+ "model.visual.merger.linear_fc2",
76
+ "model.visual.merger.norm",
77
+ "model.visual.patch_embed.proj",
78
+ "model.visual.pos_embed",
79
+ "visual.merger.linear_fc1",
80
+ "visual.merger.linear_fc2",
81
+ "visual.merger.norm",
82
+ "visual.patch_embed.proj",
83
+ "visual.pos_embed",
84
+ "model.visual.blocks.0.attn.proj",
85
+ "model.visual.blocks.0.attn.qkv",
86
+ "model.visual.blocks.0.mlp.linear_fc1",
87
+ "model.visual.blocks.0.mlp.linear_fc2",
88
+ "visual.blocks.0.attn.proj",
89
+ "visual.blocks.0.attn.qkv_proj",
90
+ "visual.blocks.0.mlp.linear_fc1",
91
+ "visual.blocks.0.mlp.linear_fc2",
92
+ "model.visual.blocks.1.attn.proj",
93
+ "model.visual.blocks.1.attn.qkv",
94
+ "model.visual.blocks.1.mlp.linear_fc1",
95
+ "model.visual.blocks.1.mlp.linear_fc2",
96
+ "visual.blocks.1.attn.proj",
97
+ "visual.blocks.1.attn.qkv_proj",
98
+ "visual.blocks.1.mlp.linear_fc1",
99
+ "visual.blocks.1.mlp.linear_fc2",
100
+ "model.visual.blocks.2.attn.proj",
101
+ "model.visual.blocks.2.attn.qkv",
102
+ "model.visual.blocks.2.mlp.linear_fc1",
103
+ "model.visual.blocks.2.mlp.linear_fc2",
104
+ "visual.blocks.2.attn.proj",
105
+ "visual.blocks.2.attn.qkv_proj",
106
+ "visual.blocks.2.mlp.linear_fc1",
107
+ "visual.blocks.2.mlp.linear_fc2",
108
+ "model.visual.blocks.3.attn.proj",
109
+ "model.visual.blocks.3.attn.qkv",
110
+ "model.visual.blocks.3.mlp.linear_fc1",
111
+ "model.visual.blocks.3.mlp.linear_fc2",
112
+ "visual.blocks.3.attn.proj",
113
+ "visual.blocks.3.attn.qkv_proj",
114
+ "visual.blocks.3.mlp.linear_fc1",
115
+ "visual.blocks.3.mlp.linear_fc2",
116
+ "model.visual.blocks.4.attn.proj",
117
+ "model.visual.blocks.4.attn.qkv",
118
+ "model.visual.blocks.4.mlp.linear_fc1",
119
+ "model.visual.blocks.4.mlp.linear_fc2",
120
+ "visual.blocks.4.attn.proj",
121
+ "visual.blocks.4.attn.qkv_proj",
122
+ "visual.blocks.4.mlp.linear_fc1",
123
+ "visual.blocks.4.mlp.linear_fc2",
124
+ "model.visual.blocks.5.attn.proj",
125
+ "model.visual.blocks.5.attn.qkv",
126
+ "model.visual.blocks.5.mlp.linear_fc1",
127
+ "model.visual.blocks.5.mlp.linear_fc2",
128
+ "visual.blocks.5.attn.proj",
129
+ "visual.blocks.5.attn.qkv_proj",
130
+ "visual.blocks.5.mlp.linear_fc1",
131
+ "visual.blocks.5.mlp.linear_fc2",
132
+ "model.visual.blocks.6.attn.proj",
133
+ "model.visual.blocks.6.attn.qkv",
134
+ "model.visual.blocks.6.mlp.linear_fc1",
135
+ "model.visual.blocks.6.mlp.linear_fc2",
136
+ "visual.blocks.6.attn.proj",
137
+ "visual.blocks.6.attn.qkv_proj",
138
+ "visual.blocks.6.mlp.linear_fc1",
139
+ "visual.blocks.6.mlp.linear_fc2",
140
+ "model.visual.blocks.7.attn.proj",
141
+ "model.visual.blocks.7.attn.qkv",
142
+ "model.visual.blocks.7.mlp.linear_fc1",
143
+ "model.visual.blocks.7.mlp.linear_fc2",
144
+ "visual.blocks.7.attn.proj",
145
+ "visual.blocks.7.attn.qkv_proj",
146
+ "visual.blocks.7.mlp.linear_fc1",
147
+ "visual.blocks.7.mlp.linear_fc2",
148
+ "model.visual.blocks.8.attn.proj",
149
+ "model.visual.blocks.8.attn.qkv",
150
+ "model.visual.blocks.8.mlp.linear_fc1",
151
+ "model.visual.blocks.8.mlp.linear_fc2",
152
+ "visual.blocks.8.attn.proj",
153
+ "visual.blocks.8.attn.qkv_proj",
154
+ "visual.blocks.8.mlp.linear_fc1",
155
+ "visual.blocks.8.mlp.linear_fc2",
156
+ "model.visual.blocks.9.attn.proj",
157
+ "model.visual.blocks.9.attn.qkv",
158
+ "model.visual.blocks.9.mlp.linear_fc1",
159
+ "model.visual.blocks.9.mlp.linear_fc2",
160
+ "visual.blocks.9.attn.proj",
161
+ "visual.blocks.9.attn.qkv_proj",
162
+ "visual.blocks.9.mlp.linear_fc1",
163
+ "visual.blocks.9.mlp.linear_fc2",
164
+ "model.visual.blocks.10.attn.proj",
165
+ "model.visual.blocks.10.attn.qkv",
166
+ "model.visual.blocks.10.mlp.linear_fc1",
167
+ "model.visual.blocks.10.mlp.linear_fc2",
168
+ "visual.blocks.10.attn.proj",
169
+ "visual.blocks.10.attn.qkv_proj",
170
+ "visual.blocks.10.mlp.linear_fc1",
171
+ "visual.blocks.10.mlp.linear_fc2",
172
+ "model.visual.blocks.11.attn.proj",
173
+ "model.visual.blocks.11.attn.qkv",
174
+ "model.visual.blocks.11.mlp.linear_fc1",
175
+ "model.visual.blocks.11.mlp.linear_fc2",
176
+ "visual.blocks.11.attn.proj",
177
+ "visual.blocks.11.attn.qkv_proj",
178
+ "visual.blocks.11.mlp.linear_fc1",
179
+ "visual.blocks.11.mlp.linear_fc2",
180
+ "model.visual.blocks.12.attn.proj",
181
+ "model.visual.blocks.12.attn.qkv",
182
+ "model.visual.blocks.12.mlp.linear_fc1",
183
+ "model.visual.blocks.12.mlp.linear_fc2",
184
+ "visual.blocks.12.attn.proj",
185
+ "visual.blocks.12.attn.qkv_proj",
186
+ "visual.blocks.12.mlp.linear_fc1",
187
+ "visual.blocks.12.mlp.linear_fc2",
188
+ "model.visual.blocks.13.attn.proj",
189
+ "model.visual.blocks.13.attn.qkv",
190
+ "model.visual.blocks.13.mlp.linear_fc1",
191
+ "model.visual.blocks.13.mlp.linear_fc2",
192
+ "visual.blocks.13.attn.proj",
193
+ "visual.blocks.13.attn.qkv_proj",
194
+ "visual.blocks.13.mlp.linear_fc1",
195
+ "visual.blocks.13.mlp.linear_fc2",
196
+ "model.visual.blocks.14.attn.proj",
197
+ "model.visual.blocks.14.attn.qkv",
198
+ "model.visual.blocks.14.mlp.linear_fc1",
199
+ "model.visual.blocks.14.mlp.linear_fc2",
200
+ "visual.blocks.14.attn.proj",
201
+ "visual.blocks.14.attn.qkv_proj",
202
+ "visual.blocks.14.mlp.linear_fc1",
203
+ "visual.blocks.14.mlp.linear_fc2",
204
+ "model.visual.blocks.15.attn.proj",
205
+ "model.visual.blocks.15.attn.qkv",
206
+ "model.visual.blocks.15.mlp.linear_fc1",
207
+ "model.visual.blocks.15.mlp.linear_fc2",
208
+ "visual.blocks.15.attn.proj",
209
+ "visual.blocks.15.attn.qkv_proj",
210
+ "visual.blocks.15.mlp.linear_fc1",
211
+ "visual.blocks.15.mlp.linear_fc2",
212
+ "model.visual.blocks.16.attn.proj",
213
+ "model.visual.blocks.16.attn.qkv",
214
+ "model.visual.blocks.16.mlp.linear_fc1",
215
+ "model.visual.blocks.16.mlp.linear_fc2",
216
+ "visual.blocks.16.attn.proj",
217
+ "visual.blocks.16.attn.qkv_proj",
218
+ "visual.blocks.16.mlp.linear_fc1",
219
+ "visual.blocks.16.mlp.linear_fc2",
220
+ "model.visual.blocks.17.attn.proj",
221
+ "model.visual.blocks.17.attn.qkv",
222
+ "model.visual.blocks.17.mlp.linear_fc1",
223
+ "model.visual.blocks.17.mlp.linear_fc2",
224
+ "visual.blocks.17.attn.proj",
225
+ "visual.blocks.17.attn.qkv_proj",
226
+ "visual.blocks.17.mlp.linear_fc1",
227
+ "visual.blocks.17.mlp.linear_fc2",
228
+ "model.visual.blocks.18.attn.proj",
229
+ "model.visual.blocks.18.attn.qkv",
230
+ "model.visual.blocks.18.mlp.linear_fc1",
231
+ "model.visual.blocks.18.mlp.linear_fc2",
232
+ "visual.blocks.18.attn.proj",
233
+ "visual.blocks.18.attn.qkv_proj",
234
+ "visual.blocks.18.mlp.linear_fc1",
235
+ "visual.blocks.18.mlp.linear_fc2",
236
+ "model.visual.blocks.19.attn.proj",
237
+ "model.visual.blocks.19.attn.qkv",
238
+ "model.visual.blocks.19.mlp.linear_fc1",
239
+ "model.visual.blocks.19.mlp.linear_fc2",
240
+ "visual.blocks.19.attn.proj",
241
+ "visual.blocks.19.attn.qkv_proj",
242
+ "visual.blocks.19.mlp.linear_fc1",
243
+ "visual.blocks.19.mlp.linear_fc2",
244
+ "model.visual.blocks.20.attn.proj",
245
+ "model.visual.blocks.20.attn.qkv",
246
+ "model.visual.blocks.20.mlp.linear_fc1",
247
+ "model.visual.blocks.20.mlp.linear_fc2",
248
+ "visual.blocks.20.attn.proj",
249
+ "visual.blocks.20.attn.qkv_proj",
250
+ "visual.blocks.20.mlp.linear_fc1",
251
+ "visual.blocks.20.mlp.linear_fc2",
252
+ "model.visual.blocks.21.attn.proj",
253
+ "model.visual.blocks.21.attn.qkv",
254
+ "model.visual.blocks.21.mlp.linear_fc1",
255
+ "model.visual.blocks.21.mlp.linear_fc2",
256
+ "visual.blocks.21.attn.proj",
257
+ "visual.blocks.21.attn.qkv_proj",
258
+ "visual.blocks.21.mlp.linear_fc1",
259
+ "visual.blocks.21.mlp.linear_fc2",
260
+ "model.visual.blocks.22.attn.proj",
261
+ "model.visual.blocks.22.attn.qkv",
262
+ "model.visual.blocks.22.mlp.linear_fc1",
263
+ "model.visual.blocks.22.mlp.linear_fc2",
264
+ "visual.blocks.22.attn.proj",
265
+ "visual.blocks.22.attn.qkv_proj",
266
+ "visual.blocks.22.mlp.linear_fc1",
267
+ "visual.blocks.22.mlp.linear_fc2",
268
+ "model.visual.blocks.23.attn.proj",
269
+ "model.visual.blocks.23.attn.qkv",
270
+ "model.visual.blocks.23.mlp.linear_fc1",
271
+ "model.visual.blocks.23.mlp.linear_fc2",
272
+ "visual.blocks.23.attn.proj",
273
+ "visual.blocks.23.attn.qkv_proj",
274
+ "visual.blocks.23.mlp.linear_fc1",
275
+ "visual.blocks.23.mlp.linear_fc2",
276
+ "model.visual.blocks.24.attn.proj",
277
+ "model.visual.blocks.24.attn.qkv",
278
+ "model.visual.blocks.24.mlp.linear_fc1",
279
+ "model.visual.blocks.24.mlp.linear_fc2",
280
+ "visual.blocks.24.attn.proj",
281
+ "visual.blocks.24.attn.qkv_proj",
282
+ "visual.blocks.24.mlp.linear_fc1",
283
+ "visual.blocks.24.mlp.linear_fc2",
284
+ "model.visual.blocks.25.attn.proj",
285
+ "model.visual.blocks.25.attn.qkv",
286
+ "model.visual.blocks.25.mlp.linear_fc1",
287
+ "model.visual.blocks.25.mlp.linear_fc2",
288
+ "visual.blocks.25.attn.proj",
289
+ "visual.blocks.25.attn.qkv_proj",
290
+ "visual.blocks.25.mlp.linear_fc1",
291
+ "visual.blocks.25.mlp.linear_fc2",
292
+ "model.visual.blocks.26.attn.proj",
293
+ "model.visual.blocks.26.attn.qkv",
294
+ "model.visual.blocks.26.mlp.linear_fc1",
295
+ "model.visual.blocks.26.mlp.linear_fc2",
296
+ "visual.blocks.26.attn.proj",
297
+ "visual.blocks.26.attn.qkv_proj",
298
+ "visual.blocks.26.mlp.linear_fc1",
299
+ "visual.blocks.26.mlp.linear_fc2",
300
+ "model.visual.deepstack_merger_list.0.linear_fc1",
301
+ "model.visual.deepstack_merger_list.0.linear_fc2",
302
+ "model.visual.deepstack_merger_list.0.norm",
303
+ "visual.deepstack_merger_list.0.linear_fc1",
304
+ "visual.deepstack_merger_list.0.linear_fc2",
305
+ "visual.deepstack_merger_list.0.norm",
306
+ "model.visual.deepstack_merger_list.1.linear_fc1",
307
+ "model.visual.deepstack_merger_list.1.linear_fc2",
308
+ "model.visual.deepstack_merger_list.1.norm",
309
+ "visual.deepstack_merger_list.1.linear_fc1",
310
+ "visual.deepstack_merger_list.1.linear_fc2",
311
+ "visual.deepstack_merger_list.1.norm",
312
+ "model.visual.deepstack_merger_list.2.linear_fc1",
313
+ "model.visual.deepstack_merger_list.2.linear_fc2",
314
+ "model.visual.deepstack_merger_list.2.norm",
315
+ "visual.deepstack_merger_list.2.linear_fc1",
316
+ "visual.deepstack_merger_list.2.linear_fc2",
317
+ "visual.deepstack_merger_list.2.norm",
318
+ "model.language_model.layers.0.mlp.gate",
319
+ "model.language_model.layers.1.mlp.gate",
320
+ "model.language_model.layers.2.mlp.gate",
321
+ "model.language_model.layers.3.mlp.gate",
322
+ "model.language_model.layers.4.mlp.gate",
323
+ "model.language_model.layers.5.mlp.gate",
324
+ "model.language_model.layers.6.mlp.gate",
325
+ "model.language_model.layers.7.mlp.gate",
326
+ "model.language_model.layers.8.mlp.gate",
327
+ "model.language_model.layers.9.mlp.gate",
328
+ "model.language_model.layers.10.mlp.gate",
329
+ "model.language_model.layers.11.mlp.gate",
330
+ "model.language_model.layers.12.mlp.gate",
331
+ "model.language_model.layers.13.mlp.gate",
332
+ "model.language_model.layers.14.mlp.gate",
333
+ "model.language_model.layers.15.mlp.gate",
334
+ "model.language_model.layers.16.mlp.gate",
335
+ "model.language_model.layers.17.mlp.gate",
336
+ "model.language_model.layers.18.mlp.gate",
337
+ "model.language_model.layers.19.mlp.gate",
338
+ "model.language_model.layers.20.mlp.gate",
339
+ "model.language_model.layers.21.mlp.gate",
340
+ "model.language_model.layers.22.mlp.gate",
341
+ "model.language_model.layers.23.mlp.gate",
342
+ "model.language_model.layers.24.mlp.gate",
343
+ "model.language_model.layers.25.mlp.gate",
344
+ "model.language_model.layers.26.mlp.gate",
345
+ "model.language_model.layers.27.mlp.gate",
346
+ "model.language_model.layers.28.mlp.gate",
347
+ "model.language_model.layers.29.mlp.gate",
348
+ "model.language_model.layers.30.mlp.gate",
349
+ "model.language_model.layers.31.mlp.gate",
350
+ "model.language_model.layers.32.mlp.gate",
351
+ "model.language_model.layers.33.mlp.gate",
352
+ "model.language_model.layers.34.mlp.gate",
353
+ "model.language_model.layers.35.mlp.gate",
354
+ "model.language_model.layers.36.mlp.gate",
355
+ "model.language_model.layers.37.mlp.gate",
356
+ "model.language_model.layers.38.mlp.gate",
357
+ "model.language_model.layers.39.mlp.gate",
358
+ "model.language_model.layers.40.mlp.gate",
359
+ "model.language_model.layers.41.mlp.gate",
360
+ "model.language_model.layers.42.mlp.gate",
361
+ "model.language_model.layers.43.mlp.gate",
362
+ "model.language_model.layers.44.mlp.gate",
363
+ "model.language_model.layers.45.mlp.gate",
364
+ "model.language_model.layers.46.mlp.gate",
365
+ "model.language_model.layers.47.mlp.gate",
366
+ "model.language_model.layers.48.mlp.gate",
367
+ "model.language_model.layers.49.mlp.gate",
368
+ "model.language_model.layers.50.mlp.gate",
369
+ "model.language_model.layers.51.mlp.gate",
370
+ "model.language_model.layers.52.mlp.gate",
371
+ "model.language_model.layers.53.mlp.gate",
372
+ "model.language_model.layers.54.mlp.gate",
373
+ "model.language_model.layers.55.mlp.gate",
374
+ "model.language_model.layers.56.mlp.gate",
375
+ "model.language_model.layers.57.mlp.gate",
376
+ "model.language_model.layers.58.mlp.gate",
377
+ "model.language_model.layers.59.mlp.gate",
378
+ "model.language_model.layers.60.mlp.gate",
379
+ "model.language_model.layers.61.mlp.gate",
380
+ "model.language_model.layers.62.mlp.gate",
381
+ "model.language_model.layers.63.mlp.gate",
382
+ "model.language_model.layers.64.mlp.gate",
383
+ "model.language_model.layers.65.mlp.gate",
384
+ "model.language_model.layers.66.mlp.gate",
385
+ "model.language_model.layers.67.mlp.gate",
386
+ "model.language_model.layers.68.mlp.gate",
387
+ "model.language_model.layers.69.mlp.gate",
388
+ "model.language_model.layers.70.mlp.gate",
389
+ "model.language_model.layers.71.mlp.gate",
390
+ "model.language_model.layers.72.mlp.gate",
391
+ "model.language_model.layers.73.mlp.gate",
392
+ "model.language_model.layers.74.mlp.gate",
393
+ "model.language_model.layers.75.mlp.gate",
394
+ "model.language_model.layers.76.mlp.gate",
395
+ "model.language_model.layers.77.mlp.gate",
396
+ "model.language_model.layers.78.mlp.gate",
397
+ "model.language_model.layers.79.mlp.gate",
398
+ "model.language_model.layers.80.mlp.gate",
399
+ "model.language_model.layers.81.mlp.gate",
400
+ "model.language_model.layers.82.mlp.gate",
401
+ "model.language_model.layers.83.mlp.gate",
402
+ "model.language_model.layers.84.mlp.gate",
403
+ "model.language_model.layers.85.mlp.gate",
404
+ "model.language_model.layers.86.mlp.gate",
405
+ "model.language_model.layers.87.mlp.gate",
406
+ "model.language_model.layers.88.mlp.gate",
407
+ "model.language_model.layers.89.mlp.gate",
408
+ "model.language_model.layers.90.mlp.gate",
409
+ "model.language_model.layers.91.mlp.gate",
410
+ "model.language_model.layers.92.mlp.gate",
411
+ "model.language_model.layers.93.mlp.gate"
412
+ ],
413
+ "weight_block_size": [
414
+ 128,
415
+ 128
416
+ ]
417
+ }
418
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "pad_token_id": 151643,
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 151645,
7
+ 151643
8
+ ],
9
+ "top_p": 0.8,
10
+ "top_k": 20,
11
+ "temperature": 0.7,
12
+ "repetition_penalty": 1.0,
13
+ "transformers_version": "4.56.0"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdcbe03da56de1522e3cec1c414758b90ec018aa715bdfb1ebfb3cec3b4e7dab
3
+ size 9956019648
model-00002-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24964ef486ce151a880ed97a2de439d4b41b7f82b5595c9da74a8136239c53be
3
+ size 9955588840
model-00003-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20bc71157b1bb316b9d9e8c6ec68d207210d14aebe56c3c586cb5f4a937fa8c6
3
+ size 9955588840
model-00004-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24fed1abd4dbf55e3929fefc6067ea93b4331f6bfc140c22bea87462f89a83a6
3
+ size 9955588824
model-00005-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07ee67e8787773a42cf23a271745be8b569bbde45596b26dae31880b3295482d
3
+ size 9955588840
model-00006-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8d9127a4c08db8aea5eb9e6cf9e557daf9bb2c20c15ea1b6e17a824fef64b0a
3
+ size 9955588840
model-00007-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c72deb0bacef949493b6cc543cd08115b42d8833f384b169c3c678cacebed14
3
+ size 9955588824
model-00008-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fffe152a981d565a817fec2c93a7cc0251ecca2f528e23a477ecb90379ca925
3
+ size 9955588840
model-00009-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7c9a447f52e152b93f3cf72eed2088bbf3c2fb280afab540aa92cc56f438eaf
3
+ size 9955588824
model-00010-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5506621ebc54d5e0f5a13b5e55303d45d7ea876698f10bb81d409b0daf08c654
3
+ size 9955588840
model-00011-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7291c2542aed40f995b9ad307ae5da2488fe9c0e9bc208ec9db665ce0da6099
3
+ size 9955588840
model-00012-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96d31404e1f7a0097fca402739b5cee159cb4ec0a45688cdf9a646a91871e405
3
+ size 9955588824
model-00013-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c226ac5f8296aa2ad060876e1f268a4b7ec4bab23788a8b0a19667bc94cfdff5
3
+ size 9955588840
model-00014-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92d1f8c0b089a469f2741498c45e2673159c2ba8cfc01ab224cae6a6535c5f14
3
+ size 9955588840
model-00015-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59592295b7d9118d9512a52a7255294fae4a5e0b86a9290ed0ae575984e8dad3
3
+ size 9955588824
model-00016-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b29ff8dd00f99a96b0603d15e9769694c103f9e4a44b9082853ed5bc037c8d0
3
+ size 9955588840
model-00017-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45e97f05cf3503a129831113c3c83add71f4e77f6d59ae585e3d03a2ef71593b
3
+ size 9955588840
model-00018-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8af873d67a91436ec74407d5e3248adc5a4523b404320c7dda32fc95c243499c
3
+ size 9955588824
model-00019-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01c0f0805edabc5b14b275a9919965ce77fb0666f2084a3d677ba21e8116ca80
3
+ size 9955588840
model-00020-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bdd56a38671deac90f99164d8e0a8f6dc9d069f43b8b67991406669ef172a53
3
+ size 9955588824
model-00021-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb0b883ff867361dec0d59b8fa80eae877bc7c1c446ac4ea61ed89e1386211ce
3
+ size 9955588840
model-00022-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:264d85f16c04bca2f8dbad20f114e74ec66ff0c39532baf0a7997bf289a7a4c0
3
+ size 9955588840
model-00023-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccdb6cc1b5b89bc35d90a6ae8ccf8b965fa5097970fb71e710cd5e3010c39c59
3
+ size 9955588824
model-00024-of-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe6b8933e913779e898386a1f0412e39aa05f3e31770814be26bf32ce16f4eb9
3
+ size 8619507568
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
preprocessor_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size": {
3
+ "longest_edge": 16777216,
4
+ "shortest_edge": 65536
5
+ },
6
+ "patch_size": 16,
7
+ "temporal_patch_size": 2,
8
+ "merge_size": 2,
9
+ "image_mean": [
10
+ 0.5,
11
+ 0.5,
12
+ 0.5
13
+ ],
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "processor_class": "Qwen3VLProcessor",
20
+ "image_processor_type": "Qwen2VLImageProcessorFast"
21
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n\\n' }}\n {%- endif %}\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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].content is string %}\n {{- messages[0].content }}\n {%- else %}\n {%- for content in messages[0].content %}\n {%- if 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- for message in messages %}\n {%- if message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content_item in message.content %}\n {%- if 'text' in content_item %}\n {{- content_item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and message.content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {%- if message.content is string %}\n {{- message.content }}\n {%- else %}\n {%- for content in message.content %}\n {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif content.type == 'video' or 'video' in content %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in content %}\n {{- content.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
231
+ "clean_up_tokenization_spaces": false,
232
+ "eos_token": "<|im_end|>",
233
+ "errors": "replace",
234
+ "model_max_length": 262144,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size": {
3
+ "longest_edge": 25165824,
4
+ "shortest_edge": 4096
5
+ },
6
+ "patch_size": 16,
7
+ "temporal_patch_size": 2,
8
+ "merge_size": 2,
9
+ "image_mean": [
10
+ 0.5,
11
+ 0.5,
12
+ 0.5
13
+ ],
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "processor_class": "Qwen3VLProcessor",
20
+ "video_processor_type": "Qwen3VLVideoProcessor"
21
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff