techAInewb commited on
Commit
6f3eb08
·
verified ·
1 Parent(s): 8fd54d2

Upload 10 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
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,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151643,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "layer_types": [
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention"
43
+ ],
44
+ "max_position_embeddings": 32768,
45
+ "max_window_layers": 28,
46
+ "model_type": "qwen3",
47
+ "num_attention_heads": 16,
48
+ "num_hidden_layers": 28,
49
+ "num_key_value_heads": 8,
50
+ "rms_norm_eps": 1e-06,
51
+ "rope_scaling": null,
52
+ "rope_theta": 1000000,
53
+ "sliding_window": null,
54
+ "tie_word_embeddings": true,
55
+ "torch_dtype": "float16",
56
+ "transformers_version": "4.55.4",
57
+ "use_cache": true,
58
+ "use_sliding_window": false,
59
+ "vocab_size": 151669
60
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0636ff61ab5469bd2ac1068ab6dff5f34602f8b68ad4fdbef41eccf8d1726691
3
+ size 751936280
quantization_map.json ADDED
@@ -0,0 +1,786 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "layers.0.self_attn.q_proj": {
3
+ "weights": "qint8",
4
+ "activations": "none"
5
+ },
6
+ "layers.0.self_attn.k_proj": {
7
+ "weights": "qint8",
8
+ "activations": "none"
9
+ },
10
+ "layers.0.self_attn.v_proj": {
11
+ "weights": "qint8",
12
+ "activations": "none"
13
+ },
14
+ "layers.0.self_attn.o_proj": {
15
+ "weights": "qint8",
16
+ "activations": "none"
17
+ },
18
+ "layers.0.mlp.gate_proj": {
19
+ "weights": "qint8",
20
+ "activations": "none"
21
+ },
22
+ "layers.0.mlp.up_proj": {
23
+ "weights": "qint8",
24
+ "activations": "none"
25
+ },
26
+ "layers.0.mlp.down_proj": {
27
+ "weights": "qint8",
28
+ "activations": "none"
29
+ },
30
+ "layers.1.self_attn.q_proj": {
31
+ "weights": "qint8",
32
+ "activations": "none"
33
+ },
34
+ "layers.1.self_attn.k_proj": {
35
+ "weights": "qint8",
36
+ "activations": "none"
37
+ },
38
+ "layers.1.self_attn.v_proj": {
39
+ "weights": "qint8",
40
+ "activations": "none"
41
+ },
42
+ "layers.1.self_attn.o_proj": {
43
+ "weights": "qint8",
44
+ "activations": "none"
45
+ },
46
+ "layers.1.mlp.gate_proj": {
47
+ "weights": "qint8",
48
+ "activations": "none"
49
+ },
50
+ "layers.1.mlp.up_proj": {
51
+ "weights": "qint8",
52
+ "activations": "none"
53
+ },
54
+ "layers.1.mlp.down_proj": {
55
+ "weights": "qint8",
56
+ "activations": "none"
57
+ },
58
+ "layers.2.self_attn.q_proj": {
59
+ "weights": "qint8",
60
+ "activations": "none"
61
+ },
62
+ "layers.2.self_attn.k_proj": {
63
+ "weights": "qint8",
64
+ "activations": "none"
65
+ },
66
+ "layers.2.self_attn.v_proj": {
67
+ "weights": "qint8",
68
+ "activations": "none"
69
+ },
70
+ "layers.2.self_attn.o_proj": {
71
+ "weights": "qint8",
72
+ "activations": "none"
73
+ },
74
+ "layers.2.mlp.gate_proj": {
75
+ "weights": "qint8",
76
+ "activations": "none"
77
+ },
78
+ "layers.2.mlp.up_proj": {
79
+ "weights": "qint8",
80
+ "activations": "none"
81
+ },
82
+ "layers.2.mlp.down_proj": {
83
+ "weights": "qint8",
84
+ "activations": "none"
85
+ },
86
+ "layers.3.self_attn.q_proj": {
87
+ "weights": "qint8",
88
+ "activations": "none"
89
+ },
90
+ "layers.3.self_attn.k_proj": {
91
+ "weights": "qint8",
92
+ "activations": "none"
93
+ },
94
+ "layers.3.self_attn.v_proj": {
95
+ "weights": "qint8",
96
+ "activations": "none"
97
+ },
98
+ "layers.3.self_attn.o_proj": {
99
+ "weights": "qint8",
100
+ "activations": "none"
101
+ },
102
+ "layers.3.mlp.gate_proj": {
103
+ "weights": "qint8",
104
+ "activations": "none"
105
+ },
106
+ "layers.3.mlp.up_proj": {
107
+ "weights": "qint8",
108
+ "activations": "none"
109
+ },
110
+ "layers.3.mlp.down_proj": {
111
+ "weights": "qint8",
112
+ "activations": "none"
113
+ },
114
+ "layers.4.self_attn.q_proj": {
115
+ "weights": "qint8",
116
+ "activations": "none"
117
+ },
118
+ "layers.4.self_attn.k_proj": {
119
+ "weights": "qint8",
120
+ "activations": "none"
121
+ },
122
+ "layers.4.self_attn.v_proj": {
123
+ "weights": "qint8",
124
+ "activations": "none"
125
+ },
126
+ "layers.4.self_attn.o_proj": {
127
+ "weights": "qint8",
128
+ "activations": "none"
129
+ },
130
+ "layers.4.mlp.gate_proj": {
131
+ "weights": "qint8",
132
+ "activations": "none"
133
+ },
134
+ "layers.4.mlp.up_proj": {
135
+ "weights": "qint8",
136
+ "activations": "none"
137
+ },
138
+ "layers.4.mlp.down_proj": {
139
+ "weights": "qint8",
140
+ "activations": "none"
141
+ },
142
+ "layers.5.self_attn.q_proj": {
143
+ "weights": "qint8",
144
+ "activations": "none"
145
+ },
146
+ "layers.5.self_attn.k_proj": {
147
+ "weights": "qint8",
148
+ "activations": "none"
149
+ },
150
+ "layers.5.self_attn.v_proj": {
151
+ "weights": "qint8",
152
+ "activations": "none"
153
+ },
154
+ "layers.5.self_attn.o_proj": {
155
+ "weights": "qint8",
156
+ "activations": "none"
157
+ },
158
+ "layers.5.mlp.gate_proj": {
159
+ "weights": "qint8",
160
+ "activations": "none"
161
+ },
162
+ "layers.5.mlp.up_proj": {
163
+ "weights": "qint8",
164
+ "activations": "none"
165
+ },
166
+ "layers.5.mlp.down_proj": {
167
+ "weights": "qint8",
168
+ "activations": "none"
169
+ },
170
+ "layers.6.self_attn.q_proj": {
171
+ "weights": "qint8",
172
+ "activations": "none"
173
+ },
174
+ "layers.6.self_attn.k_proj": {
175
+ "weights": "qint8",
176
+ "activations": "none"
177
+ },
178
+ "layers.6.self_attn.v_proj": {
179
+ "weights": "qint8",
180
+ "activations": "none"
181
+ },
182
+ "layers.6.self_attn.o_proj": {
183
+ "weights": "qint8",
184
+ "activations": "none"
185
+ },
186
+ "layers.6.mlp.gate_proj": {
187
+ "weights": "qint8",
188
+ "activations": "none"
189
+ },
190
+ "layers.6.mlp.up_proj": {
191
+ "weights": "qint8",
192
+ "activations": "none"
193
+ },
194
+ "layers.6.mlp.down_proj": {
195
+ "weights": "qint8",
196
+ "activations": "none"
197
+ },
198
+ "layers.7.self_attn.q_proj": {
199
+ "weights": "qint8",
200
+ "activations": "none"
201
+ },
202
+ "layers.7.self_attn.k_proj": {
203
+ "weights": "qint8",
204
+ "activations": "none"
205
+ },
206
+ "layers.7.self_attn.v_proj": {
207
+ "weights": "qint8",
208
+ "activations": "none"
209
+ },
210
+ "layers.7.self_attn.o_proj": {
211
+ "weights": "qint8",
212
+ "activations": "none"
213
+ },
214
+ "layers.7.mlp.gate_proj": {
215
+ "weights": "qint8",
216
+ "activations": "none"
217
+ },
218
+ "layers.7.mlp.up_proj": {
219
+ "weights": "qint8",
220
+ "activations": "none"
221
+ },
222
+ "layers.7.mlp.down_proj": {
223
+ "weights": "qint8",
224
+ "activations": "none"
225
+ },
226
+ "layers.8.self_attn.q_proj": {
227
+ "weights": "qint8",
228
+ "activations": "none"
229
+ },
230
+ "layers.8.self_attn.k_proj": {
231
+ "weights": "qint8",
232
+ "activations": "none"
233
+ },
234
+ "layers.8.self_attn.v_proj": {
235
+ "weights": "qint8",
236
+ "activations": "none"
237
+ },
238
+ "layers.8.self_attn.o_proj": {
239
+ "weights": "qint8",
240
+ "activations": "none"
241
+ },
242
+ "layers.8.mlp.gate_proj": {
243
+ "weights": "qint8",
244
+ "activations": "none"
245
+ },
246
+ "layers.8.mlp.up_proj": {
247
+ "weights": "qint8",
248
+ "activations": "none"
249
+ },
250
+ "layers.8.mlp.down_proj": {
251
+ "weights": "qint8",
252
+ "activations": "none"
253
+ },
254
+ "layers.9.self_attn.q_proj": {
255
+ "weights": "qint8",
256
+ "activations": "none"
257
+ },
258
+ "layers.9.self_attn.k_proj": {
259
+ "weights": "qint8",
260
+ "activations": "none"
261
+ },
262
+ "layers.9.self_attn.v_proj": {
263
+ "weights": "qint8",
264
+ "activations": "none"
265
+ },
266
+ "layers.9.self_attn.o_proj": {
267
+ "weights": "qint8",
268
+ "activations": "none"
269
+ },
270
+ "layers.9.mlp.gate_proj": {
271
+ "weights": "qint8",
272
+ "activations": "none"
273
+ },
274
+ "layers.9.mlp.up_proj": {
275
+ "weights": "qint8",
276
+ "activations": "none"
277
+ },
278
+ "layers.9.mlp.down_proj": {
279
+ "weights": "qint8",
280
+ "activations": "none"
281
+ },
282
+ "layers.10.self_attn.q_proj": {
283
+ "weights": "qint8",
284
+ "activations": "none"
285
+ },
286
+ "layers.10.self_attn.k_proj": {
287
+ "weights": "qint8",
288
+ "activations": "none"
289
+ },
290
+ "layers.10.self_attn.v_proj": {
291
+ "weights": "qint8",
292
+ "activations": "none"
293
+ },
294
+ "layers.10.self_attn.o_proj": {
295
+ "weights": "qint8",
296
+ "activations": "none"
297
+ },
298
+ "layers.10.mlp.gate_proj": {
299
+ "weights": "qint8",
300
+ "activations": "none"
301
+ },
302
+ "layers.10.mlp.up_proj": {
303
+ "weights": "qint8",
304
+ "activations": "none"
305
+ },
306
+ "layers.10.mlp.down_proj": {
307
+ "weights": "qint8",
308
+ "activations": "none"
309
+ },
310
+ "layers.11.self_attn.q_proj": {
311
+ "weights": "qint8",
312
+ "activations": "none"
313
+ },
314
+ "layers.11.self_attn.k_proj": {
315
+ "weights": "qint8",
316
+ "activations": "none"
317
+ },
318
+ "layers.11.self_attn.v_proj": {
319
+ "weights": "qint8",
320
+ "activations": "none"
321
+ },
322
+ "layers.11.self_attn.o_proj": {
323
+ "weights": "qint8",
324
+ "activations": "none"
325
+ },
326
+ "layers.11.mlp.gate_proj": {
327
+ "weights": "qint8",
328
+ "activations": "none"
329
+ },
330
+ "layers.11.mlp.up_proj": {
331
+ "weights": "qint8",
332
+ "activations": "none"
333
+ },
334
+ "layers.11.mlp.down_proj": {
335
+ "weights": "qint8",
336
+ "activations": "none"
337
+ },
338
+ "layers.12.self_attn.q_proj": {
339
+ "weights": "qint8",
340
+ "activations": "none"
341
+ },
342
+ "layers.12.self_attn.k_proj": {
343
+ "weights": "qint8",
344
+ "activations": "none"
345
+ },
346
+ "layers.12.self_attn.v_proj": {
347
+ "weights": "qint8",
348
+ "activations": "none"
349
+ },
350
+ "layers.12.self_attn.o_proj": {
351
+ "weights": "qint8",
352
+ "activations": "none"
353
+ },
354
+ "layers.12.mlp.gate_proj": {
355
+ "weights": "qint8",
356
+ "activations": "none"
357
+ },
358
+ "layers.12.mlp.up_proj": {
359
+ "weights": "qint8",
360
+ "activations": "none"
361
+ },
362
+ "layers.12.mlp.down_proj": {
363
+ "weights": "qint8",
364
+ "activations": "none"
365
+ },
366
+ "layers.13.self_attn.q_proj": {
367
+ "weights": "qint8",
368
+ "activations": "none"
369
+ },
370
+ "layers.13.self_attn.k_proj": {
371
+ "weights": "qint8",
372
+ "activations": "none"
373
+ },
374
+ "layers.13.self_attn.v_proj": {
375
+ "weights": "qint8",
376
+ "activations": "none"
377
+ },
378
+ "layers.13.self_attn.o_proj": {
379
+ "weights": "qint8",
380
+ "activations": "none"
381
+ },
382
+ "layers.13.mlp.gate_proj": {
383
+ "weights": "qint8",
384
+ "activations": "none"
385
+ },
386
+ "layers.13.mlp.up_proj": {
387
+ "weights": "qint8",
388
+ "activations": "none"
389
+ },
390
+ "layers.13.mlp.down_proj": {
391
+ "weights": "qint8",
392
+ "activations": "none"
393
+ },
394
+ "layers.14.self_attn.q_proj": {
395
+ "weights": "qint8",
396
+ "activations": "none"
397
+ },
398
+ "layers.14.self_attn.k_proj": {
399
+ "weights": "qint8",
400
+ "activations": "none"
401
+ },
402
+ "layers.14.self_attn.v_proj": {
403
+ "weights": "qint8",
404
+ "activations": "none"
405
+ },
406
+ "layers.14.self_attn.o_proj": {
407
+ "weights": "qint8",
408
+ "activations": "none"
409
+ },
410
+ "layers.14.mlp.gate_proj": {
411
+ "weights": "qint8",
412
+ "activations": "none"
413
+ },
414
+ "layers.14.mlp.up_proj": {
415
+ "weights": "qint8",
416
+ "activations": "none"
417
+ },
418
+ "layers.14.mlp.down_proj": {
419
+ "weights": "qint8",
420
+ "activations": "none"
421
+ },
422
+ "layers.15.self_attn.q_proj": {
423
+ "weights": "qint8",
424
+ "activations": "none"
425
+ },
426
+ "layers.15.self_attn.k_proj": {
427
+ "weights": "qint8",
428
+ "activations": "none"
429
+ },
430
+ "layers.15.self_attn.v_proj": {
431
+ "weights": "qint8",
432
+ "activations": "none"
433
+ },
434
+ "layers.15.self_attn.o_proj": {
435
+ "weights": "qint8",
436
+ "activations": "none"
437
+ },
438
+ "layers.15.mlp.gate_proj": {
439
+ "weights": "qint8",
440
+ "activations": "none"
441
+ },
442
+ "layers.15.mlp.up_proj": {
443
+ "weights": "qint8",
444
+ "activations": "none"
445
+ },
446
+ "layers.15.mlp.down_proj": {
447
+ "weights": "qint8",
448
+ "activations": "none"
449
+ },
450
+ "layers.16.self_attn.q_proj": {
451
+ "weights": "qint8",
452
+ "activations": "none"
453
+ },
454
+ "layers.16.self_attn.k_proj": {
455
+ "weights": "qint8",
456
+ "activations": "none"
457
+ },
458
+ "layers.16.self_attn.v_proj": {
459
+ "weights": "qint8",
460
+ "activations": "none"
461
+ },
462
+ "layers.16.self_attn.o_proj": {
463
+ "weights": "qint8",
464
+ "activations": "none"
465
+ },
466
+ "layers.16.mlp.gate_proj": {
467
+ "weights": "qint8",
468
+ "activations": "none"
469
+ },
470
+ "layers.16.mlp.up_proj": {
471
+ "weights": "qint8",
472
+ "activations": "none"
473
+ },
474
+ "layers.16.mlp.down_proj": {
475
+ "weights": "qint8",
476
+ "activations": "none"
477
+ },
478
+ "layers.17.self_attn.q_proj": {
479
+ "weights": "qint8",
480
+ "activations": "none"
481
+ },
482
+ "layers.17.self_attn.k_proj": {
483
+ "weights": "qint8",
484
+ "activations": "none"
485
+ },
486
+ "layers.17.self_attn.v_proj": {
487
+ "weights": "qint8",
488
+ "activations": "none"
489
+ },
490
+ "layers.17.self_attn.o_proj": {
491
+ "weights": "qint8",
492
+ "activations": "none"
493
+ },
494
+ "layers.17.mlp.gate_proj": {
495
+ "weights": "qint8",
496
+ "activations": "none"
497
+ },
498
+ "layers.17.mlp.up_proj": {
499
+ "weights": "qint8",
500
+ "activations": "none"
501
+ },
502
+ "layers.17.mlp.down_proj": {
503
+ "weights": "qint8",
504
+ "activations": "none"
505
+ },
506
+ "layers.18.self_attn.q_proj": {
507
+ "weights": "qint8",
508
+ "activations": "none"
509
+ },
510
+ "layers.18.self_attn.k_proj": {
511
+ "weights": "qint8",
512
+ "activations": "none"
513
+ },
514
+ "layers.18.self_attn.v_proj": {
515
+ "weights": "qint8",
516
+ "activations": "none"
517
+ },
518
+ "layers.18.self_attn.o_proj": {
519
+ "weights": "qint8",
520
+ "activations": "none"
521
+ },
522
+ "layers.18.mlp.gate_proj": {
523
+ "weights": "qint8",
524
+ "activations": "none"
525
+ },
526
+ "layers.18.mlp.up_proj": {
527
+ "weights": "qint8",
528
+ "activations": "none"
529
+ },
530
+ "layers.18.mlp.down_proj": {
531
+ "weights": "qint8",
532
+ "activations": "none"
533
+ },
534
+ "layers.19.self_attn.q_proj": {
535
+ "weights": "qint8",
536
+ "activations": "none"
537
+ },
538
+ "layers.19.self_attn.k_proj": {
539
+ "weights": "qint8",
540
+ "activations": "none"
541
+ },
542
+ "layers.19.self_attn.v_proj": {
543
+ "weights": "qint8",
544
+ "activations": "none"
545
+ },
546
+ "layers.19.self_attn.o_proj": {
547
+ "weights": "qint8",
548
+ "activations": "none"
549
+ },
550
+ "layers.19.mlp.gate_proj": {
551
+ "weights": "qint8",
552
+ "activations": "none"
553
+ },
554
+ "layers.19.mlp.up_proj": {
555
+ "weights": "qint8",
556
+ "activations": "none"
557
+ },
558
+ "layers.19.mlp.down_proj": {
559
+ "weights": "qint8",
560
+ "activations": "none"
561
+ },
562
+ "layers.20.self_attn.q_proj": {
563
+ "weights": "qint8",
564
+ "activations": "none"
565
+ },
566
+ "layers.20.self_attn.k_proj": {
567
+ "weights": "qint8",
568
+ "activations": "none"
569
+ },
570
+ "layers.20.self_attn.v_proj": {
571
+ "weights": "qint8",
572
+ "activations": "none"
573
+ },
574
+ "layers.20.self_attn.o_proj": {
575
+ "weights": "qint8",
576
+ "activations": "none"
577
+ },
578
+ "layers.20.mlp.gate_proj": {
579
+ "weights": "qint8",
580
+ "activations": "none"
581
+ },
582
+ "layers.20.mlp.up_proj": {
583
+ "weights": "qint8",
584
+ "activations": "none"
585
+ },
586
+ "layers.20.mlp.down_proj": {
587
+ "weights": "qint8",
588
+ "activations": "none"
589
+ },
590
+ "layers.21.self_attn.q_proj": {
591
+ "weights": "qint8",
592
+ "activations": "none"
593
+ },
594
+ "layers.21.self_attn.k_proj": {
595
+ "weights": "qint8",
596
+ "activations": "none"
597
+ },
598
+ "layers.21.self_attn.v_proj": {
599
+ "weights": "qint8",
600
+ "activations": "none"
601
+ },
602
+ "layers.21.self_attn.o_proj": {
603
+ "weights": "qint8",
604
+ "activations": "none"
605
+ },
606
+ "layers.21.mlp.gate_proj": {
607
+ "weights": "qint8",
608
+ "activations": "none"
609
+ },
610
+ "layers.21.mlp.up_proj": {
611
+ "weights": "qint8",
612
+ "activations": "none"
613
+ },
614
+ "layers.21.mlp.down_proj": {
615
+ "weights": "qint8",
616
+ "activations": "none"
617
+ },
618
+ "layers.22.self_attn.q_proj": {
619
+ "weights": "qint8",
620
+ "activations": "none"
621
+ },
622
+ "layers.22.self_attn.k_proj": {
623
+ "weights": "qint8",
624
+ "activations": "none"
625
+ },
626
+ "layers.22.self_attn.v_proj": {
627
+ "weights": "qint8",
628
+ "activations": "none"
629
+ },
630
+ "layers.22.self_attn.o_proj": {
631
+ "weights": "qint8",
632
+ "activations": "none"
633
+ },
634
+ "layers.22.mlp.gate_proj": {
635
+ "weights": "qint8",
636
+ "activations": "none"
637
+ },
638
+ "layers.22.mlp.up_proj": {
639
+ "weights": "qint8",
640
+ "activations": "none"
641
+ },
642
+ "layers.22.mlp.down_proj": {
643
+ "weights": "qint8",
644
+ "activations": "none"
645
+ },
646
+ "layers.23.self_attn.q_proj": {
647
+ "weights": "qint8",
648
+ "activations": "none"
649
+ },
650
+ "layers.23.self_attn.k_proj": {
651
+ "weights": "qint8",
652
+ "activations": "none"
653
+ },
654
+ "layers.23.self_attn.v_proj": {
655
+ "weights": "qint8",
656
+ "activations": "none"
657
+ },
658
+ "layers.23.self_attn.o_proj": {
659
+ "weights": "qint8",
660
+ "activations": "none"
661
+ },
662
+ "layers.23.mlp.gate_proj": {
663
+ "weights": "qint8",
664
+ "activations": "none"
665
+ },
666
+ "layers.23.mlp.up_proj": {
667
+ "weights": "qint8",
668
+ "activations": "none"
669
+ },
670
+ "layers.23.mlp.down_proj": {
671
+ "weights": "qint8",
672
+ "activations": "none"
673
+ },
674
+ "layers.24.self_attn.q_proj": {
675
+ "weights": "qint8",
676
+ "activations": "none"
677
+ },
678
+ "layers.24.self_attn.k_proj": {
679
+ "weights": "qint8",
680
+ "activations": "none"
681
+ },
682
+ "layers.24.self_attn.v_proj": {
683
+ "weights": "qint8",
684
+ "activations": "none"
685
+ },
686
+ "layers.24.self_attn.o_proj": {
687
+ "weights": "qint8",
688
+ "activations": "none"
689
+ },
690
+ "layers.24.mlp.gate_proj": {
691
+ "weights": "qint8",
692
+ "activations": "none"
693
+ },
694
+ "layers.24.mlp.up_proj": {
695
+ "weights": "qint8",
696
+ "activations": "none"
697
+ },
698
+ "layers.24.mlp.down_proj": {
699
+ "weights": "qint8",
700
+ "activations": "none"
701
+ },
702
+ "layers.25.self_attn.q_proj": {
703
+ "weights": "qint8",
704
+ "activations": "none"
705
+ },
706
+ "layers.25.self_attn.k_proj": {
707
+ "weights": "qint8",
708
+ "activations": "none"
709
+ },
710
+ "layers.25.self_attn.v_proj": {
711
+ "weights": "qint8",
712
+ "activations": "none"
713
+ },
714
+ "layers.25.self_attn.o_proj": {
715
+ "weights": "qint8",
716
+ "activations": "none"
717
+ },
718
+ "layers.25.mlp.gate_proj": {
719
+ "weights": "qint8",
720
+ "activations": "none"
721
+ },
722
+ "layers.25.mlp.up_proj": {
723
+ "weights": "qint8",
724
+ "activations": "none"
725
+ },
726
+ "layers.25.mlp.down_proj": {
727
+ "weights": "qint8",
728
+ "activations": "none"
729
+ },
730
+ "layers.26.self_attn.q_proj": {
731
+ "weights": "qint8",
732
+ "activations": "none"
733
+ },
734
+ "layers.26.self_attn.k_proj": {
735
+ "weights": "qint8",
736
+ "activations": "none"
737
+ },
738
+ "layers.26.self_attn.v_proj": {
739
+ "weights": "qint8",
740
+ "activations": "none"
741
+ },
742
+ "layers.26.self_attn.o_proj": {
743
+ "weights": "qint8",
744
+ "activations": "none"
745
+ },
746
+ "layers.26.mlp.gate_proj": {
747
+ "weights": "qint8",
748
+ "activations": "none"
749
+ },
750
+ "layers.26.mlp.up_proj": {
751
+ "weights": "qint8",
752
+ "activations": "none"
753
+ },
754
+ "layers.26.mlp.down_proj": {
755
+ "weights": "qint8",
756
+ "activations": "none"
757
+ },
758
+ "layers.27.self_attn.q_proj": {
759
+ "weights": "qint8",
760
+ "activations": "none"
761
+ },
762
+ "layers.27.self_attn.k_proj": {
763
+ "weights": "qint8",
764
+ "activations": "none"
765
+ },
766
+ "layers.27.self_attn.v_proj": {
767
+ "weights": "qint8",
768
+ "activations": "none"
769
+ },
770
+ "layers.27.self_attn.o_proj": {
771
+ "weights": "qint8",
772
+ "activations": "none"
773
+ },
774
+ "layers.27.mlp.gate_proj": {
775
+ "weights": "qint8",
776
+ "activations": "none"
777
+ },
778
+ "layers.27.mlp.up_proj": {
779
+ "weights": "qint8",
780
+ "activations": "none"
781
+ },
782
+ "layers.27.mlp.down_proj": {
783
+ "weights": "qint8",
784
+ "activations": "none"
785
+ }
786
+ }
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:def76fb086971c7867b829c23a26261e38d9d74e02139253b38aeb9df8b4b50a
3
+ size 11423705
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": 131072,
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