MwSpace commited on
Commit
572d310
·
verified ·
1 Parent(s): e5981da

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
+ model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# 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>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\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" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- for message in messages %}
18
+ {%- if message.content is string %}
19
+ {%- set content = message.content %}
20
+ {%- else %}
21
+ {%- set content = '' %}
22
+ {%- endif %}
23
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
24
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
25
+ {%- elif message.role == "assistant" %}
26
+ {{- '<|im_start|>' + message.role + '\n' + content }}
27
+ {%- if message.tool_calls %}
28
+ {%- for tool_call in message.tool_calls %}
29
+ {%- if (loop.first and content) or (not loop.first) %}
30
+ {{- '\n' }}
31
+ {%- endif %}
32
+ {%- if tool_call.function %}
33
+ {%- set tool_call = tool_call.function %}
34
+ {%- endif %}
35
+ {{- '<tool_call>\n{"name": "' }}
36
+ {{- tool_call.name }}
37
+ {{- '", "arguments": ' }}
38
+ {%- if tool_call.arguments is string %}
39
+ {{- tool_call.arguments }}
40
+ {%- else %}
41
+ {{- tool_call.arguments | tojson }}
42
+ {%- endif %}
43
+ {{- '}\n</tool_call>' }}
44
+ {%- endfor %}
45
+ {%- endif %}
46
+ {{- '<|im_end|>\n' }}
47
+ {%- elif message.role == "tool" %}
48
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
49
+ {{- '<|im_start|>user' }}
50
+ {%- endif %}
51
+ {{- '\n<tool_response>\n' }}
52
+ {{- content }}
53
+ {{- '\n</tool_response>' }}
54
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
55
+ {{- '<|im_end|>\n' }}
56
+ {%- endif %}
57
+ {%- endif %}
58
+ {%- endfor %}
59
+ {%- if add_generation_prompt %}
60
+ {{- '<|im_start|>assistant\n' }}
61
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,397 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3NextForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "decoder_sparse_step": 1,
9
+ "dtype": "bfloat16",
10
+ "eos_token_id": 151645,
11
+ "full_attention_interval": 4,
12
+ "head_dim": 256,
13
+ "hidden_act": "silu",
14
+ "hidden_size": 2048,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 5120,
17
+ "layer_types": [
18
+ "linear_attention",
19
+ "linear_attention",
20
+ "linear_attention",
21
+ "full_attention",
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
+ "linear_attention",
63
+ "linear_attention",
64
+ "linear_attention",
65
+ "full_attention"
66
+ ],
67
+ "linear_conv_kernel_dim": 4,
68
+ "linear_key_head_dim": 128,
69
+ "linear_num_key_heads": 16,
70
+ "linear_num_value_heads": 32,
71
+ "linear_value_head_dim": 128,
72
+ "max_position_embeddings": 262144,
73
+ "mlp_only_layers": [],
74
+ "model_type": "qwen3_next",
75
+ "moe_intermediate_size": 512,
76
+ "norm_topk_prob": true,
77
+ "num_attention_heads": 16,
78
+ "num_experts": 512,
79
+ "num_experts_per_tok": 10,
80
+ "num_hidden_layers": 48,
81
+ "num_key_value_heads": 2,
82
+ "output_router_logits": false,
83
+ "partial_rotary_factor": 0.25,
84
+ "quantization_config": {
85
+ "config_groups": {
86
+ "group_0": {
87
+ "format": "nvfp4-pack-quantized",
88
+ "input_activations": {
89
+ "actorder": null,
90
+ "block_structure": null,
91
+ "dynamic": "local",
92
+ "group_size": 16,
93
+ "num_bits": 4,
94
+ "observer": "static_minmax",
95
+ "observer_kwargs": {},
96
+ "scale_dtype": "torch.float8_e4m3fn",
97
+ "strategy": "tensor_group",
98
+ "symmetric": true,
99
+ "type": "float",
100
+ "zp_dtype": null
101
+ },
102
+ "output_activations": null,
103
+ "targets": [
104
+ "Linear"
105
+ ],
106
+ "weights": {
107
+ "actorder": null,
108
+ "block_structure": null,
109
+ "dynamic": false,
110
+ "group_size": 16,
111
+ "num_bits": 4,
112
+ "observer": "static_minmax",
113
+ "observer_kwargs": {},
114
+ "scale_dtype": "torch.float8_e4m3fn",
115
+ "strategy": "tensor_group",
116
+ "symmetric": true,
117
+ "type": "float",
118
+ "zp_dtype": null
119
+ }
120
+ }
121
+ },
122
+ "format": "nvfp4-pack-quantized",
123
+ "global_compression_ratio": null,
124
+ "ignore": [
125
+ "model.layers.0.linear_attn.in_proj_qkvz",
126
+ "model.layers.0.linear_attn.in_proj_ba",
127
+ "model.layers.0.linear_attn.out_proj",
128
+ "model.layers.0.mlp.gate",
129
+ "model.layers.0.mlp.shared_expert_gate",
130
+ "model.layers.1.linear_attn.in_proj_qkvz",
131
+ "model.layers.1.linear_attn.in_proj_ba",
132
+ "model.layers.1.linear_attn.out_proj",
133
+ "model.layers.1.mlp.gate",
134
+ "model.layers.1.mlp.shared_expert_gate",
135
+ "model.layers.2.linear_attn.in_proj_qkvz",
136
+ "model.layers.2.linear_attn.in_proj_ba",
137
+ "model.layers.2.linear_attn.out_proj",
138
+ "model.layers.2.mlp.gate",
139
+ "model.layers.2.mlp.shared_expert_gate",
140
+ "model.layers.3.self_attn.q_proj",
141
+ "model.layers.3.self_attn.k_proj",
142
+ "model.layers.3.self_attn.v_proj",
143
+ "model.layers.3.mlp.gate",
144
+ "model.layers.3.mlp.shared_expert_gate",
145
+ "model.layers.4.linear_attn.in_proj_qkvz",
146
+ "model.layers.4.linear_attn.in_proj_ba",
147
+ "model.layers.4.linear_attn.out_proj",
148
+ "model.layers.4.mlp.gate",
149
+ "model.layers.4.mlp.shared_expert_gate",
150
+ "model.layers.5.linear_attn.in_proj_qkvz",
151
+ "model.layers.5.linear_attn.in_proj_ba",
152
+ "model.layers.5.linear_attn.out_proj",
153
+ "model.layers.5.mlp.gate",
154
+ "model.layers.5.mlp.shared_expert_gate",
155
+ "model.layers.6.linear_attn.in_proj_qkvz",
156
+ "model.layers.6.linear_attn.in_proj_ba",
157
+ "model.layers.6.linear_attn.out_proj",
158
+ "model.layers.6.mlp.gate",
159
+ "model.layers.6.mlp.shared_expert_gate",
160
+ "model.layers.7.self_attn.q_proj",
161
+ "model.layers.7.self_attn.k_proj",
162
+ "model.layers.7.self_attn.v_proj",
163
+ "model.layers.7.mlp.gate",
164
+ "model.layers.7.mlp.shared_expert_gate",
165
+ "model.layers.8.linear_attn.in_proj_qkvz",
166
+ "model.layers.8.linear_attn.in_proj_ba",
167
+ "model.layers.8.linear_attn.out_proj",
168
+ "model.layers.8.mlp.gate",
169
+ "model.layers.8.mlp.shared_expert_gate",
170
+ "model.layers.9.linear_attn.in_proj_qkvz",
171
+ "model.layers.9.linear_attn.in_proj_ba",
172
+ "model.layers.9.linear_attn.out_proj",
173
+ "model.layers.9.mlp.gate",
174
+ "model.layers.9.mlp.shared_expert_gate",
175
+ "model.layers.10.linear_attn.in_proj_qkvz",
176
+ "model.layers.10.linear_attn.in_proj_ba",
177
+ "model.layers.10.linear_attn.out_proj",
178
+ "model.layers.10.mlp.gate",
179
+ "model.layers.10.mlp.shared_expert_gate",
180
+ "model.layers.11.self_attn.q_proj",
181
+ "model.layers.11.self_attn.k_proj",
182
+ "model.layers.11.self_attn.v_proj",
183
+ "model.layers.11.mlp.gate",
184
+ "model.layers.11.mlp.shared_expert_gate",
185
+ "model.layers.12.linear_attn.in_proj_qkvz",
186
+ "model.layers.12.linear_attn.in_proj_ba",
187
+ "model.layers.12.linear_attn.out_proj",
188
+ "model.layers.12.mlp.gate",
189
+ "model.layers.12.mlp.shared_expert_gate",
190
+ "model.layers.13.linear_attn.in_proj_qkvz",
191
+ "model.layers.13.linear_attn.in_proj_ba",
192
+ "model.layers.13.linear_attn.out_proj",
193
+ "model.layers.13.mlp.gate",
194
+ "model.layers.13.mlp.shared_expert_gate",
195
+ "model.layers.14.linear_attn.in_proj_qkvz",
196
+ "model.layers.14.linear_attn.in_proj_ba",
197
+ "model.layers.14.linear_attn.out_proj",
198
+ "model.layers.14.mlp.gate",
199
+ "model.layers.14.mlp.shared_expert_gate",
200
+ "model.layers.15.self_attn.q_proj",
201
+ "model.layers.15.self_attn.k_proj",
202
+ "model.layers.15.self_attn.v_proj",
203
+ "model.layers.15.mlp.gate",
204
+ "model.layers.15.mlp.shared_expert_gate",
205
+ "model.layers.16.linear_attn.in_proj_qkvz",
206
+ "model.layers.16.linear_attn.in_proj_ba",
207
+ "model.layers.16.linear_attn.out_proj",
208
+ "model.layers.16.mlp.gate",
209
+ "model.layers.16.mlp.shared_expert_gate",
210
+ "model.layers.17.linear_attn.in_proj_qkvz",
211
+ "model.layers.17.linear_attn.in_proj_ba",
212
+ "model.layers.17.linear_attn.out_proj",
213
+ "model.layers.17.mlp.gate",
214
+ "model.layers.17.mlp.shared_expert_gate",
215
+ "model.layers.18.linear_attn.in_proj_qkvz",
216
+ "model.layers.18.linear_attn.in_proj_ba",
217
+ "model.layers.18.linear_attn.out_proj",
218
+ "model.layers.18.mlp.gate",
219
+ "model.layers.18.mlp.shared_expert_gate",
220
+ "model.layers.19.self_attn.q_proj",
221
+ "model.layers.19.self_attn.k_proj",
222
+ "model.layers.19.self_attn.v_proj",
223
+ "model.layers.19.mlp.gate",
224
+ "model.layers.19.mlp.shared_expert_gate",
225
+ "model.layers.20.linear_attn.in_proj_qkvz",
226
+ "model.layers.20.linear_attn.in_proj_ba",
227
+ "model.layers.20.linear_attn.out_proj",
228
+ "model.layers.20.mlp.gate",
229
+ "model.layers.20.mlp.shared_expert_gate",
230
+ "model.layers.21.linear_attn.in_proj_qkvz",
231
+ "model.layers.21.linear_attn.in_proj_ba",
232
+ "model.layers.21.linear_attn.out_proj",
233
+ "model.layers.21.mlp.gate",
234
+ "model.layers.21.mlp.shared_expert_gate",
235
+ "model.layers.22.linear_attn.in_proj_qkvz",
236
+ "model.layers.22.linear_attn.in_proj_ba",
237
+ "model.layers.22.linear_attn.out_proj",
238
+ "model.layers.22.mlp.gate",
239
+ "model.layers.22.mlp.shared_expert_gate",
240
+ "model.layers.23.self_attn.q_proj",
241
+ "model.layers.23.self_attn.k_proj",
242
+ "model.layers.23.self_attn.v_proj",
243
+ "model.layers.23.mlp.gate",
244
+ "model.layers.23.mlp.shared_expert_gate",
245
+ "model.layers.24.linear_attn.in_proj_qkvz",
246
+ "model.layers.24.linear_attn.in_proj_ba",
247
+ "model.layers.24.linear_attn.out_proj",
248
+ "model.layers.24.mlp.gate",
249
+ "model.layers.24.mlp.shared_expert_gate",
250
+ "model.layers.25.linear_attn.in_proj_qkvz",
251
+ "model.layers.25.linear_attn.in_proj_ba",
252
+ "model.layers.25.linear_attn.out_proj",
253
+ "model.layers.25.mlp.gate",
254
+ "model.layers.25.mlp.shared_expert_gate",
255
+ "model.layers.26.linear_attn.in_proj_qkvz",
256
+ "model.layers.26.linear_attn.in_proj_ba",
257
+ "model.layers.26.linear_attn.out_proj",
258
+ "model.layers.26.mlp.gate",
259
+ "model.layers.26.mlp.shared_expert_gate",
260
+ "model.layers.27.self_attn.q_proj",
261
+ "model.layers.27.self_attn.k_proj",
262
+ "model.layers.27.self_attn.v_proj",
263
+ "model.layers.27.mlp.gate",
264
+ "model.layers.27.mlp.shared_expert_gate",
265
+ "model.layers.28.linear_attn.in_proj_qkvz",
266
+ "model.layers.28.linear_attn.in_proj_ba",
267
+ "model.layers.28.linear_attn.out_proj",
268
+ "model.layers.28.mlp.gate",
269
+ "model.layers.28.mlp.shared_expert_gate",
270
+ "model.layers.29.linear_attn.in_proj_qkvz",
271
+ "model.layers.29.linear_attn.in_proj_ba",
272
+ "model.layers.29.linear_attn.out_proj",
273
+ "model.layers.29.mlp.gate",
274
+ "model.layers.29.mlp.shared_expert_gate",
275
+ "model.layers.30.linear_attn.in_proj_qkvz",
276
+ "model.layers.30.linear_attn.in_proj_ba",
277
+ "model.layers.30.linear_attn.out_proj",
278
+ "model.layers.30.mlp.gate",
279
+ "model.layers.30.mlp.shared_expert_gate",
280
+ "model.layers.31.self_attn.q_proj",
281
+ "model.layers.31.self_attn.k_proj",
282
+ "model.layers.31.self_attn.v_proj",
283
+ "model.layers.31.mlp.gate",
284
+ "model.layers.31.mlp.shared_expert_gate",
285
+ "model.layers.32.linear_attn.in_proj_qkvz",
286
+ "model.layers.32.linear_attn.in_proj_ba",
287
+ "model.layers.32.linear_attn.out_proj",
288
+ "model.layers.32.mlp.gate",
289
+ "model.layers.32.mlp.shared_expert_gate",
290
+ "model.layers.33.linear_attn.in_proj_qkvz",
291
+ "model.layers.33.linear_attn.in_proj_ba",
292
+ "model.layers.33.linear_attn.out_proj",
293
+ "model.layers.33.mlp.gate",
294
+ "model.layers.33.mlp.shared_expert_gate",
295
+ "model.layers.34.linear_attn.in_proj_qkvz",
296
+ "model.layers.34.linear_attn.in_proj_ba",
297
+ "model.layers.34.linear_attn.out_proj",
298
+ "model.layers.34.mlp.gate",
299
+ "model.layers.34.mlp.shared_expert_gate",
300
+ "model.layers.35.self_attn.q_proj",
301
+ "model.layers.35.self_attn.k_proj",
302
+ "model.layers.35.self_attn.v_proj",
303
+ "model.layers.35.mlp.gate",
304
+ "model.layers.35.mlp.shared_expert_gate",
305
+ "model.layers.36.linear_attn.in_proj_qkvz",
306
+ "model.layers.36.linear_attn.in_proj_ba",
307
+ "model.layers.36.linear_attn.out_proj",
308
+ "model.layers.36.mlp.gate",
309
+ "model.layers.36.mlp.shared_expert_gate",
310
+ "model.layers.37.linear_attn.in_proj_qkvz",
311
+ "model.layers.37.linear_attn.in_proj_ba",
312
+ "model.layers.37.linear_attn.out_proj",
313
+ "model.layers.37.mlp.gate",
314
+ "model.layers.37.mlp.shared_expert_gate",
315
+ "model.layers.38.linear_attn.in_proj_qkvz",
316
+ "model.layers.38.linear_attn.in_proj_ba",
317
+ "model.layers.38.linear_attn.out_proj",
318
+ "model.layers.38.mlp.gate",
319
+ "model.layers.38.mlp.shared_expert_gate",
320
+ "model.layers.39.self_attn.q_proj",
321
+ "model.layers.39.self_attn.k_proj",
322
+ "model.layers.39.self_attn.v_proj",
323
+ "model.layers.39.mlp.gate",
324
+ "model.layers.39.mlp.shared_expert_gate",
325
+ "model.layers.40.linear_attn.in_proj_qkvz",
326
+ "model.layers.40.linear_attn.in_proj_ba",
327
+ "model.layers.40.linear_attn.out_proj",
328
+ "model.layers.40.mlp.gate",
329
+ "model.layers.40.mlp.shared_expert_gate",
330
+ "model.layers.41.linear_attn.in_proj_qkvz",
331
+ "model.layers.41.linear_attn.in_proj_ba",
332
+ "model.layers.41.linear_attn.out_proj",
333
+ "model.layers.41.mlp.gate",
334
+ "model.layers.41.mlp.shared_expert_gate",
335
+ "model.layers.42.linear_attn.in_proj_qkvz",
336
+ "model.layers.42.linear_attn.in_proj_ba",
337
+ "model.layers.42.linear_attn.out_proj",
338
+ "model.layers.42.mlp.gate",
339
+ "model.layers.42.mlp.shared_expert_gate",
340
+ "model.layers.43.self_attn.q_proj",
341
+ "model.layers.43.self_attn.k_proj",
342
+ "model.layers.43.self_attn.v_proj",
343
+ "model.layers.43.mlp.gate",
344
+ "model.layers.43.mlp.shared_expert_gate",
345
+ "model.layers.44.linear_attn.in_proj_qkvz",
346
+ "model.layers.44.linear_attn.in_proj_ba",
347
+ "model.layers.44.linear_attn.out_proj",
348
+ "model.layers.44.mlp.gate",
349
+ "model.layers.44.mlp.shared_expert_gate",
350
+ "model.layers.45.linear_attn.in_proj_qkvz",
351
+ "model.layers.45.linear_attn.in_proj_ba",
352
+ "model.layers.45.linear_attn.out_proj",
353
+ "model.layers.45.mlp.gate",
354
+ "model.layers.45.mlp.shared_expert_gate",
355
+ "model.layers.46.linear_attn.in_proj_qkvz",
356
+ "model.layers.46.linear_attn.in_proj_ba",
357
+ "model.layers.46.linear_attn.out_proj",
358
+ "model.layers.46.mlp.gate",
359
+ "model.layers.46.mlp.shared_expert_gate",
360
+ "model.layers.47.self_attn.q_proj",
361
+ "model.layers.47.self_attn.k_proj",
362
+ "model.layers.47.self_attn.v_proj",
363
+ "model.layers.47.mlp.gate",
364
+ "model.layers.47.mlp.shared_expert_gate",
365
+ "lm_head"
366
+ ],
367
+ "kv_cache_scheme": {
368
+ "actorder": null,
369
+ "block_structure": null,
370
+ "dynamic": false,
371
+ "group_size": null,
372
+ "num_bits": 8,
373
+ "observer": "minmax",
374
+ "observer_kwargs": {},
375
+ "scale_dtype": null,
376
+ "strategy": "tensor",
377
+ "symmetric": true,
378
+ "type": "float",
379
+ "zp_dtype": null
380
+ },
381
+ "quant_method": "compressed-tensors",
382
+ "quantization_status": "compressed",
383
+ "sparsity_config": {},
384
+ "transform_config": {},
385
+ "version": "0.13.0"
386
+ },
387
+ "rms_norm_eps": 1e-06,
388
+ "rope_scaling": null,
389
+ "rope_theta": 10000000,
390
+ "router_aux_loss_coef": 0.001,
391
+ "shared_expert_intermediate_size": 512,
392
+ "tie_word_embeddings": false,
393
+ "transformers_version": "4.57.3",
394
+ "use_cache": true,
395
+ "use_sliding_window": false,
396
+ "vocab_size": 151936
397
+ }
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
+ "pad_token_id": 151643,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.57.3"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed43eb344e7aa9982ba957769d066b2407a00917f464ad025b4d40eb72f5d8cb
3
+ size 5003011012
model-00002-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61f6b97bfc536301458a0267192fb0a52cddcfb3cbf90bd557454fac2b5f714d
3
+ size 5003478524
model-00003-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7b457310dbeb732ffdf65fd0a899ff905c76540dd69897cfc972dcdd89715ef
3
+ size 5003507972
model-00004-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1ba8680feb7094115b5a31bbca80f8bd553b44710edcbc139c17f8ca898ba7f
3
+ size 5003926408
model-00005-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07e2359f72938fa962637e4a5fc11bd4c3e42956612d8d5f42202c2126c78355
3
+ size 5003398580
model-00006-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b79db810c5f012fdd8941e0fb1a6493a7299de93b8e698f43609385570580989
3
+ size 5003509356
model-00007-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d8039ae379c1d6b11cb81268b16f720edc48c83c9e4187332e946ebcba63486
3
+ size 5003926304
model-00008-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81cd4fd5245b713b043f0de61ebbaa4d136273c881d81e2fea15671ee1921a32
3
+ size 5003510300
model-00009-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12eb9f26db7125e850ba1b352f58f0e4a5e01ad23133699d542570a0c49bf796
3
+ size 5003510300
model-00010-of-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:679c81a5932845df41f135801887d5ee3c4cc5d8d9e45767e8a29663cc56bb18
3
+ size 2860485028
model.safetensors.index.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a488454fda059b21e6fbd931c6a4d730e959209b116581390d14f947eef3f012
3
+ size 29720175
quantize_meta.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "source_model": "Qwen/Qwen3-Next-80B-A3B-Instruct",
3
+ "format": "nvfp4",
4
+ "suffix": "NVFP4",
5
+ "is_moe": true,
6
+ "num_experts": "512",
7
+ "device_mode": "auto",
8
+ "ignore_layers_count": 385,
9
+ "kv_cache_fp8_requested": true,
10
+ "kv_cache_fp8_calibrated": true,
11
+ "calibration": {
12
+ "file": "/workspace/calib.jsonl",
13
+ "samples_requested": 512,
14
+ "samples_actual": 512,
15
+ "max_seq_length": 1024,
16
+ "dataset_total": 2588,
17
+ "dataset_valid": 2588,
18
+ "token_mean": 545,
19
+ "token_p90": 913,
20
+ "token_p95": 1374
21
+ }
22
+ }
recipe.yaml ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_stage:
2
+ default_modifiers:
3
+ QuantizationModifier:
4
+ targets: [Linear]
5
+ ignore: [lm_head, model.layers.0.linear_attn, model.layers.0.linear_attn.act, model.layers.0.linear_attn.conv1d,
6
+ model.layers.0.linear_attn.in_proj_ba, model.layers.0.linear_attn.in_proj_qkvz, model.layers.0.linear_attn.norm,
7
+ model.layers.0.linear_attn.out_proj, model.layers.0.mlp.gate, model.layers.0.mlp.shared_expert_gate,
8
+ model.layers.1.linear_attn, model.layers.1.linear_attn.act, model.layers.1.linear_attn.conv1d,
9
+ model.layers.1.linear_attn.in_proj_ba, model.layers.1.linear_attn.in_proj_qkvz, model.layers.1.linear_attn.norm,
10
+ model.layers.1.linear_attn.out_proj, model.layers.1.mlp.gate, model.layers.1.mlp.shared_expert_gate,
11
+ model.layers.10.linear_attn, model.layers.10.linear_attn.act, model.layers.10.linear_attn.conv1d,
12
+ model.layers.10.linear_attn.in_proj_ba, model.layers.10.linear_attn.in_proj_qkvz,
13
+ model.layers.10.linear_attn.norm, model.layers.10.linear_attn.out_proj, model.layers.10.mlp.gate,
14
+ model.layers.10.mlp.shared_expert_gate, model.layers.11.mlp.gate, model.layers.11.mlp.shared_expert_gate,
15
+ model.layers.11.self_attn.k_proj, model.layers.11.self_attn.q_proj, model.layers.11.self_attn.v_proj,
16
+ model.layers.12.linear_attn, model.layers.12.linear_attn.act, model.layers.12.linear_attn.conv1d,
17
+ model.layers.12.linear_attn.in_proj_ba, model.layers.12.linear_attn.in_proj_qkvz,
18
+ model.layers.12.linear_attn.norm, model.layers.12.linear_attn.out_proj, model.layers.12.mlp.gate,
19
+ model.layers.12.mlp.shared_expert_gate, model.layers.13.linear_attn, model.layers.13.linear_attn.act,
20
+ model.layers.13.linear_attn.conv1d, model.layers.13.linear_attn.in_proj_ba, model.layers.13.linear_attn.in_proj_qkvz,
21
+ model.layers.13.linear_attn.norm, model.layers.13.linear_attn.out_proj, model.layers.13.mlp.gate,
22
+ model.layers.13.mlp.shared_expert_gate, model.layers.14.linear_attn, model.layers.14.linear_attn.act,
23
+ model.layers.14.linear_attn.conv1d, model.layers.14.linear_attn.in_proj_ba, model.layers.14.linear_attn.in_proj_qkvz,
24
+ model.layers.14.linear_attn.norm, model.layers.14.linear_attn.out_proj, model.layers.14.mlp.gate,
25
+ model.layers.14.mlp.shared_expert_gate, model.layers.15.mlp.gate, model.layers.15.mlp.shared_expert_gate,
26
+ model.layers.15.self_attn.k_proj, model.layers.15.self_attn.q_proj, model.layers.15.self_attn.v_proj,
27
+ model.layers.16.linear_attn, model.layers.16.linear_attn.act, model.layers.16.linear_attn.conv1d,
28
+ model.layers.16.linear_attn.in_proj_ba, model.layers.16.linear_attn.in_proj_qkvz,
29
+ model.layers.16.linear_attn.norm, model.layers.16.linear_attn.out_proj, model.layers.16.mlp.gate,
30
+ model.layers.16.mlp.shared_expert_gate, model.layers.17.linear_attn, model.layers.17.linear_attn.act,
31
+ model.layers.17.linear_attn.conv1d, model.layers.17.linear_attn.in_proj_ba, model.layers.17.linear_attn.in_proj_qkvz,
32
+ model.layers.17.linear_attn.norm, model.layers.17.linear_attn.out_proj, model.layers.17.mlp.gate,
33
+ model.layers.17.mlp.shared_expert_gate, model.layers.18.linear_attn, model.layers.18.linear_attn.act,
34
+ model.layers.18.linear_attn.conv1d, model.layers.18.linear_attn.in_proj_ba, model.layers.18.linear_attn.in_proj_qkvz,
35
+ model.layers.18.linear_attn.norm, model.layers.18.linear_attn.out_proj, model.layers.18.mlp.gate,
36
+ model.layers.18.mlp.shared_expert_gate, model.layers.19.mlp.gate, model.layers.19.mlp.shared_expert_gate,
37
+ model.layers.19.self_attn.k_proj, model.layers.19.self_attn.q_proj, model.layers.19.self_attn.v_proj,
38
+ model.layers.2.linear_attn, model.layers.2.linear_attn.act, model.layers.2.linear_attn.conv1d,
39
+ model.layers.2.linear_attn.in_proj_ba, model.layers.2.linear_attn.in_proj_qkvz, model.layers.2.linear_attn.norm,
40
+ model.layers.2.linear_attn.out_proj, model.layers.2.mlp.gate, model.layers.2.mlp.shared_expert_gate,
41
+ model.layers.20.linear_attn, model.layers.20.linear_attn.act, model.layers.20.linear_attn.conv1d,
42
+ model.layers.20.linear_attn.in_proj_ba, model.layers.20.linear_attn.in_proj_qkvz,
43
+ model.layers.20.linear_attn.norm, model.layers.20.linear_attn.out_proj, model.layers.20.mlp.gate,
44
+ model.layers.20.mlp.shared_expert_gate, model.layers.21.linear_attn, model.layers.21.linear_attn.act,
45
+ model.layers.21.linear_attn.conv1d, model.layers.21.linear_attn.in_proj_ba, model.layers.21.linear_attn.in_proj_qkvz,
46
+ model.layers.21.linear_attn.norm, model.layers.21.linear_attn.out_proj, model.layers.21.mlp.gate,
47
+ model.layers.21.mlp.shared_expert_gate, model.layers.22.linear_attn, model.layers.22.linear_attn.act,
48
+ model.layers.22.linear_attn.conv1d, model.layers.22.linear_attn.in_proj_ba, model.layers.22.linear_attn.in_proj_qkvz,
49
+ model.layers.22.linear_attn.norm, model.layers.22.linear_attn.out_proj, model.layers.22.mlp.gate,
50
+ model.layers.22.mlp.shared_expert_gate, model.layers.23.mlp.gate, model.layers.23.mlp.shared_expert_gate,
51
+ model.layers.23.self_attn.k_proj, model.layers.23.self_attn.q_proj, model.layers.23.self_attn.v_proj,
52
+ model.layers.24.linear_attn, model.layers.24.linear_attn.act, model.layers.24.linear_attn.conv1d,
53
+ model.layers.24.linear_attn.in_proj_ba, model.layers.24.linear_attn.in_proj_qkvz,
54
+ model.layers.24.linear_attn.norm, model.layers.24.linear_attn.out_proj, model.layers.24.mlp.gate,
55
+ model.layers.24.mlp.shared_expert_gate, model.layers.25.linear_attn, model.layers.25.linear_attn.act,
56
+ model.layers.25.linear_attn.conv1d, model.layers.25.linear_attn.in_proj_ba, model.layers.25.linear_attn.in_proj_qkvz,
57
+ model.layers.25.linear_attn.norm, model.layers.25.linear_attn.out_proj, model.layers.25.mlp.gate,
58
+ model.layers.25.mlp.shared_expert_gate, model.layers.26.linear_attn, model.layers.26.linear_attn.act,
59
+ model.layers.26.linear_attn.conv1d, model.layers.26.linear_attn.in_proj_ba, model.layers.26.linear_attn.in_proj_qkvz,
60
+ model.layers.26.linear_attn.norm, model.layers.26.linear_attn.out_proj, model.layers.26.mlp.gate,
61
+ model.layers.26.mlp.shared_expert_gate, model.layers.27.mlp.gate, model.layers.27.mlp.shared_expert_gate,
62
+ model.layers.27.self_attn.k_proj, model.layers.27.self_attn.q_proj, model.layers.27.self_attn.v_proj,
63
+ model.layers.28.linear_attn, model.layers.28.linear_attn.act, model.layers.28.linear_attn.conv1d,
64
+ model.layers.28.linear_attn.in_proj_ba, model.layers.28.linear_attn.in_proj_qkvz,
65
+ model.layers.28.linear_attn.norm, model.layers.28.linear_attn.out_proj, model.layers.28.mlp.gate,
66
+ model.layers.28.mlp.shared_expert_gate, model.layers.29.linear_attn, model.layers.29.linear_attn.act,
67
+ model.layers.29.linear_attn.conv1d, model.layers.29.linear_attn.in_proj_ba, model.layers.29.linear_attn.in_proj_qkvz,
68
+ model.layers.29.linear_attn.norm, model.layers.29.linear_attn.out_proj, model.layers.29.mlp.gate,
69
+ model.layers.29.mlp.shared_expert_gate, model.layers.3.mlp.gate, model.layers.3.mlp.shared_expert_gate,
70
+ model.layers.3.self_attn.k_proj, model.layers.3.self_attn.q_proj, model.layers.3.self_attn.v_proj,
71
+ model.layers.30.linear_attn, model.layers.30.linear_attn.act, model.layers.30.linear_attn.conv1d,
72
+ model.layers.30.linear_attn.in_proj_ba, model.layers.30.linear_attn.in_proj_qkvz,
73
+ model.layers.30.linear_attn.norm, model.layers.30.linear_attn.out_proj, model.layers.30.mlp.gate,
74
+ model.layers.30.mlp.shared_expert_gate, model.layers.31.mlp.gate, model.layers.31.mlp.shared_expert_gate,
75
+ model.layers.31.self_attn.k_proj, model.layers.31.self_attn.q_proj, model.layers.31.self_attn.v_proj,
76
+ model.layers.32.linear_attn, model.layers.32.linear_attn.act, model.layers.32.linear_attn.conv1d,
77
+ model.layers.32.linear_attn.in_proj_ba, model.layers.32.linear_attn.in_proj_qkvz,
78
+ model.layers.32.linear_attn.norm, model.layers.32.linear_attn.out_proj, model.layers.32.mlp.gate,
79
+ model.layers.32.mlp.shared_expert_gate, model.layers.33.linear_attn, model.layers.33.linear_attn.act,
80
+ model.layers.33.linear_attn.conv1d, model.layers.33.linear_attn.in_proj_ba, model.layers.33.linear_attn.in_proj_qkvz,
81
+ model.layers.33.linear_attn.norm, model.layers.33.linear_attn.out_proj, model.layers.33.mlp.gate,
82
+ model.layers.33.mlp.shared_expert_gate, model.layers.34.linear_attn, model.layers.34.linear_attn.act,
83
+ model.layers.34.linear_attn.conv1d, model.layers.34.linear_attn.in_proj_ba, model.layers.34.linear_attn.in_proj_qkvz,
84
+ model.layers.34.linear_attn.norm, model.layers.34.linear_attn.out_proj, model.layers.34.mlp.gate,
85
+ model.layers.34.mlp.shared_expert_gate, model.layers.35.mlp.gate, model.layers.35.mlp.shared_expert_gate,
86
+ model.layers.35.self_attn.k_proj, model.layers.35.self_attn.q_proj, model.layers.35.self_attn.v_proj,
87
+ model.layers.36.linear_attn, model.layers.36.linear_attn.act, model.layers.36.linear_attn.conv1d,
88
+ model.layers.36.linear_attn.in_proj_ba, model.layers.36.linear_attn.in_proj_qkvz,
89
+ model.layers.36.linear_attn.norm, model.layers.36.linear_attn.out_proj, model.layers.36.mlp.gate,
90
+ model.layers.36.mlp.shared_expert_gate, model.layers.37.linear_attn, model.layers.37.linear_attn.act,
91
+ model.layers.37.linear_attn.conv1d, model.layers.37.linear_attn.in_proj_ba, model.layers.37.linear_attn.in_proj_qkvz,
92
+ model.layers.37.linear_attn.norm, model.layers.37.linear_attn.out_proj, model.layers.37.mlp.gate,
93
+ model.layers.37.mlp.shared_expert_gate, model.layers.38.linear_attn, model.layers.38.linear_attn.act,
94
+ model.layers.38.linear_attn.conv1d, model.layers.38.linear_attn.in_proj_ba, model.layers.38.linear_attn.in_proj_qkvz,
95
+ model.layers.38.linear_attn.norm, model.layers.38.linear_attn.out_proj, model.layers.38.mlp.gate,
96
+ model.layers.38.mlp.shared_expert_gate, model.layers.39.mlp.gate, model.layers.39.mlp.shared_expert_gate,
97
+ model.layers.39.self_attn.k_proj, model.layers.39.self_attn.q_proj, model.layers.39.self_attn.v_proj,
98
+ model.layers.4.linear_attn, model.layers.4.linear_attn.act, model.layers.4.linear_attn.conv1d,
99
+ model.layers.4.linear_attn.in_proj_ba, model.layers.4.linear_attn.in_proj_qkvz, model.layers.4.linear_attn.norm,
100
+ model.layers.4.linear_attn.out_proj, model.layers.4.mlp.gate, model.layers.4.mlp.shared_expert_gate,
101
+ model.layers.40.linear_attn, model.layers.40.linear_attn.act, model.layers.40.linear_attn.conv1d,
102
+ model.layers.40.linear_attn.in_proj_ba, model.layers.40.linear_attn.in_proj_qkvz,
103
+ model.layers.40.linear_attn.norm, model.layers.40.linear_attn.out_proj, model.layers.40.mlp.gate,
104
+ model.layers.40.mlp.shared_expert_gate, model.layers.41.linear_attn, model.layers.41.linear_attn.act,
105
+ model.layers.41.linear_attn.conv1d, model.layers.41.linear_attn.in_proj_ba, model.layers.41.linear_attn.in_proj_qkvz,
106
+ model.layers.41.linear_attn.norm, model.layers.41.linear_attn.out_proj, model.layers.41.mlp.gate,
107
+ model.layers.41.mlp.shared_expert_gate, model.layers.42.linear_attn, model.layers.42.linear_attn.act,
108
+ model.layers.42.linear_attn.conv1d, model.layers.42.linear_attn.in_proj_ba, model.layers.42.linear_attn.in_proj_qkvz,
109
+ model.layers.42.linear_attn.norm, model.layers.42.linear_attn.out_proj, model.layers.42.mlp.gate,
110
+ model.layers.42.mlp.shared_expert_gate, model.layers.43.mlp.gate, model.layers.43.mlp.shared_expert_gate,
111
+ model.layers.43.self_attn.k_proj, model.layers.43.self_attn.q_proj, model.layers.43.self_attn.v_proj,
112
+ model.layers.44.linear_attn, model.layers.44.linear_attn.act, model.layers.44.linear_attn.conv1d,
113
+ model.layers.44.linear_attn.in_proj_ba, model.layers.44.linear_attn.in_proj_qkvz,
114
+ model.layers.44.linear_attn.norm, model.layers.44.linear_attn.out_proj, model.layers.44.mlp.gate,
115
+ model.layers.44.mlp.shared_expert_gate, model.layers.45.linear_attn, model.layers.45.linear_attn.act,
116
+ model.layers.45.linear_attn.conv1d, model.layers.45.linear_attn.in_proj_ba, model.layers.45.linear_attn.in_proj_qkvz,
117
+ model.layers.45.linear_attn.norm, model.layers.45.linear_attn.out_proj, model.layers.45.mlp.gate,
118
+ model.layers.45.mlp.shared_expert_gate, model.layers.46.linear_attn, model.layers.46.linear_attn.act,
119
+ model.layers.46.linear_attn.conv1d, model.layers.46.linear_attn.in_proj_ba, model.layers.46.linear_attn.in_proj_qkvz,
120
+ model.layers.46.linear_attn.norm, model.layers.46.linear_attn.out_proj, model.layers.46.mlp.gate,
121
+ model.layers.46.mlp.shared_expert_gate, model.layers.47.mlp.gate, model.layers.47.mlp.shared_expert_gate,
122
+ model.layers.47.self_attn.k_proj, model.layers.47.self_attn.q_proj, model.layers.47.self_attn.v_proj,
123
+ model.layers.5.linear_attn, model.layers.5.linear_attn.act, model.layers.5.linear_attn.conv1d,
124
+ model.layers.5.linear_attn.in_proj_ba, model.layers.5.linear_attn.in_proj_qkvz, model.layers.5.linear_attn.norm,
125
+ model.layers.5.linear_attn.out_proj, model.layers.5.mlp.gate, model.layers.5.mlp.shared_expert_gate,
126
+ model.layers.6.linear_attn, model.layers.6.linear_attn.act, model.layers.6.linear_attn.conv1d,
127
+ model.layers.6.linear_attn.in_proj_ba, model.layers.6.linear_attn.in_proj_qkvz, model.layers.6.linear_attn.norm,
128
+ model.layers.6.linear_attn.out_proj, model.layers.6.mlp.gate, model.layers.6.mlp.shared_expert_gate,
129
+ model.layers.7.mlp.gate, model.layers.7.mlp.shared_expert_gate, model.layers.7.self_attn.k_proj,
130
+ model.layers.7.self_attn.q_proj, model.layers.7.self_attn.v_proj, model.layers.8.linear_attn,
131
+ model.layers.8.linear_attn.act, model.layers.8.linear_attn.conv1d, model.layers.8.linear_attn.in_proj_ba,
132
+ model.layers.8.linear_attn.in_proj_qkvz, model.layers.8.linear_attn.norm, model.layers.8.linear_attn.out_proj,
133
+ model.layers.8.mlp.gate, model.layers.8.mlp.shared_expert_gate, model.layers.9.linear_attn,
134
+ model.layers.9.linear_attn.act, model.layers.9.linear_attn.conv1d, model.layers.9.linear_attn.in_proj_ba,
135
+ model.layers.9.linear_attn.in_proj_qkvz, model.layers.9.linear_attn.norm, model.layers.9.linear_attn.out_proj,
136
+ model.layers.9.mlp.gate, model.layers.9.mlp.shared_expert_gate]
137
+ scheme: NVFP4
138
+ kv_cache_scheme:
139
+ num_bits: 8
140
+ type: float
141
+ symmetric: true
142
+ group_size: null
143
+ strategy: tensor
144
+ block_structure: null
145
+ dynamic: false
146
+ actorder: null
147
+ scale_dtype: null
148
+ zp_dtype: null
149
+ observer: minmax
150
+ observer_kwargs: {}
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
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
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 1010000,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff