Tech2wild commited on
Commit
a382da8
·
verified ·
1 Parent(s): 9605bd8

Nex-N2.5-mini Int4-Int8Mix (data-free, compressed-tensors, 20 GB)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ 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
37
+ figures/Nex-N2-Benchmark-white.png filter=lfs diff=lfs merge=lfs -text
38
+ figures/Nex-N2.5-Benchmark-white.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: nex-agi/Nex-N2.5-mini
4
+ tags:
5
+ - compressed-tensors
6
+ - int4
7
+ - int8
8
+ - qwen3_5_moe
9
+ - agentic
10
+ - vllm
11
+ - rtx-3090
12
+ - dgx-spark
13
+ pipeline_tag: image-text-to-text
14
+ ---
15
+
16
+ # Nex-N2.5-mini Int4-Int8Mix
17
+
18
+ Data-free weight-only quantization of [nex-agi/Nex-N2.5-mini](https://huggingface.co/nex-agi/Nex-N2.5-mini) (a Qwen3.5-35B-A3B-family agentic model with a vision tower, 262K context) in the compressed-tensors `pack-quantized` format that stock vLLM loads directly. 66 GB of BF16 becomes 20 GB, which fits a pair of RTX 3090s at TP2 with room for a real KV pool, or one DGX Spark.
19
+
20
+ ## Recipe
21
+
22
+ Same layer policy as our GLM-5.3 Int4-Int8Mix quant, adapted to this architecture:
23
+
24
+ | Tensors | Precision |
25
+ |---|---|
26
+ | 256 routed experts per layer, all 40 layers (`mlp.experts.N.gate_proj/up_proj/down_proj`) | INT4, symmetric, group 128 |
27
+ | Attention `q/k/v/o_proj`, Gated DeltaNet `in_proj_qkv`, `in_proj_z`, `out_proj`, shared expert `gate/up/down_proj` (layers 1 to 39) | INT8, symmetric, group 128 |
28
+ | Layer 0 side layers, routers (`mlp.gate`), `shared_expert_gate`, DeltaNet `in_proj_a`, `in_proj_b`, `conv1d`, `A_log`, `dt_bias`, all norms, embeddings, `lm_head`, the whole vision tower | BF16, untouched |
29
+
30
+ Round-to-nearest per group with min-max scales (compressed-tensors `QuantizationArgs`), no calibration data. The source checkpoint stores the experts fused per layer (`experts.gate_up_proj` [256, 1024, 2048], `experts.down_proj` [256, 2048, 512]); the quantizer splits them into per-expert 2-D weights and writes the standard per-expert names, which is what vLLM's Qwen3.5-MoE loader reads. Self-test round-trip error: INT4 experts about 11 to 14% mean relative per weight, INT8 layers about 0.8%.
31
+
32
+ Stats: 30,720 expert matrices INT4, 244 side-layer matrices INT8, 702 tensors passed through. 93,594 tensors, 16 shards, 19.6 GiB.
33
+
34
+ ## Serving
35
+
36
+ Tested with vLLM v0.27.1 on 2x RTX 3090 (NVLink pair), Ampere, no FP8 compute:
37
+
38
+ ```
39
+ vllm serve /models/Nex-N2.5-mini-Int4-Int8Mix \
40
+ --served-model-name nex-n2.5-mini --port 8015 \
41
+ --quantization compressed-tensors --dtype float16 \
42
+ --tensor-parallel-size 2 --enable-expert-parallel \
43
+ --max-model-len 262144 --gpu-memory-utilization 0.90 \
44
+ --max-num-seqs 4 --max-num-batched-tokens 8192 \
45
+ --kv-cache-dtype fp8_e5m2 --trust-remote-code --enable-chunked-prefill \
46
+ --limit-mm-per-prompt '{"image":2,"audio":0}' \
47
+ --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder \
48
+ --default-chat-template-kwargs '{"enable_thinking": false}'
49
+ ```
50
+
51
+ Measured numbers from that box are in the repo README once the lane is up (KV pool, count-to-100 and prose tok/s). This checkpoint has no MTP head, so no speculative decoding.
52
+
53
+ ## Caveats
54
+
55
+ - Data-free INT4 is a size play, not an accuracy claim; run your own evals for your workload.
56
+ - Quantized with our shard-streaming quantizer (`nex_quant_stream.py`, adapted from the GLM-5.3 Int4-Int8Mix recipe at https://github.com/tonyd2wild/GLM-5.3-Int4-Int8Mix-TP4-4x-DGX-Spark).
57
+
58
+ ## Credits
59
+
60
+ - [nex-agi](https://huggingface.co/nex-agi) for Nex-N2.5-mini (Apache 2.0).
61
+ - Qwen team for the Qwen3.5 MoE architecture.
62
+ - [QuantTrio](https://huggingface.co/QuantTrio) for the Int4-Int8Mix layer policy we follow.
63
+ - vLLM and compressed-tensors (Neural Magic / Red Hat) for the format and kernels.
64
+
65
+ Quantized by Tony DeAngelo (Tech2Wild / 2Wild) with Kai, 2026-09-08.
chat_template.jinja ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- if tools and tools is iterable and tools is not mapping %}
46
+ {{- '<|im_start|>system\n' }}
47
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
48
+ {%- for tool in tools %}
49
+ {{- "\n" }}
50
+ {{- tool | tojson }}
51
+ {%- endfor %}
52
+ {{- "\n</tools>" }}
53
+ {{- '\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>' }}
54
+ {%- if messages[0].role == 'system' %}
55
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
56
+ {%- if content %}
57
+ {{- '\n\n' + content }}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {{- '<|im_end|>\n' }}
61
+ {%- else %}
62
+ {%- if messages[0].role == 'system' %}
63
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
64
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
65
+ {%- endif %}
66
+ {%- endif %}
67
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
68
+ {%- for message in messages[::-1] %}
69
+ {%- set index = (messages|length - 1) - loop.index0 %}
70
+ {%- if ns.multi_step_tool and message.role == "user" %}
71
+ {%- set content = render_content(message.content, false)|trim %}
72
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
73
+ {%- set ns.multi_step_tool = false %}
74
+ {%- set ns.last_query_index = index %}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if ns.multi_step_tool %}
79
+ {{- raise_exception('No user query found in messages.') }}
80
+ {%- endif %}
81
+ {%- for message in messages %}
82
+ {%- set content = render_content(message.content, true)|trim %}
83
+ {%- if message.role == "system" %}
84
+ {%- if not loop.first %}
85
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
86
+ {%- endif %}
87
+ {%- elif message.role == "user" %}
88
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
89
+ {%- elif message.role == "assistant" %}
90
+ {%- set reasoning_content = '' %}
91
+ {%- if message.reasoning_content is string %}
92
+ {%- set reasoning_content = message.reasoning_content %}
93
+ {%- else %}
94
+ {%- if '</think>' in content %}
95
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
96
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
97
+ {%- endif %}
98
+ {%- endif %}
99
+ {%- set reasoning_content = reasoning_content|trim %}
100
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
101
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
102
+ {%- for tool_call in message.tool_calls %}
103
+ {%- if tool_call.function is defined %}
104
+ {%- set tool_call = tool_call.function %}
105
+ {%- endif %}
106
+ {%- if loop.first %}
107
+ {%- if content|trim %}
108
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
109
+ {%- else %}
110
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
111
+ {%- endif %}
112
+ {%- else %}
113
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
114
+ {%- endif %}
115
+ {%- if tool_call.arguments is defined %}
116
+ {%- for args_name, args_value in tool_call.arguments|items %}
117
+ {{- '<parameter=' + args_name + '>\n' }}
118
+ {%- 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 %}
119
+ {{- args_value }}
120
+ {{- '\n</parameter>\n' }}
121
+ {%- endfor %}
122
+ {%- endif %}
123
+ {{- '</function>\n</tool_call>' }}
124
+ {%- endfor %}
125
+ {%- endif %}
126
+ {{- '<|im_end|>\n' }}
127
+ {%- elif message.role == "tool" %}
128
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
129
+ {{- '<|im_start|>user' }}
130
+ {%- endif %}
131
+ {{- '\n<tool_response>\n' }}
132
+ {{- content }}
133
+ {{- '\n</tool_response>' }}
134
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
135
+ {{- '<|im_end|>\n' }}
136
+ {%- elif loop.last %}
137
+ {{- '<|im_end|>\n' }}
138
+ {%- endif %}
139
+ {%- else %}
140
+ {{- raise_exception('Unexpected message role.') }}
141
+ {%- endif %}
142
+ {%- endfor %}
143
+ {%- if add_generation_prompt %}
144
+ {{- '<|im_start|>assistant\n' }}
145
+ {%- if reasoning_effort is not defined or reasoning_effort is none %}
146
+ {{- '<think>' }}
147
+ {%- elif reasoning_effort == 'none' %}
148
+ {{- '<think>\n\n</think>\n\n' }}
149
+ {%- elif reasoning_effort == 'high' %}
150
+ {{- '<think>\n' }}
151
+ {%- else %}
152
+ {{- '<think>' }}
153
+ {%- endif %}
154
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5MoeForConditionalGeneration"
4
+ ],
5
+ "dtype": "bfloat16",
6
+ "hidden_size": 2048,
7
+ "image_token_id": 248056,
8
+ "model_type": "qwen3_5_moe",
9
+ "text_config": {
10
+ "attention_bias": false,
11
+ "attention_dropout": 0.0,
12
+ "attn_output_gate": true,
13
+ "bos_token_id": null,
14
+ "dtype": "bfloat16",
15
+ "eos_token_id": 248044,
16
+ "full_attention_interval": 4,
17
+ "head_dim": 256,
18
+ "hidden_act": "silu",
19
+ "hidden_size": 2048,
20
+ "initializer_range": 0.02,
21
+ "layer_types": [
22
+ "linear_attention",
23
+ "linear_attention",
24
+ "linear_attention",
25
+ "full_attention",
26
+ "linear_attention",
27
+ "linear_attention",
28
+ "linear_attention",
29
+ "full_attention",
30
+ "linear_attention",
31
+ "linear_attention",
32
+ "linear_attention",
33
+ "full_attention",
34
+ "linear_attention",
35
+ "linear_attention",
36
+ "linear_attention",
37
+ "full_attention",
38
+ "linear_attention",
39
+ "linear_attention",
40
+ "linear_attention",
41
+ "full_attention",
42
+ "linear_attention",
43
+ "linear_attention",
44
+ "linear_attention",
45
+ "full_attention",
46
+ "linear_attention",
47
+ "linear_attention",
48
+ "linear_attention",
49
+ "full_attention",
50
+ "linear_attention",
51
+ "linear_attention",
52
+ "linear_attention",
53
+ "full_attention",
54
+ "linear_attention",
55
+ "linear_attention",
56
+ "linear_attention",
57
+ "full_attention",
58
+ "linear_attention",
59
+ "linear_attention",
60
+ "linear_attention",
61
+ "full_attention"
62
+ ],
63
+ "linear_conv_kernel_dim": 4,
64
+ "linear_key_head_dim": 128,
65
+ "linear_num_key_heads": 16,
66
+ "linear_num_value_heads": 32,
67
+ "linear_value_head_dim": 128,
68
+ "mamba_ssm_dtype": "float32",
69
+ "max_position_embeddings": 262144,
70
+ "mlp_only_layers": [],
71
+ "model_type": "qwen3_5_moe_text",
72
+ "moe_intermediate_size": 512,
73
+ "mtp_num_hidden_layers": 1,
74
+ "mtp_use_dedicated_embeddings": false,
75
+ "num_attention_heads": 16,
76
+ "num_experts": 256,
77
+ "num_experts_per_tok": 8,
78
+ "num_hidden_layers": 40,
79
+ "num_key_value_heads": 2,
80
+ "output_router_logits": false,
81
+ "pad_token_id": null,
82
+ "partial_rotary_factor": 0.25,
83
+ "rms_norm_eps": 1e-06,
84
+ "rope_parameters": {
85
+ "mrope_interleaved": true,
86
+ "mrope_section": [
87
+ 11,
88
+ 11,
89
+ 10
90
+ ],
91
+ "partial_rotary_factor": 0.25,
92
+ "rope_theta": 10000000,
93
+ "rope_type": "default"
94
+ },
95
+ "router_aux_loss_coef": 0.001,
96
+ "shared_expert_intermediate_size": 512,
97
+ "tie_word_embeddings": false,
98
+ "use_cache": true,
99
+ "vocab_size": 248320
100
+ },
101
+ "tie_word_embeddings": false,
102
+ "transformers_version": "5.2.0",
103
+ "video_token_id": 248057,
104
+ "vision_config": {
105
+ "deepstack_visual_indexes": [],
106
+ "depth": 27,
107
+ "dtype": "bfloat16",
108
+ "hidden_act": "gelu_pytorch_tanh",
109
+ "hidden_size": 1152,
110
+ "in_channels": 3,
111
+ "initializer_range": 0.02,
112
+ "intermediate_size": 4304,
113
+ "model_type": "qwen3_5_moe",
114
+ "num_heads": 16,
115
+ "num_position_embeddings": 2304,
116
+ "out_hidden_size": 2048,
117
+ "patch_size": 16,
118
+ "spatial_merge_size": 2,
119
+ "temporal_patch_size": 2
120
+ },
121
+ "vision_end_token_id": 248054,
122
+ "vision_start_token_id": 248053,
123
+ "quantization_config": {
124
+ "quant_method": "compressed-tensors",
125
+ "format": "pack-quantized",
126
+ "quantization_status": "compressed",
127
+ "ignore": [
128
+ "re:model[.]language_model[.]layers[.]0[.](?:self_attn|linear_attn|mlp[.]shared_expert)[.].*",
129
+ "re:model[.]language_model[.]layers[.][0-9]+[.]mlp[.]gate$",
130
+ "re:model[.]language_model[.]layers[.][0-9]+[.]mlp[.]shared_expert_gate$",
131
+ "re:model[.]language_model[.]layers[.][0-9]+[.]linear_attn[.](?:in_proj_a|in_proj_b|in_proj_ba|conv1d)$",
132
+ "re:model[.]language_model[.]layers[.][0-9]+[.]self_attn[.](?:q_norm|k_norm)$",
133
+ "re:model[.]language_model[.]embed_tokens$",
134
+ "lm_head",
135
+ "re:model[.]visual[.].*"
136
+ ],
137
+ "config_groups": {
138
+ "w4a16_experts": {
139
+ "targets": [
140
+ "re:model[.]language_model[.]layers[.][0-9]+[.]mlp[.]experts[.][0-9]+[.](?:gate_proj|up_proj|down_proj)$"
141
+ ],
142
+ "input_activations": null,
143
+ "output_activations": null,
144
+ "weights": {
145
+ "num_bits": 4,
146
+ "type": "int",
147
+ "symmetric": true,
148
+ "strategy": "group",
149
+ "group_size": 128,
150
+ "dynamic": false,
151
+ "actorder": null,
152
+ "observer": "minmax"
153
+ }
154
+ },
155
+ "w8a16_linears": {
156
+ "targets": [
157
+ "re:model[.]language_model[.]layers[.](?:[1-9][0-9]*)[.](?:self_attn[.](?:q_proj|k_proj|v_proj|o_proj)|linear_attn[.](?:in_proj_qkv|in_proj_z|out_proj)|mlp[.]shared_expert[.](?:gate_proj|up_proj|down_proj))$"
158
+ ],
159
+ "input_activations": null,
160
+ "output_activations": null,
161
+ "weights": {
162
+ "num_bits": 8,
163
+ "type": "int",
164
+ "symmetric": true,
165
+ "strategy": "group",
166
+ "group_size": 128,
167
+ "dynamic": false,
168
+ "actorder": null,
169
+ "observer": "minmax"
170
+ }
171
+ }
172
+ },
173
+ "packed_modules_mapping": {
174
+ "qkv_proj": [
175
+ "q_proj",
176
+ "k_proj",
177
+ "v_proj"
178
+ ],
179
+ "gate_up_proj": [
180
+ "gate_proj",
181
+ "up_proj"
182
+ ],
183
+ "in_proj_qkvz": [
184
+ "in_proj_qkv",
185
+ "in_proj_z"
186
+ ],
187
+ "in_proj_ba": [
188
+ "in_proj_a",
189
+ "in_proj_b"
190
+ ]
191
+ },
192
+ "kv_cache_scheme": null,
193
+ "global_compression_ratio": null,
194
+ "sparsity_config": {}
195
+ }
196
+ }
model-00001-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:548db38f46091de35757357836c924a83369c977dbf3e81173fcaac5661217c6
3
+ size 2716357968
model-00002-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7721923ca45d91c7fa006d876052aefc52187ced5c48d7f46e176a090c2b3f85
3
+ size 1078931648
model-00003-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71cdc653f6d5168a19396f21ad6cd5460d15ea783ef83bfd1f261aa2fd426dac
3
+ size 1324030040
model-00004-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e88dfd4a4ca2ece873650b4975f88ed5b15f6752976537a384067aeb99e2aeb
3
+ size 1217448568
model-00005-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7724265b5533bfef3c4d4d89d52b5e77b2a1d9014758c3ff06829f2db7bd52d9
3
+ size 1078936648
model-00006-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ce9e8cafb6630c6c5566eac4534f7945f38df9ab3920615a088ab87d031f25d
3
+ size 1324037008
model-00007-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79dd91261da05ef19dfb2cfd127966f7ea8d3922d19a3d63ce4ae53d5d0f8a2
3
+ size 1217454800
model-00008-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d05d2d1d51f538c7c21853917fdd9eac1b02fddb3ab73d1eb8f9a18c1c173eab
3
+ size 1078937104
model-00009-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8d4277c1efdd731af13716df0ea38db9564bd6812b4a79fa73fdd795728d5aa
3
+ size 1324037008
model-00010-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4a6b2f324d0ed7ea44ccb2affac62a55574c2bd6d2dc43c74fbb09028f2a498
3
+ size 1217454800
model-00011-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f0a65228eb839cc67627b01c22ecc5b823ded5babd2378c30a1c92cca76a845
3
+ size 1078937104
model-00012-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01446695db0c9cf662d9b1ab960b73ab9304fda05e4720a92ed767c945120e1e
3
+ size 1324037008
model-00013-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4171801c9f13459ddc2602b9415209b6b8864b53061129ad602cc3e2611d5ff
3
+ size 1217454800
model-00014-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6bbb5588a5702385f4bd6ede8a3b54d34e27c00b8751c45dac2752d3d0e3b76
3
+ size 1078937104
model-00015-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:116206d77e27ecfebb00d1ae210e3589ff1ae278fd0d15b8682da6b048b8c2d4
3
+ size 1324037008
model-00016-of-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59fe66a36ebad00f6e473a469a6d80d1db214b8884e1265141b22f97e100f4bb
3
+ size 1464637584
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
+ }
processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
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,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "model_max_length": 262144,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|endoftext|>",
24
+ "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+",
25
+ "processor_class": "Qwen3VLProcessor",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "TokenizersBackend",
28
+ "unk_token": null,
29
+ "video_token": "<|video_pad|>",
30
+ "vision_bos_token": "<|vision_start|>",
31
+ "vision_eos_token": "<|vision_end|>"
32
+ }