Randomize commited on
Commit
fbbb609
·
verified ·
1 Parent(s): ba99b8b

Add files using upload-large-folder tool

Browse files
.done ADDED
File without changes
chat_template.jinja ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% macro render_content(content) %}{% if content is none %}{{- '' }}{% elif content is string %}{{- content }}{% elif content is mapping %}{{- content['value'] if 'value' in content else content['text'] }}{% elif content is iterable %}{% for item in content %}{% if item.type == 'text' %}{{- item['value'] if 'value' in item else item['text'] }}{% elif item.type == 'image' %}<im_patch>{% endif %}{% endfor %}{% endif %}{% endmacro %}
2
+ {{bos_token}}{%- if tools %}
3
+ {{- '<|im_start|>system\n' }}
4
+ {%- if messages[0].role == 'system' %}
5
+ {{- render_content(messages[0].content) + '\n\n' }}
6
+ {%- endif %}
7
+ {{- "# Tools\n\nYou have access to the following functions in JSONSchema format:\n\n<tools>" }}
8
+ {%- for tool in tools %}
9
+ {{- "\n" }}
10
+ {{- tool | tojson(ensure_ascii=False) }}
11
+ {%- endfor %}
12
+ {{- "\n</tools>\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=...>\n...\n</function> block must be nested within <tool_call>\n...\n</tool_call> XML tags\n- Required parameters MUST be specified\n</IMPORTANT><|im_end|>\n" }}
13
+ {%- else %}
14
+ {%- if messages[0].role == 'system' %}
15
+ {{- '<|im_start|>system\n' + render_content(messages[0].content) + '<|im_end|>\n' }}
16
+ {%- endif %}
17
+ {%- endif %}
18
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
19
+ {%- for message in messages[::-1] %}
20
+ {%- set index = (messages|length - 1) - loop.index0 %}
21
+ {%- if ns.multi_step_tool and message.role == "user" and render_content(message.content) is string and not(render_content(message.content).startswith('<tool_response>') and render_content(message.content).endswith('</tool_response>')) %}
22
+ {%- set ns.multi_step_tool = false %}
23
+ {%- set ns.last_query_index = index %}
24
+ {%- endif %}
25
+ {%- endfor %}
26
+ {%- for message in messages %}
27
+ {%- set content = render_content(message.content) %}
28
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
29
+ {%- set role_name = 'observation' if (message.role == "system" and not loop.first and message.name == 'observation') else message.role %}
30
+ {{- '<|im_start|>' + role_name + '\n' + content + '<|im_end|>' + '\n' }}
31
+ {%- elif message.role == "assistant" %}
32
+ {%- if message.reasoning_content is string %}
33
+ {%- set reasoning_content = render_content(message.reasoning_content) %}
34
+ {%- else %}
35
+ {%- if '</think>' in content %}
36
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
38
+ {%- else %}
39
+ {%- set reasoning_content = '' %}
40
+ {%- endif %}
41
+ {%- endif %}
42
+ {%- if loop.index0 > ns.last_query_index %}
43
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n' + content }}
44
+ {%- else %}
45
+ {{- '<|im_start|>' + message.role + '\n' + content }}
46
+ {%- endif %}
47
+ {%- if message.tool_calls %}
48
+ {%- for tool_call in message.tool_calls %}
49
+ {%- if tool_call.function is defined %}
50
+ {%- set tool_call = tool_call.function %}
51
+ {%- endif %}
52
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
53
+ {%- if tool_call.arguments is defined %}
54
+ {%- set arguments = tool_call.arguments | fromjson if tool_call.arguments is string else tool_call.arguments %}
55
+ {%- for args_name, args_value in arguments|items %}
56
+ {{- '<parameter=' + args_name + '>\n' }}
57
+ {%- set args_value = args_value | tojson(ensure_ascii=False) | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
58
+ {{- args_value }}
59
+ {{- '\n</parameter>\n' }}
60
+ {%- endfor %}
61
+ {%- endif %}
62
+ {{- '</function>\n</tool_call>' }}
63
+ {%- endfor %}
64
+ {%- endif %}
65
+ {{- '<|im_end|>\n' }}
66
+ {%- elif message.role == "tool" %}
67
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
68
+ {{- '<|im_start|>tool_response\n' }}
69
+ {%- endif %}
70
+ {{- '<tool_response>' }}
71
+ {{- content }}
72
+ {{- '</tool_response>' }}
73
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
74
+ {{- '<|im_end|>\n' }}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if add_generation_prompt %}
79
+ {{- '<|im_start|>assistant\n<think>\n' }}
80
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Step4ForCausalLM"
4
+ ],
5
+ "model_type": "step4",
6
+ "hidden_size": 4096,
7
+ "intermediate_size": 11264,
8
+ "num_hidden_layers": 45,
9
+ "max_seq_len": 131072,
10
+ "max_position_embedding": 131072,
11
+ "vocab_size": 128896,
12
+ "torch_dtype": "bfloat16",
13
+ "use_qk_norm": false,
14
+ "moe_layers_enum": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44",
15
+ "use_mfa": false,
16
+ "num_attention_heads": 64,
17
+ "num_attention_groups": 8,
18
+ "num_nextn_predict_layers": 1,
19
+ "head_dim": 128,
20
+ "use_moe": true,
21
+ "moe_num_experts": 288,
22
+ "moe_top_k": 8,
23
+ "moe_intermediate_size": 1280,
24
+ "share_expert_dim": 1280,
25
+ "moe_layer_offset": 0,
26
+ "moe_every_n_layer": 1,
27
+ "norm_expert_weight": true,
28
+ "moe_router_activation": "sigmoid",
29
+ "moe_router_scaling_factor": 3.0,
30
+ "att_impl_type": "GQA",
31
+ "rope_theta": [
32
+ 5000000.0,
33
+ 10000.0,
34
+ 10000.0,
35
+ 10000.0,
36
+ 5000000.0,
37
+ 10000.0,
38
+ 10000.0,
39
+ 10000.0,
40
+ 5000000.0,
41
+ 10000.0,
42
+ 10000.0,
43
+ 10000.0,
44
+ 5000000.0,
45
+ 10000.0,
46
+ 10000.0,
47
+ 10000.0,
48
+ 5000000.0,
49
+ 10000.0,
50
+ 10000.0,
51
+ 10000.0,
52
+ 5000000.0,
53
+ 10000.0,
54
+ 10000.0,
55
+ 10000.0,
56
+ 5000000.0,
57
+ 10000.0,
58
+ 10000.0,
59
+ 10000.0,
60
+ 5000000.0,
61
+ 10000.0,
62
+ 10000.0,
63
+ 10000.0,
64
+ 5000000.0,
65
+ 10000.0,
66
+ 10000.0,
67
+ 10000.0,
68
+ 5000000.0,
69
+ 10000.0,
70
+ 10000.0,
71
+ 10000.0,
72
+ 5000000.0,
73
+ 10000.0,
74
+ 10000.0,
75
+ 10000.0,
76
+ 5000000.0,
77
+ 10000.0
78
+ ],
79
+ "use_head_wise_attn_gate": true,
80
+ "sliding_window": 512,
81
+ "use_moe_router_bias": true,
82
+ "need_fp32_gate": true,
83
+ "sink": false,
84
+ "layer_types": [
85
+ "full_attention",
86
+ "sliding_attention",
87
+ "sliding_attention",
88
+ "sliding_attention",
89
+ "full_attention",
90
+ "sliding_attention",
91
+ "sliding_attention",
92
+ "sliding_attention",
93
+ "full_attention",
94
+ "sliding_attention",
95
+ "sliding_attention",
96
+ "sliding_attention",
97
+ "full_attention",
98
+ "sliding_attention",
99
+ "sliding_attention",
100
+ "sliding_attention",
101
+ "full_attention",
102
+ "sliding_attention",
103
+ "sliding_attention",
104
+ "sliding_attention",
105
+ "full_attention",
106
+ "sliding_attention",
107
+ "sliding_attention",
108
+ "sliding_attention",
109
+ "full_attention",
110
+ "sliding_attention",
111
+ "sliding_attention",
112
+ "sliding_attention",
113
+ "full_attention",
114
+ "sliding_attention",
115
+ "sliding_attention",
116
+ "sliding_attention",
117
+ "full_attention",
118
+ "sliding_attention",
119
+ "sliding_attention",
120
+ "sliding_attention",
121
+ "full_attention",
122
+ "sliding_attention",
123
+ "sliding_attention",
124
+ "sliding_attention",
125
+ "full_attention",
126
+ "sliding_attention",
127
+ "sliding_attention",
128
+ "sliding_attention",
129
+ "full_attention",
130
+ "sliding_attention"
131
+ ],
132
+ "use_rope_layers": [],
133
+ "partial_rotary_factors": [
134
+ 0.5,
135
+ 1.0,
136
+ 1.0,
137
+ 1.0,
138
+ 0.5,
139
+ 1.0,
140
+ 1.0,
141
+ 1.0,
142
+ 0.5,
143
+ 1.0,
144
+ 1.0,
145
+ 1.0,
146
+ 0.5,
147
+ 1.0,
148
+ 1.0,
149
+ 1.0,
150
+ 0.5,
151
+ 1.0,
152
+ 1.0,
153
+ 1.0,
154
+ 0.5,
155
+ 1.0,
156
+ 1.0,
157
+ 1.0,
158
+ 0.5,
159
+ 1.0,
160
+ 1.0,
161
+ 1.0,
162
+ 0.5,
163
+ 1.0,
164
+ 1.0,
165
+ 1.0,
166
+ 0.5,
167
+ 1.0,
168
+ 1.0,
169
+ 1.0,
170
+ 0.5,
171
+ 1.0,
172
+ 1.0,
173
+ 1.0,
174
+ 0.5,
175
+ 1.0,
176
+ 1.0,
177
+ 1.0,
178
+ 0.5,
179
+ 1.0
180
+ ],
181
+ "eos_token_id": [
182
+ 1,
183
+ 2
184
+ ],
185
+ "bos_token_id": 0,
186
+ "attention_other_setting": {
187
+ "attention_type": "sliding_attention",
188
+ "num_attention_heads": 96,
189
+ "num_attention_groups": 8,
190
+ "head_dim": 128,
191
+ "true_head_dim": 128
192
+ },
193
+ "swiglu_limits": [
194
+ 0.0,
195
+ 0.0,
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 0.0,
200
+ 0.0,
201
+ 0.0,
202
+ 0.0,
203
+ 0.0,
204
+ 0.0,
205
+ 0.0,
206
+ 0.0,
207
+ 0.0,
208
+ 0.0,
209
+ 0.0,
210
+ 0.0,
211
+ 0.0,
212
+ 0.0,
213
+ 0.0,
214
+ 0.0,
215
+ 0.0,
216
+ 0.0,
217
+ 0.0,
218
+ 0.0,
219
+ 0.0,
220
+ 0.0,
221
+ 0.0,
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 0.0,
226
+ 0.0,
227
+ 0.0,
228
+ 0.0,
229
+ 0.0,
230
+ 0.0,
231
+ 0.0,
232
+ 0.0,
233
+ 0.0,
234
+ 0.0,
235
+ 0.0,
236
+ 0.0,
237
+ 7,
238
+ 7,
239
+ 0.0
240
+ ],
241
+ "swiglu_limits_shared": [
242
+ 0.0,
243
+ 0.0,
244
+ 0.0,
245
+ 0.0,
246
+ 0.0,
247
+ 0.0,
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 0.0,
252
+ 0.0,
253
+ 0.0,
254
+ 0.0,
255
+ 0.0,
256
+ 0.0,
257
+ 0.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0,
261
+ 0.0,
262
+ 0.0,
263
+ 0.0,
264
+ 0.0,
265
+ 0.0,
266
+ 0.0,
267
+ 0.0,
268
+ 0.0,
269
+ 0.0,
270
+ 0.0,
271
+ 0.0,
272
+ 0.0,
273
+ 0.0,
274
+ 0.0,
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 0.0,
279
+ 0.0,
280
+ 0.0,
281
+ 0.0,
282
+ 0.0,
283
+ 0.0,
284
+ 0.0,
285
+ 0.0,
286
+ 16,
287
+ 0.0
288
+ ]
289
+ }
model-00001.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4834af5effac4c63540efe7e0d6a4fa44ed1229fef072e03a11bec82a7b8148
3
+ size 9914463192
model-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61ea72d86955c8c54dc2b03788a6baeb6981505dffc85a30c03e1bec21f7e37e
3
+ size 8129316776
model-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3f5a7eef4e9415e8d13a94cd119a2ed883e17df262ce9636e87e32afcb082ab
3
+ size 9059696992
model-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8177311765d7528ef4b156bbb803dd48ba0d1e3898919cb8d3ae0cd32e501a0e
3
+ size 9059696992
model-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dde95af31a3dbbddf55b2e0938005242c9b9ccdd969dc5152bd36ada5083e614
3
+ size 9059696992
model-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31ffb9af8f71b5ccd7846dc96726564d229bd39aaa6233ac5484d6e189a303c7
3
+ size 9059696992
model-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:109ce5ccdfef16abc8c1e4457c4090c9a1bd037ed00a6a1732ce224e40f46a33
3
+ size 9059696992
model-00008.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8d95639c4d000287783ef5dd7aea030277cc0bbf19f74ca1aabf355d487fe04
3
+ size 9059696992
model-00009.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58e898af6bc262f9cc967524ba19a0ee90359575024aa4b4af7f3c6075655946
3
+ size 9059697000
model-00010.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acbe35b5d657f4dc6bff6dc8d1ef78dea72da175b53bf3707a5dc01d810e1679
3
+ size 9059697000
model-00011.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d6ad5dbbf3ba740ca011596959a2d87a578e39c38503667703d8ccb065b1a42
3
+ size 9059697000
model-00012.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04f4c14c04eb04e9aee1229be565c3e1765a9092e622547cceb474b7768b09b3
3
+ size 9059697000
model-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:005fcb47241747472259bd92917278d03b3ee71a089b427d192066105ed918e6
3
+ size 9059697000
model-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ffd48b5c521d55ec9cf9b42e9c9ab5ef64acb9713f2f56cb45a801f753fbd9d
3
+ size 9059697000
model-00015.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ae613da5b8f85503dff33373aa4a11ccad994abefa0c6d390f31446c89ee58e
3
+ size 9059697000
model-00016.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0953030de59f5ca28a322b9800e3be9f330752c6af4aab14b322376f8e253752
3
+ size 9059697000
model-00017.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25c08a707f8c932d1ed01035a5ad0707aaa0d8df2671fa6794382ad114ed7965
3
+ size 9059697000
model-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce081f3617363a7815d1c60489a21063bc1c24e4d17531fa40bc0688c16110e9
3
+ size 9059697000
model-00019.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62ccb0dcc22a42e22d78cea5d0028c7a53a4905c0861a2689018f979b80ab901
3
+ size 9059697000
model-00020.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9af26369dcde542edfca632abab4f35570f39ecd5de1f7ea3762e22c55db38e8
3
+ size 9059697000
model-00021.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcd844d4dea96cc9c427e7249121d62a1301c37b36482204684f62791dc17949
3
+ size 9059697000
model-00022.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6128b6a3e2be72d079a62e5016118b3388f319e3b84b888108782b001e52bb9d
3
+ size 9059697000
model-00023.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b907b746bae7834f39a6816ac0adf4b8fe551768d6988decbf671fd1ce70eb20
3
+ size 9059697000
model-00024.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d685a1e06348a41da650213f377e0ebeba1c19d9aaf5531118b2f4bcb2dd41e
3
+ size 9059697000
model-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b1b47a77e9654320dd84508f3544f34f762931d328ac83ac7ad43cde6804fea
3
+ size 9059697000
model-00026.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd62f742afba69bccb2793cc1ceaaa179189ccf766f541f84855978db820fe69
3
+ size 9059697000
model-00027.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1ce15604744e7d4ac3bd6b10906b7d302d30cd844156d217431c6cdd3279b78
3
+ size 9059697000
model-00028.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8fc931583260a3d257f5246db18dd2db2109934ba757fc2107e24f864dfc496
3
+ size 9059697000
model-00030.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12ebb610657060d499c8fb5a4823599809cb0cd7a47fbe56e94db6f472af57c9
3
+ size 9059697000
model-00031.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4dd4679d768ce9bf6a4261349ce66544a52e7db038e8d8d0065c0b670947ea1
3
+ size 9059697000
model-00032.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f10f375b66d69014317ebef4919a85eeb9f26fe1717136e7c98b08b4fa61fa8b
3
+ size 9059697000
model-00033.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d5ccc51dd2ce00c86d0acde65f8b0046b46e60165f8788d96b7f3398232872f
3
+ size 9059697000
model-00034.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bc0b7478eabcfb8933c368749db3b7026d6a2d8e3e8ab9af85d0e723de079a6
3
+ size 9059697000
model-00035.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9019fb4ba1ba44894e4e814a4f4f82709b60a83af7eed1833242cb3017ee5e4
3
+ size 9059697000
model-00036.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94fcb920770833d697d75701e7a6ae678ec555034d3d78ce78b58a5259c7e754
3
+ size 9059697000
model-00037.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62034f5f4c45c5b463e79163b93eec72d5a03f259d5335e974335914a9002f73
3
+ size 9059697000
model-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0caffc273334599fdf07209cee39fedca09b91752123f6a721719c35a08bd4cc
3
+ size 9059697000
model-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb5a4bdffff5feca6deb11316c27bef589915ac15c71aad3a4fdbb0ba962f53
3
+ size 9059697000
model-00040.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79b8d8ac9027c27fa61fffe83fc1856052838915fab6636d49a2d9c74af8de50
3
+ size 9059697000
model-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16c8f21e679e40ab2b4ea67197561972ac380f7ea20871ab86857a9febaf71bb
3
+ size 9059697000
model-00042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc42489ae6df4928af526f82dcdd6512e1c90690fc483cf937a88d896e551bed
3
+ size 9059697000
model-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:945e7452edaaef0b78e739d22338872c6e98a7d23d951dda07bb4f2600072955
3
+ size 9059697000
model-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcbe6a38bc9549865c916764d0327eacfb61fdcac2e6c4ec95efdc710efa06b3
3
+ size 6039798000
model.safetensors.index.json ADDED
@@ -0,0 +1,777 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 395531065600
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00002.safetensors",
7
+ "model.embed_tokens.weight": "model-00001.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001.safetensors",
13
+ "model.layers.0.self_attn.g_proj.weight": "model-00001.safetensors",
14
+ "model.layers.0.self_attn.k_norm.weight": "model-00001.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001.safetensors",
17
+ "model.layers.0.self_attn.q_norm.weight": "model-00001.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001.safetensors",
25
+ "model.layers.1.self_attn.g_proj.weight": "model-00001.safetensors",
26
+ "model.layers.1.self_attn.k_norm.weight": "model-00001.safetensors",
27
+ "model.layers.1.self_attn.k_proj.weight": "model-00001.safetensors",
28
+ "model.layers.1.self_attn.o_proj.weight": "model-00001.safetensors",
29
+ "model.layers.1.self_attn.q_norm.weight": "model-00001.safetensors",
30
+ "model.layers.1.self_attn.q_proj.weight": "model-00001.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001.safetensors",
32
+ "model.layers.10.input_layernorm.weight": "model-00001.safetensors",
33
+ "model.layers.10.moe.down_proj.weight": "model-00010.safetensors",
34
+ "model.layers.10.moe.gate.weight": "model-00001.safetensors",
35
+ "model.layers.10.moe.gate_proj.weight": "model-00009.safetensors",
36
+ "model.layers.10.moe.router_bias": "model-00001.safetensors",
37
+ "model.layers.10.moe.up_proj.weight": "model-00010.safetensors",
38
+ "model.layers.10.post_attention_layernorm.weight": "model-00001.safetensors",
39
+ "model.layers.10.self_attn.g_proj.weight": "model-00001.safetensors",
40
+ "model.layers.10.self_attn.k_norm.weight": "model-00001.safetensors",
41
+ "model.layers.10.self_attn.k_proj.weight": "model-00001.safetensors",
42
+ "model.layers.10.self_attn.o_proj.weight": "model-00001.safetensors",
43
+ "model.layers.10.self_attn.q_norm.weight": "model-00001.safetensors",
44
+ "model.layers.10.self_attn.q_proj.weight": "model-00001.safetensors",
45
+ "model.layers.10.self_attn.v_proj.weight": "model-00001.safetensors",
46
+ "model.layers.10.share_expert.down_proj.weight": "model-00001.safetensors",
47
+ "model.layers.10.share_expert.gate_proj.weight": "model-00002.safetensors",
48
+ "model.layers.10.share_expert.up_proj.weight": "model-00002.safetensors",
49
+ "model.layers.11.input_layernorm.weight": "model-00001.safetensors",
50
+ "model.layers.11.moe.down_proj.weight": "model-00011.safetensors",
51
+ "model.layers.11.moe.gate.weight": "model-00001.safetensors",
52
+ "model.layers.11.moe.gate_proj.weight": "model-00010.safetensors",
53
+ "model.layers.11.moe.router_bias": "model-00001.safetensors",
54
+ "model.layers.11.moe.up_proj.weight": "model-00011.safetensors",
55
+ "model.layers.11.post_attention_layernorm.weight": "model-00001.safetensors",
56
+ "model.layers.11.self_attn.g_proj.weight": "model-00001.safetensors",
57
+ "model.layers.11.self_attn.k_norm.weight": "model-00001.safetensors",
58
+ "model.layers.11.self_attn.k_proj.weight": "model-00001.safetensors",
59
+ "model.layers.11.self_attn.o_proj.weight": "model-00001.safetensors",
60
+ "model.layers.11.self_attn.q_norm.weight": "model-00001.safetensors",
61
+ "model.layers.11.self_attn.q_proj.weight": "model-00001.safetensors",
62
+ "model.layers.11.self_attn.v_proj.weight": "model-00001.safetensors",
63
+ "model.layers.11.share_expert.down_proj.weight": "model-00001.safetensors",
64
+ "model.layers.11.share_expert.gate_proj.weight": "model-00002.safetensors",
65
+ "model.layers.11.share_expert.up_proj.weight": "model-00002.safetensors",
66
+ "model.layers.12.input_layernorm.weight": "model-00002.safetensors",
67
+ "model.layers.12.moe.down_proj.weight": "model-00012.safetensors",
68
+ "model.layers.12.moe.gate.weight": "model-00002.safetensors",
69
+ "model.layers.12.moe.gate_proj.weight": "model-00011.safetensors",
70
+ "model.layers.12.moe.router_bias": "model-00002.safetensors",
71
+ "model.layers.12.moe.up_proj.weight": "model-00012.safetensors",
72
+ "model.layers.12.post_attention_layernorm.weight": "model-00002.safetensors",
73
+ "model.layers.12.self_attn.g_proj.weight": "model-00002.safetensors",
74
+ "model.layers.12.self_attn.k_norm.weight": "model-00002.safetensors",
75
+ "model.layers.12.self_attn.k_proj.weight": "model-00002.safetensors",
76
+ "model.layers.12.self_attn.o_proj.weight": "model-00002.safetensors",
77
+ "model.layers.12.self_attn.q_norm.weight": "model-00002.safetensors",
78
+ "model.layers.12.self_attn.q_proj.weight": "model-00002.safetensors",
79
+ "model.layers.12.self_attn.v_proj.weight": "model-00002.safetensors",
80
+ "model.layers.12.share_expert.down_proj.weight": "model-00002.safetensors",
81
+ "model.layers.12.share_expert.gate_proj.weight": "model-00002.safetensors",
82
+ "model.layers.12.share_expert.up_proj.weight": "model-00002.safetensors",
83
+ "model.layers.13.input_layernorm.weight": "model-00002.safetensors",
84
+ "model.layers.13.moe.down_proj.weight": "model-00013.safetensors",
85
+ "model.layers.13.moe.gate.weight": "model-00002.safetensors",
86
+ "model.layers.13.moe.gate_proj.weight": "model-00012.safetensors",
87
+ "model.layers.13.moe.router_bias": "model-00002.safetensors",
88
+ "model.layers.13.moe.up_proj.weight": "model-00013.safetensors",
89
+ "model.layers.13.post_attention_layernorm.weight": "model-00002.safetensors",
90
+ "model.layers.13.self_attn.g_proj.weight": "model-00002.safetensors",
91
+ "model.layers.13.self_attn.k_norm.weight": "model-00002.safetensors",
92
+ "model.layers.13.self_attn.k_proj.weight": "model-00002.safetensors",
93
+ "model.layers.13.self_attn.o_proj.weight": "model-00002.safetensors",
94
+ "model.layers.13.self_attn.q_norm.weight": "model-00002.safetensors",
95
+ "model.layers.13.self_attn.q_proj.weight": "model-00002.safetensors",
96
+ "model.layers.13.self_attn.v_proj.weight": "model-00002.safetensors",
97
+ "model.layers.13.share_expert.down_proj.weight": "model-00002.safetensors",
98
+ "model.layers.13.share_expert.gate_proj.weight": "model-00002.safetensors",
99
+ "model.layers.13.share_expert.up_proj.weight": "model-00002.safetensors",
100
+ "model.layers.14.input_layernorm.weight": "model-00002.safetensors",
101
+ "model.layers.14.moe.down_proj.weight": "model-00014.safetensors",
102
+ "model.layers.14.moe.gate.weight": "model-00002.safetensors",
103
+ "model.layers.14.moe.gate_proj.weight": "model-00013.safetensors",
104
+ "model.layers.14.moe.router_bias": "model-00002.safetensors",
105
+ "model.layers.14.moe.up_proj.weight": "model-00014.safetensors",
106
+ "model.layers.14.post_attention_layernorm.weight": "model-00002.safetensors",
107
+ "model.layers.14.self_attn.g_proj.weight": "model-00002.safetensors",
108
+ "model.layers.14.self_attn.k_norm.weight": "model-00002.safetensors",
109
+ "model.layers.14.self_attn.k_proj.weight": "model-00002.safetensors",
110
+ "model.layers.14.self_attn.o_proj.weight": "model-00002.safetensors",
111
+ "model.layers.14.self_attn.q_norm.weight": "model-00002.safetensors",
112
+ "model.layers.14.self_attn.q_proj.weight": "model-00002.safetensors",
113
+ "model.layers.14.self_attn.v_proj.weight": "model-00002.safetensors",
114
+ "model.layers.14.share_expert.down_proj.weight": "model-00002.safetensors",
115
+ "model.layers.14.share_expert.gate_proj.weight": "model-00002.safetensors",
116
+ "model.layers.14.share_expert.up_proj.weight": "model-00002.safetensors",
117
+ "model.layers.15.input_layernorm.weight": "model-00002.safetensors",
118
+ "model.layers.15.moe.down_proj.weight": "model-00015.safetensors",
119
+ "model.layers.15.moe.gate.weight": "model-00002.safetensors",
120
+ "model.layers.15.moe.gate_proj.weight": "model-00014.safetensors",
121
+ "model.layers.15.moe.router_bias": "model-00002.safetensors",
122
+ "model.layers.15.moe.up_proj.weight": "model-00015.safetensors",
123
+ "model.layers.15.post_attention_layernorm.weight": "model-00002.safetensors",
124
+ "model.layers.15.self_attn.g_proj.weight": "model-00002.safetensors",
125
+ "model.layers.15.self_attn.k_norm.weight": "model-00002.safetensors",
126
+ "model.layers.15.self_attn.k_proj.weight": "model-00002.safetensors",
127
+ "model.layers.15.self_attn.o_proj.weight": "model-00002.safetensors",
128
+ "model.layers.15.self_attn.q_norm.weight": "model-00002.safetensors",
129
+ "model.layers.15.self_attn.q_proj.weight": "model-00002.safetensors",
130
+ "model.layers.15.self_attn.v_proj.weight": "model-00002.safetensors",
131
+ "model.layers.15.share_expert.down_proj.weight": "model-00002.safetensors",
132
+ "model.layers.15.share_expert.gate_proj.weight": "model-00002.safetensors",
133
+ "model.layers.15.share_expert.up_proj.weight": "model-00002.safetensors",
134
+ "model.layers.16.input_layernorm.weight": "model-00001.safetensors",
135
+ "model.layers.16.moe.down_proj.weight": "model-00016.safetensors",
136
+ "model.layers.16.moe.gate.weight": "model-00001.safetensors",
137
+ "model.layers.16.moe.gate_proj.weight": "model-00015.safetensors",
138
+ "model.layers.16.moe.router_bias": "model-00001.safetensors",
139
+ "model.layers.16.moe.up_proj.weight": "model-00016.safetensors",
140
+ "model.layers.16.post_attention_layernorm.weight": "model-00001.safetensors",
141
+ "model.layers.16.self_attn.g_proj.weight": "model-00001.safetensors",
142
+ "model.layers.16.self_attn.k_norm.weight": "model-00001.safetensors",
143
+ "model.layers.16.self_attn.k_proj.weight": "model-00001.safetensors",
144
+ "model.layers.16.self_attn.o_proj.weight": "model-00001.safetensors",
145
+ "model.layers.16.self_attn.q_norm.weight": "model-00001.safetensors",
146
+ "model.layers.16.self_attn.q_proj.weight": "model-00001.safetensors",
147
+ "model.layers.16.self_attn.v_proj.weight": "model-00001.safetensors",
148
+ "model.layers.16.share_expert.down_proj.weight": "model-00001.safetensors",
149
+ "model.layers.16.share_expert.gate_proj.weight": "model-00001.safetensors",
150
+ "model.layers.16.share_expert.up_proj.weight": "model-00001.safetensors",
151
+ "model.layers.17.input_layernorm.weight": "model-00001.safetensors",
152
+ "model.layers.17.moe.down_proj.weight": "model-00017.safetensors",
153
+ "model.layers.17.moe.gate.weight": "model-00001.safetensors",
154
+ "model.layers.17.moe.gate_proj.weight": "model-00016.safetensors",
155
+ "model.layers.17.moe.router_bias": "model-00001.safetensors",
156
+ "model.layers.17.moe.up_proj.weight": "model-00017.safetensors",
157
+ "model.layers.17.post_attention_layernorm.weight": "model-00001.safetensors",
158
+ "model.layers.17.self_attn.g_proj.weight": "model-00001.safetensors",
159
+ "model.layers.17.self_attn.k_norm.weight": "model-00001.safetensors",
160
+ "model.layers.17.self_attn.k_proj.weight": "model-00001.safetensors",
161
+ "model.layers.17.self_attn.o_proj.weight": "model-00001.safetensors",
162
+ "model.layers.17.self_attn.q_norm.weight": "model-00001.safetensors",
163
+ "model.layers.17.self_attn.q_proj.weight": "model-00001.safetensors",
164
+ "model.layers.17.self_attn.v_proj.weight": "model-00001.safetensors",
165
+ "model.layers.17.share_expert.down_proj.weight": "model-00001.safetensors",
166
+ "model.layers.17.share_expert.gate_proj.weight": "model-00001.safetensors",
167
+ "model.layers.17.share_expert.up_proj.weight": "model-00001.safetensors",
168
+ "model.layers.18.input_layernorm.weight": "model-00001.safetensors",
169
+ "model.layers.18.moe.down_proj.weight": "model-00018.safetensors",
170
+ "model.layers.18.moe.gate.weight": "model-00001.safetensors",
171
+ "model.layers.18.moe.gate_proj.weight": "model-00017.safetensors",
172
+ "model.layers.18.moe.router_bias": "model-00001.safetensors",
173
+ "model.layers.18.moe.up_proj.weight": "model-00018.safetensors",
174
+ "model.layers.18.post_attention_layernorm.weight": "model-00001.safetensors",
175
+ "model.layers.18.self_attn.g_proj.weight": "model-00001.safetensors",
176
+ "model.layers.18.self_attn.k_norm.weight": "model-00001.safetensors",
177
+ "model.layers.18.self_attn.k_proj.weight": "model-00001.safetensors",
178
+ "model.layers.18.self_attn.o_proj.weight": "model-00001.safetensors",
179
+ "model.layers.18.self_attn.q_norm.weight": "model-00001.safetensors",
180
+ "model.layers.18.self_attn.q_proj.weight": "model-00001.safetensors",
181
+ "model.layers.18.self_attn.v_proj.weight": "model-00001.safetensors",
182
+ "model.layers.18.share_expert.down_proj.weight": "model-00001.safetensors",
183
+ "model.layers.18.share_expert.gate_proj.weight": "model-00001.safetensors",
184
+ "model.layers.18.share_expert.up_proj.weight": "model-00001.safetensors",
185
+ "model.layers.19.input_layernorm.weight": "model-00001.safetensors",
186
+ "model.layers.19.moe.down_proj.weight": "model-00019.safetensors",
187
+ "model.layers.19.moe.gate.weight": "model-00001.safetensors",
188
+ "model.layers.19.moe.gate_proj.weight": "model-00018.safetensors",
189
+ "model.layers.19.moe.router_bias": "model-00001.safetensors",
190
+ "model.layers.19.moe.up_proj.weight": "model-00019.safetensors",
191
+ "model.layers.19.post_attention_layernorm.weight": "model-00001.safetensors",
192
+ "model.layers.19.self_attn.g_proj.weight": "model-00001.safetensors",
193
+ "model.layers.19.self_attn.k_norm.weight": "model-00001.safetensors",
194
+ "model.layers.19.self_attn.k_proj.weight": "model-00001.safetensors",
195
+ "model.layers.19.self_attn.o_proj.weight": "model-00001.safetensors",
196
+ "model.layers.19.self_attn.q_norm.weight": "model-00001.safetensors",
197
+ "model.layers.19.self_attn.q_proj.weight": "model-00001.safetensors",
198
+ "model.layers.19.self_attn.v_proj.weight": "model-00001.safetensors",
199
+ "model.layers.19.share_expert.down_proj.weight": "model-00001.safetensors",
200
+ "model.layers.19.share_expert.gate_proj.weight": "model-00001.safetensors",
201
+ "model.layers.19.share_expert.up_proj.weight": "model-00001.safetensors",
202
+ "model.layers.2.input_layernorm.weight": "model-00001.safetensors",
203
+ "model.layers.2.mlp.down_proj.weight": "model-00001.safetensors",
204
+ "model.layers.2.mlp.gate_proj.weight": "model-00001.safetensors",
205
+ "model.layers.2.mlp.up_proj.weight": "model-00001.safetensors",
206
+ "model.layers.2.post_attention_layernorm.weight": "model-00001.safetensors",
207
+ "model.layers.2.self_attn.g_proj.weight": "model-00001.safetensors",
208
+ "model.layers.2.self_attn.k_norm.weight": "model-00001.safetensors",
209
+ "model.layers.2.self_attn.k_proj.weight": "model-00001.safetensors",
210
+ "model.layers.2.self_attn.o_proj.weight": "model-00001.safetensors",
211
+ "model.layers.2.self_attn.q_norm.weight": "model-00001.safetensors",
212
+ "model.layers.2.self_attn.q_proj.weight": "model-00001.safetensors",
213
+ "model.layers.2.self_attn.v_proj.weight": "model-00001.safetensors",
214
+ "model.layers.20.input_layernorm.weight": "model-00001.safetensors",
215
+ "model.layers.20.moe.down_proj.weight": "model-00020.safetensors",
216
+ "model.layers.20.moe.gate.weight": "model-00001.safetensors",
217
+ "model.layers.20.moe.gate_proj.weight": "model-00019.safetensors",
218
+ "model.layers.20.moe.router_bias": "model-00001.safetensors",
219
+ "model.layers.20.moe.up_proj.weight": "model-00020.safetensors",
220
+ "model.layers.20.post_attention_layernorm.weight": "model-00001.safetensors",
221
+ "model.layers.20.self_attn.g_proj.weight": "model-00001.safetensors",
222
+ "model.layers.20.self_attn.k_norm.weight": "model-00001.safetensors",
223
+ "model.layers.20.self_attn.k_proj.weight": "model-00001.safetensors",
224
+ "model.layers.20.self_attn.o_proj.weight": "model-00001.safetensors",
225
+ "model.layers.20.self_attn.q_norm.weight": "model-00001.safetensors",
226
+ "model.layers.20.self_attn.q_proj.weight": "model-00001.safetensors",
227
+ "model.layers.20.self_attn.v_proj.weight": "model-00001.safetensors",
228
+ "model.layers.20.share_expert.down_proj.weight": "model-00001.safetensors",
229
+ "model.layers.20.share_expert.gate_proj.weight": "model-00001.safetensors",
230
+ "model.layers.20.share_expert.up_proj.weight": "model-00001.safetensors",
231
+ "model.layers.21.input_layernorm.weight": "model-00001.safetensors",
232
+ "model.layers.21.moe.down_proj.weight": "model-00021.safetensors",
233
+ "model.layers.21.moe.gate.weight": "model-00001.safetensors",
234
+ "model.layers.21.moe.gate_proj.weight": "model-00020.safetensors",
235
+ "model.layers.21.moe.router_bias": "model-00001.safetensors",
236
+ "model.layers.21.moe.up_proj.weight": "model-00021.safetensors",
237
+ "model.layers.21.post_attention_layernorm.weight": "model-00001.safetensors",
238
+ "model.layers.21.self_attn.g_proj.weight": "model-00001.safetensors",
239
+ "model.layers.21.self_attn.k_norm.weight": "model-00001.safetensors",
240
+ "model.layers.21.self_attn.k_proj.weight": "model-00001.safetensors",
241
+ "model.layers.21.self_attn.o_proj.weight": "model-00001.safetensors",
242
+ "model.layers.21.self_attn.q_norm.weight": "model-00001.safetensors",
243
+ "model.layers.21.self_attn.q_proj.weight": "model-00001.safetensors",
244
+ "model.layers.21.self_attn.v_proj.weight": "model-00001.safetensors",
245
+ "model.layers.21.share_expert.down_proj.weight": "model-00001.safetensors",
246
+ "model.layers.21.share_expert.gate_proj.weight": "model-00001.safetensors",
247
+ "model.layers.21.share_expert.up_proj.weight": "model-00001.safetensors",
248
+ "model.layers.22.input_layernorm.weight": "model-00001.safetensors",
249
+ "model.layers.22.moe.down_proj.weight": "model-00022.safetensors",
250
+ "model.layers.22.moe.gate.weight": "model-00001.safetensors",
251
+ "model.layers.22.moe.gate_proj.weight": "model-00021.safetensors",
252
+ "model.layers.22.moe.router_bias": "model-00001.safetensors",
253
+ "model.layers.22.moe.up_proj.weight": "model-00022.safetensors",
254
+ "model.layers.22.post_attention_layernorm.weight": "model-00001.safetensors",
255
+ "model.layers.22.self_attn.g_proj.weight": "model-00001.safetensors",
256
+ "model.layers.22.self_attn.k_norm.weight": "model-00001.safetensors",
257
+ "model.layers.22.self_attn.k_proj.weight": "model-00001.safetensors",
258
+ "model.layers.22.self_attn.o_proj.weight": "model-00001.safetensors",
259
+ "model.layers.22.self_attn.q_norm.weight": "model-00001.safetensors",
260
+ "model.layers.22.self_attn.q_proj.weight": "model-00001.safetensors",
261
+ "model.layers.22.self_attn.v_proj.weight": "model-00001.safetensors",
262
+ "model.layers.22.share_expert.down_proj.weight": "model-00001.safetensors",
263
+ "model.layers.22.share_expert.gate_proj.weight": "model-00001.safetensors",
264
+ "model.layers.22.share_expert.up_proj.weight": "model-00001.safetensors",
265
+ "model.layers.23.input_layernorm.weight": "model-00001.safetensors",
266
+ "model.layers.23.moe.down_proj.weight": "model-00023.safetensors",
267
+ "model.layers.23.moe.gate.weight": "model-00001.safetensors",
268
+ "model.layers.23.moe.gate_proj.weight": "model-00022.safetensors",
269
+ "model.layers.23.moe.router_bias": "model-00001.safetensors",
270
+ "model.layers.23.moe.up_proj.weight": "model-00023.safetensors",
271
+ "model.layers.23.post_attention_layernorm.weight": "model-00001.safetensors",
272
+ "model.layers.23.self_attn.g_proj.weight": "model-00001.safetensors",
273
+ "model.layers.23.self_attn.k_norm.weight": "model-00001.safetensors",
274
+ "model.layers.23.self_attn.k_proj.weight": "model-00001.safetensors",
275
+ "model.layers.23.self_attn.o_proj.weight": "model-00001.safetensors",
276
+ "model.layers.23.self_attn.q_norm.weight": "model-00001.safetensors",
277
+ "model.layers.23.self_attn.q_proj.weight": "model-00001.safetensors",
278
+ "model.layers.23.self_attn.v_proj.weight": "model-00001.safetensors",
279
+ "model.layers.23.share_expert.down_proj.weight": "model-00001.safetensors",
280
+ "model.layers.23.share_expert.gate_proj.weight": "model-00001.safetensors",
281
+ "model.layers.23.share_expert.up_proj.weight": "model-00001.safetensors",
282
+ "model.layers.24.input_layernorm.weight": "model-00001.safetensors",
283
+ "model.layers.24.moe.down_proj.weight": "model-00024.safetensors",
284
+ "model.layers.24.moe.gate.weight": "model-00001.safetensors",
285
+ "model.layers.24.moe.gate_proj.weight": "model-00023.safetensors",
286
+ "model.layers.24.moe.router_bias": "model-00001.safetensors",
287
+ "model.layers.24.moe.up_proj.weight": "model-00024.safetensors",
288
+ "model.layers.24.post_attention_layernorm.weight": "model-00001.safetensors",
289
+ "model.layers.24.self_attn.g_proj.weight": "model-00001.safetensors",
290
+ "model.layers.24.self_attn.k_norm.weight": "model-00001.safetensors",
291
+ "model.layers.24.self_attn.k_proj.weight": "model-00001.safetensors",
292
+ "model.layers.24.self_attn.o_proj.weight": "model-00001.safetensors",
293
+ "model.layers.24.self_attn.q_norm.weight": "model-00001.safetensors",
294
+ "model.layers.24.self_attn.q_proj.weight": "model-00001.safetensors",
295
+ "model.layers.24.self_attn.v_proj.weight": "model-00001.safetensors",
296
+ "model.layers.24.share_expert.down_proj.weight": "model-00001.safetensors",
297
+ "model.layers.24.share_expert.gate_proj.weight": "model-00001.safetensors",
298
+ "model.layers.24.share_expert.up_proj.weight": "model-00001.safetensors",
299
+ "model.layers.25.input_layernorm.weight": "model-00001.safetensors",
300
+ "model.layers.25.moe.down_proj.weight": "model-00025.safetensors",
301
+ "model.layers.25.moe.gate.weight": "model-00001.safetensors",
302
+ "model.layers.25.moe.gate_proj.weight": "model-00024.safetensors",
303
+ "model.layers.25.moe.router_bias": "model-00001.safetensors",
304
+ "model.layers.25.moe.up_proj.weight": "model-00025.safetensors",
305
+ "model.layers.25.post_attention_layernorm.weight": "model-00001.safetensors",
306
+ "model.layers.25.self_attn.g_proj.weight": "model-00001.safetensors",
307
+ "model.layers.25.self_attn.k_norm.weight": "model-00001.safetensors",
308
+ "model.layers.25.self_attn.k_proj.weight": "model-00001.safetensors",
309
+ "model.layers.25.self_attn.o_proj.weight": "model-00001.safetensors",
310
+ "model.layers.25.self_attn.q_norm.weight": "model-00001.safetensors",
311
+ "model.layers.25.self_attn.q_proj.weight": "model-00001.safetensors",
312
+ "model.layers.25.self_attn.v_proj.weight": "model-00001.safetensors",
313
+ "model.layers.25.share_expert.down_proj.weight": "model-00001.safetensors",
314
+ "model.layers.25.share_expert.gate_proj.weight": "model-00001.safetensors",
315
+ "model.layers.25.share_expert.up_proj.weight": "model-00001.safetensors",
316
+ "model.layers.26.input_layernorm.weight": "model-00001.safetensors",
317
+ "model.layers.26.moe.down_proj.weight": "model-00026.safetensors",
318
+ "model.layers.26.moe.gate.weight": "model-00001.safetensors",
319
+ "model.layers.26.moe.gate_proj.weight": "model-00025.safetensors",
320
+ "model.layers.26.moe.router_bias": "model-00001.safetensors",
321
+ "model.layers.26.moe.up_proj.weight": "model-00026.safetensors",
322
+ "model.layers.26.post_attention_layernorm.weight": "model-00001.safetensors",
323
+ "model.layers.26.self_attn.g_proj.weight": "model-00001.safetensors",
324
+ "model.layers.26.self_attn.k_norm.weight": "model-00001.safetensors",
325
+ "model.layers.26.self_attn.k_proj.weight": "model-00001.safetensors",
326
+ "model.layers.26.self_attn.o_proj.weight": "model-00001.safetensors",
327
+ "model.layers.26.self_attn.q_norm.weight": "model-00001.safetensors",
328
+ "model.layers.26.self_attn.q_proj.weight": "model-00001.safetensors",
329
+ "model.layers.26.self_attn.v_proj.weight": "model-00001.safetensors",
330
+ "model.layers.26.share_expert.down_proj.weight": "model-00001.safetensors",
331
+ "model.layers.26.share_expert.gate_proj.weight": "model-00002.safetensors",
332
+ "model.layers.26.share_expert.up_proj.weight": "model-00002.safetensors",
333
+ "model.layers.27.input_layernorm.weight": "model-00001.safetensors",
334
+ "model.layers.27.moe.down_proj.weight": "model-00027.safetensors",
335
+ "model.layers.27.moe.gate.weight": "model-00001.safetensors",
336
+ "model.layers.27.moe.gate_proj.weight": "model-00026.safetensors",
337
+ "model.layers.27.moe.router_bias": "model-00001.safetensors",
338
+ "model.layers.27.moe.up_proj.weight": "model-00027.safetensors",
339
+ "model.layers.27.post_attention_layernorm.weight": "model-00001.safetensors",
340
+ "model.layers.27.self_attn.g_proj.weight": "model-00001.safetensors",
341
+ "model.layers.27.self_attn.k_norm.weight": "model-00001.safetensors",
342
+ "model.layers.27.self_attn.k_proj.weight": "model-00001.safetensors",
343
+ "model.layers.27.self_attn.o_proj.weight": "model-00001.safetensors",
344
+ "model.layers.27.self_attn.q_norm.weight": "model-00001.safetensors",
345
+ "model.layers.27.self_attn.q_proj.weight": "model-00001.safetensors",
346
+ "model.layers.27.self_attn.v_proj.weight": "model-00001.safetensors",
347
+ "model.layers.27.share_expert.down_proj.weight": "model-00001.safetensors",
348
+ "model.layers.27.share_expert.gate_proj.weight": "model-00002.safetensors",
349
+ "model.layers.27.share_expert.up_proj.weight": "model-00002.safetensors",
350
+ "model.layers.28.input_layernorm.weight": "model-00002.safetensors",
351
+ "model.layers.28.moe.down_proj.weight": "model-00028.safetensors",
352
+ "model.layers.28.moe.gate.weight": "model-00002.safetensors",
353
+ "model.layers.28.moe.gate_proj.weight": "model-00027.safetensors",
354
+ "model.layers.28.moe.router_bias": "model-00002.safetensors",
355
+ "model.layers.28.moe.up_proj.weight": "model-00028.safetensors",
356
+ "model.layers.28.post_attention_layernorm.weight": "model-00002.safetensors",
357
+ "model.layers.28.self_attn.g_proj.weight": "model-00002.safetensors",
358
+ "model.layers.28.self_attn.k_norm.weight": "model-00002.safetensors",
359
+ "model.layers.28.self_attn.k_proj.weight": "model-00002.safetensors",
360
+ "model.layers.28.self_attn.o_proj.weight": "model-00002.safetensors",
361
+ "model.layers.28.self_attn.q_norm.weight": "model-00002.safetensors",
362
+ "model.layers.28.self_attn.q_proj.weight": "model-00002.safetensors",
363
+ "model.layers.28.self_attn.v_proj.weight": "model-00002.safetensors",
364
+ "model.layers.28.share_expert.down_proj.weight": "model-00002.safetensors",
365
+ "model.layers.28.share_expert.gate_proj.weight": "model-00002.safetensors",
366
+ "model.layers.28.share_expert.up_proj.weight": "model-00002.safetensors",
367
+ "model.layers.29.input_layernorm.weight": "model-00002.safetensors",
368
+ "model.layers.29.moe.down_proj.weight": "model-00029.safetensors",
369
+ "model.layers.29.moe.gate.weight": "model-00002.safetensors",
370
+ "model.layers.29.moe.gate_proj.weight": "model-00028.safetensors",
371
+ "model.layers.29.moe.router_bias": "model-00002.safetensors",
372
+ "model.layers.29.moe.up_proj.weight": "model-00029.safetensors",
373
+ "model.layers.29.post_attention_layernorm.weight": "model-00002.safetensors",
374
+ "model.layers.29.self_attn.g_proj.weight": "model-00002.safetensors",
375
+ "model.layers.29.self_attn.k_norm.weight": "model-00002.safetensors",
376
+ "model.layers.29.self_attn.k_proj.weight": "model-00002.safetensors",
377
+ "model.layers.29.self_attn.o_proj.weight": "model-00002.safetensors",
378
+ "model.layers.29.self_attn.q_norm.weight": "model-00002.safetensors",
379
+ "model.layers.29.self_attn.q_proj.weight": "model-00002.safetensors",
380
+ "model.layers.29.self_attn.v_proj.weight": "model-00002.safetensors",
381
+ "model.layers.29.share_expert.down_proj.weight": "model-00002.safetensors",
382
+ "model.layers.29.share_expert.gate_proj.weight": "model-00002.safetensors",
383
+ "model.layers.29.share_expert.up_proj.weight": "model-00002.safetensors",
384
+ "model.layers.3.input_layernorm.weight": "model-00001.safetensors",
385
+ "model.layers.3.moe.down_proj.weight": "model-00003.safetensors",
386
+ "model.layers.3.moe.gate.weight": "model-00001.safetensors",
387
+ "model.layers.3.moe.gate_proj.weight": "model-00002.safetensors",
388
+ "model.layers.3.moe.router_bias": "model-00001.safetensors",
389
+ "model.layers.3.moe.up_proj.weight": "model-00003.safetensors",
390
+ "model.layers.3.post_attention_layernorm.weight": "model-00001.safetensors",
391
+ "model.layers.3.self_attn.g_proj.weight": "model-00001.safetensors",
392
+ "model.layers.3.self_attn.k_norm.weight": "model-00001.safetensors",
393
+ "model.layers.3.self_attn.k_proj.weight": "model-00001.safetensors",
394
+ "model.layers.3.self_attn.o_proj.weight": "model-00001.safetensors",
395
+ "model.layers.3.self_attn.q_norm.weight": "model-00001.safetensors",
396
+ "model.layers.3.self_attn.q_proj.weight": "model-00001.safetensors",
397
+ "model.layers.3.self_attn.v_proj.weight": "model-00001.safetensors",
398
+ "model.layers.3.share_expert.down_proj.weight": "model-00001.safetensors",
399
+ "model.layers.3.share_expert.gate_proj.weight": "model-00001.safetensors",
400
+ "model.layers.3.share_expert.up_proj.weight": "model-00001.safetensors",
401
+ "model.layers.30.input_layernorm.weight": "model-00002.safetensors",
402
+ "model.layers.30.moe.down_proj.weight": "model-00030.safetensors",
403
+ "model.layers.30.moe.gate.weight": "model-00002.safetensors",
404
+ "model.layers.30.moe.gate_proj.weight": "model-00029.safetensors",
405
+ "model.layers.30.moe.router_bias": "model-00002.safetensors",
406
+ "model.layers.30.moe.up_proj.weight": "model-00030.safetensors",
407
+ "model.layers.30.post_attention_layernorm.weight": "model-00002.safetensors",
408
+ "model.layers.30.self_attn.g_proj.weight": "model-00002.safetensors",
409
+ "model.layers.30.self_attn.k_norm.weight": "model-00002.safetensors",
410
+ "model.layers.30.self_attn.k_proj.weight": "model-00002.safetensors",
411
+ "model.layers.30.self_attn.o_proj.weight": "model-00002.safetensors",
412
+ "model.layers.30.self_attn.q_norm.weight": "model-00002.safetensors",
413
+ "model.layers.30.self_attn.q_proj.weight": "model-00002.safetensors",
414
+ "model.layers.30.self_attn.v_proj.weight": "model-00002.safetensors",
415
+ "model.layers.30.share_expert.down_proj.weight": "model-00002.safetensors",
416
+ "model.layers.30.share_expert.gate_proj.weight": "model-00002.safetensors",
417
+ "model.layers.30.share_expert.up_proj.weight": "model-00002.safetensors",
418
+ "model.layers.31.input_layernorm.weight": "model-00002.safetensors",
419
+ "model.layers.31.moe.down_proj.weight": "model-00031.safetensors",
420
+ "model.layers.31.moe.gate.weight": "model-00002.safetensors",
421
+ "model.layers.31.moe.gate_proj.weight": "model-00030.safetensors",
422
+ "model.layers.31.moe.router_bias": "model-00002.safetensors",
423
+ "model.layers.31.moe.up_proj.weight": "model-00031.safetensors",
424
+ "model.layers.31.post_attention_layernorm.weight": "model-00002.safetensors",
425
+ "model.layers.31.self_attn.g_proj.weight": "model-00002.safetensors",
426
+ "model.layers.31.self_attn.k_norm.weight": "model-00002.safetensors",
427
+ "model.layers.31.self_attn.k_proj.weight": "model-00002.safetensors",
428
+ "model.layers.31.self_attn.o_proj.weight": "model-00002.safetensors",
429
+ "model.layers.31.self_attn.q_norm.weight": "model-00002.safetensors",
430
+ "model.layers.31.self_attn.q_proj.weight": "model-00002.safetensors",
431
+ "model.layers.31.self_attn.v_proj.weight": "model-00002.safetensors",
432
+ "model.layers.31.share_expert.down_proj.weight": "model-00002.safetensors",
433
+ "model.layers.31.share_expert.gate_proj.weight": "model-00002.safetensors",
434
+ "model.layers.31.share_expert.up_proj.weight": "model-00002.safetensors",
435
+ "model.layers.32.input_layernorm.weight": "model-00001.safetensors",
436
+ "model.layers.32.moe.down_proj.weight": "model-00032.safetensors",
437
+ "model.layers.32.moe.gate.weight": "model-00001.safetensors",
438
+ "model.layers.32.moe.gate_proj.weight": "model-00031.safetensors",
439
+ "model.layers.32.moe.router_bias": "model-00001.safetensors",
440
+ "model.layers.32.moe.up_proj.weight": "model-00032.safetensors",
441
+ "model.layers.32.post_attention_layernorm.weight": "model-00001.safetensors",
442
+ "model.layers.32.self_attn.g_proj.weight": "model-00001.safetensors",
443
+ "model.layers.32.self_attn.k_norm.weight": "model-00001.safetensors",
444
+ "model.layers.32.self_attn.k_proj.weight": "model-00001.safetensors",
445
+ "model.layers.32.self_attn.o_proj.weight": "model-00001.safetensors",
446
+ "model.layers.32.self_attn.q_norm.weight": "model-00001.safetensors",
447
+ "model.layers.32.self_attn.q_proj.weight": "model-00001.safetensors",
448
+ "model.layers.32.self_attn.v_proj.weight": "model-00001.safetensors",
449
+ "model.layers.32.share_expert.down_proj.weight": "model-00001.safetensors",
450
+ "model.layers.32.share_expert.gate_proj.weight": "model-00001.safetensors",
451
+ "model.layers.32.share_expert.up_proj.weight": "model-00001.safetensors",
452
+ "model.layers.33.input_layernorm.weight": "model-00001.safetensors",
453
+ "model.layers.33.moe.down_proj.weight": "model-00033.safetensors",
454
+ "model.layers.33.moe.gate.weight": "model-00001.safetensors",
455
+ "model.layers.33.moe.gate_proj.weight": "model-00032.safetensors",
456
+ "model.layers.33.moe.router_bias": "model-00001.safetensors",
457
+ "model.layers.33.moe.up_proj.weight": "model-00033.safetensors",
458
+ "model.layers.33.post_attention_layernorm.weight": "model-00001.safetensors",
459
+ "model.layers.33.self_attn.g_proj.weight": "model-00001.safetensors",
460
+ "model.layers.33.self_attn.k_norm.weight": "model-00001.safetensors",
461
+ "model.layers.33.self_attn.k_proj.weight": "model-00001.safetensors",
462
+ "model.layers.33.self_attn.o_proj.weight": "model-00001.safetensors",
463
+ "model.layers.33.self_attn.q_norm.weight": "model-00001.safetensors",
464
+ "model.layers.33.self_attn.q_proj.weight": "model-00001.safetensors",
465
+ "model.layers.33.self_attn.v_proj.weight": "model-00001.safetensors",
466
+ "model.layers.33.share_expert.down_proj.weight": "model-00001.safetensors",
467
+ "model.layers.33.share_expert.gate_proj.weight": "model-00001.safetensors",
468
+ "model.layers.33.share_expert.up_proj.weight": "model-00001.safetensors",
469
+ "model.layers.34.input_layernorm.weight": "model-00001.safetensors",
470
+ "model.layers.34.moe.down_proj.weight": "model-00034.safetensors",
471
+ "model.layers.34.moe.gate.weight": "model-00001.safetensors",
472
+ "model.layers.34.moe.gate_proj.weight": "model-00033.safetensors",
473
+ "model.layers.34.moe.router_bias": "model-00001.safetensors",
474
+ "model.layers.34.moe.up_proj.weight": "model-00034.safetensors",
475
+ "model.layers.34.post_attention_layernorm.weight": "model-00001.safetensors",
476
+ "model.layers.34.self_attn.g_proj.weight": "model-00001.safetensors",
477
+ "model.layers.34.self_attn.k_norm.weight": "model-00001.safetensors",
478
+ "model.layers.34.self_attn.k_proj.weight": "model-00001.safetensors",
479
+ "model.layers.34.self_attn.o_proj.weight": "model-00001.safetensors",
480
+ "model.layers.34.self_attn.q_norm.weight": "model-00001.safetensors",
481
+ "model.layers.34.self_attn.q_proj.weight": "model-00001.safetensors",
482
+ "model.layers.34.self_attn.v_proj.weight": "model-00001.safetensors",
483
+ "model.layers.34.share_expert.down_proj.weight": "model-00001.safetensors",
484
+ "model.layers.34.share_expert.gate_proj.weight": "model-00001.safetensors",
485
+ "model.layers.34.share_expert.up_proj.weight": "model-00001.safetensors",
486
+ "model.layers.35.input_layernorm.weight": "model-00001.safetensors",
487
+ "model.layers.35.moe.down_proj.weight": "model-00035.safetensors",
488
+ "model.layers.35.moe.gate.weight": "model-00001.safetensors",
489
+ "model.layers.35.moe.gate_proj.weight": "model-00034.safetensors",
490
+ "model.layers.35.moe.router_bias": "model-00001.safetensors",
491
+ "model.layers.35.moe.up_proj.weight": "model-00035.safetensors",
492
+ "model.layers.35.post_attention_layernorm.weight": "model-00001.safetensors",
493
+ "model.layers.35.self_attn.g_proj.weight": "model-00001.safetensors",
494
+ "model.layers.35.self_attn.k_norm.weight": "model-00001.safetensors",
495
+ "model.layers.35.self_attn.k_proj.weight": "model-00001.safetensors",
496
+ "model.layers.35.self_attn.o_proj.weight": "model-00001.safetensors",
497
+ "model.layers.35.self_attn.q_norm.weight": "model-00001.safetensors",
498
+ "model.layers.35.self_attn.q_proj.weight": "model-00001.safetensors",
499
+ "model.layers.35.self_attn.v_proj.weight": "model-00001.safetensors",
500
+ "model.layers.35.share_expert.down_proj.weight": "model-00001.safetensors",
501
+ "model.layers.35.share_expert.gate_proj.weight": "model-00001.safetensors",
502
+ "model.layers.35.share_expert.up_proj.weight": "model-00001.safetensors",
503
+ "model.layers.36.input_layernorm.weight": "model-00001.safetensors",
504
+ "model.layers.36.moe.down_proj.weight": "model-00036.safetensors",
505
+ "model.layers.36.moe.gate.weight": "model-00001.safetensors",
506
+ "model.layers.36.moe.gate_proj.weight": "model-00035.safetensors",
507
+ "model.layers.36.moe.router_bias": "model-00001.safetensors",
508
+ "model.layers.36.moe.up_proj.weight": "model-00036.safetensors",
509
+ "model.layers.36.post_attention_layernorm.weight": "model-00001.safetensors",
510
+ "model.layers.36.self_attn.g_proj.weight": "model-00001.safetensors",
511
+ "model.layers.36.self_attn.k_norm.weight": "model-00001.safetensors",
512
+ "model.layers.36.self_attn.k_proj.weight": "model-00001.safetensors",
513
+ "model.layers.36.self_attn.o_proj.weight": "model-00001.safetensors",
514
+ "model.layers.36.self_attn.q_norm.weight": "model-00001.safetensors",
515
+ "model.layers.36.self_attn.q_proj.weight": "model-00001.safetensors",
516
+ "model.layers.36.self_attn.v_proj.weight": "model-00001.safetensors",
517
+ "model.layers.36.share_expert.down_proj.weight": "model-00001.safetensors",
518
+ "model.layers.36.share_expert.gate_proj.weight": "model-00001.safetensors",
519
+ "model.layers.36.share_expert.up_proj.weight": "model-00001.safetensors",
520
+ "model.layers.37.input_layernorm.weight": "model-00001.safetensors",
521
+ "model.layers.37.moe.down_proj.weight": "model-00037.safetensors",
522
+ "model.layers.37.moe.gate.weight": "model-00001.safetensors",
523
+ "model.layers.37.moe.gate_proj.weight": "model-00036.safetensors",
524
+ "model.layers.37.moe.router_bias": "model-00001.safetensors",
525
+ "model.layers.37.moe.up_proj.weight": "model-00037.safetensors",
526
+ "model.layers.37.post_attention_layernorm.weight": "model-00001.safetensors",
527
+ "model.layers.37.self_attn.g_proj.weight": "model-00001.safetensors",
528
+ "model.layers.37.self_attn.k_norm.weight": "model-00001.safetensors",
529
+ "model.layers.37.self_attn.k_proj.weight": "model-00001.safetensors",
530
+ "model.layers.37.self_attn.o_proj.weight": "model-00001.safetensors",
531
+ "model.layers.37.self_attn.q_norm.weight": "model-00001.safetensors",
532
+ "model.layers.37.self_attn.q_proj.weight": "model-00001.safetensors",
533
+ "model.layers.37.self_attn.v_proj.weight": "model-00001.safetensors",
534
+ "model.layers.37.share_expert.down_proj.weight": "model-00001.safetensors",
535
+ "model.layers.37.share_expert.gate_proj.weight": "model-00001.safetensors",
536
+ "model.layers.37.share_expert.up_proj.weight": "model-00001.safetensors",
537
+ "model.layers.38.input_layernorm.weight": "model-00001.safetensors",
538
+ "model.layers.38.moe.down_proj.weight": "model-00038.safetensors",
539
+ "model.layers.38.moe.gate.weight": "model-00001.safetensors",
540
+ "model.layers.38.moe.gate_proj.weight": "model-00037.safetensors",
541
+ "model.layers.38.moe.router_bias": "model-00001.safetensors",
542
+ "model.layers.38.moe.up_proj.weight": "model-00038.safetensors",
543
+ "model.layers.38.post_attention_layernorm.weight": "model-00001.safetensors",
544
+ "model.layers.38.self_attn.g_proj.weight": "model-00001.safetensors",
545
+ "model.layers.38.self_attn.k_norm.weight": "model-00001.safetensors",
546
+ "model.layers.38.self_attn.k_proj.weight": "model-00001.safetensors",
547
+ "model.layers.38.self_attn.o_proj.weight": "model-00001.safetensors",
548
+ "model.layers.38.self_attn.q_norm.weight": "model-00001.safetensors",
549
+ "model.layers.38.self_attn.q_proj.weight": "model-00001.safetensors",
550
+ "model.layers.38.self_attn.v_proj.weight": "model-00001.safetensors",
551
+ "model.layers.38.share_expert.down_proj.weight": "model-00001.safetensors",
552
+ "model.layers.38.share_expert.gate_proj.weight": "model-00001.safetensors",
553
+ "model.layers.38.share_expert.up_proj.weight": "model-00001.safetensors",
554
+ "model.layers.39.input_layernorm.weight": "model-00001.safetensors",
555
+ "model.layers.39.moe.down_proj.weight": "model-00039.safetensors",
556
+ "model.layers.39.moe.gate.weight": "model-00001.safetensors",
557
+ "model.layers.39.moe.gate_proj.weight": "model-00038.safetensors",
558
+ "model.layers.39.moe.router_bias": "model-00001.safetensors",
559
+ "model.layers.39.moe.up_proj.weight": "model-00039.safetensors",
560
+ "model.layers.39.post_attention_layernorm.weight": "model-00001.safetensors",
561
+ "model.layers.39.self_attn.g_proj.weight": "model-00001.safetensors",
562
+ "model.layers.39.self_attn.k_norm.weight": "model-00001.safetensors",
563
+ "model.layers.39.self_attn.k_proj.weight": "model-00001.safetensors",
564
+ "model.layers.39.self_attn.o_proj.weight": "model-00001.safetensors",
565
+ "model.layers.39.self_attn.q_norm.weight": "model-00001.safetensors",
566
+ "model.layers.39.self_attn.q_proj.weight": "model-00001.safetensors",
567
+ "model.layers.39.self_attn.v_proj.weight": "model-00001.safetensors",
568
+ "model.layers.39.share_expert.down_proj.weight": "model-00001.safetensors",
569
+ "model.layers.39.share_expert.gate_proj.weight": "model-00001.safetensors",
570
+ "model.layers.39.share_expert.up_proj.weight": "model-00001.safetensors",
571
+ "model.layers.4.input_layernorm.weight": "model-00001.safetensors",
572
+ "model.layers.4.moe.down_proj.weight": "model-00004.safetensors",
573
+ "model.layers.4.moe.gate.weight": "model-00001.safetensors",
574
+ "model.layers.4.moe.gate_proj.weight": "model-00003.safetensors",
575
+ "model.layers.4.moe.router_bias": "model-00001.safetensors",
576
+ "model.layers.4.moe.up_proj.weight": "model-00004.safetensors",
577
+ "model.layers.4.post_attention_layernorm.weight": "model-00001.safetensors",
578
+ "model.layers.4.self_attn.g_proj.weight": "model-00001.safetensors",
579
+ "model.layers.4.self_attn.k_norm.weight": "model-00001.safetensors",
580
+ "model.layers.4.self_attn.k_proj.weight": "model-00001.safetensors",
581
+ "model.layers.4.self_attn.o_proj.weight": "model-00001.safetensors",
582
+ "model.layers.4.self_attn.q_norm.weight": "model-00001.safetensors",
583
+ "model.layers.4.self_attn.q_proj.weight": "model-00001.safetensors",
584
+ "model.layers.4.self_attn.v_proj.weight": "model-00001.safetensors",
585
+ "model.layers.4.share_expert.down_proj.weight": "model-00001.safetensors",
586
+ "model.layers.4.share_expert.gate_proj.weight": "model-00001.safetensors",
587
+ "model.layers.4.share_expert.up_proj.weight": "model-00001.safetensors",
588
+ "model.layers.40.input_layernorm.weight": "model-00001.safetensors",
589
+ "model.layers.40.moe.down_proj.weight": "model-00040.safetensors",
590
+ "model.layers.40.moe.gate.weight": "model-00001.safetensors",
591
+ "model.layers.40.moe.gate_proj.weight": "model-00039.safetensors",
592
+ "model.layers.40.moe.router_bias": "model-00001.safetensors",
593
+ "model.layers.40.moe.up_proj.weight": "model-00040.safetensors",
594
+ "model.layers.40.post_attention_layernorm.weight": "model-00001.safetensors",
595
+ "model.layers.40.self_attn.g_proj.weight": "model-00001.safetensors",
596
+ "model.layers.40.self_attn.k_norm.weight": "model-00001.safetensors",
597
+ "model.layers.40.self_attn.k_proj.weight": "model-00001.safetensors",
598
+ "model.layers.40.self_attn.o_proj.weight": "model-00001.safetensors",
599
+ "model.layers.40.self_attn.q_norm.weight": "model-00001.safetensors",
600
+ "model.layers.40.self_attn.q_proj.weight": "model-00001.safetensors",
601
+ "model.layers.40.self_attn.v_proj.weight": "model-00001.safetensors",
602
+ "model.layers.40.share_expert.down_proj.weight": "model-00001.safetensors",
603
+ "model.layers.40.share_expert.gate_proj.weight": "model-00001.safetensors",
604
+ "model.layers.40.share_expert.up_proj.weight": "model-00001.safetensors",
605
+ "model.layers.41.input_layernorm.weight": "model-00001.safetensors",
606
+ "model.layers.41.moe.down_proj.weight": "model-00041.safetensors",
607
+ "model.layers.41.moe.gate.weight": "model-00001.safetensors",
608
+ "model.layers.41.moe.gate_proj.weight": "model-00040.safetensors",
609
+ "model.layers.41.moe.router_bias": "model-00001.safetensors",
610
+ "model.layers.41.moe.up_proj.weight": "model-00041.safetensors",
611
+ "model.layers.41.post_attention_layernorm.weight": "model-00001.safetensors",
612
+ "model.layers.41.self_attn.g_proj.weight": "model-00001.safetensors",
613
+ "model.layers.41.self_attn.k_norm.weight": "model-00001.safetensors",
614
+ "model.layers.41.self_attn.k_proj.weight": "model-00001.safetensors",
615
+ "model.layers.41.self_attn.o_proj.weight": "model-00001.safetensors",
616
+ "model.layers.41.self_attn.q_norm.weight": "model-00001.safetensors",
617
+ "model.layers.41.self_attn.q_proj.weight": "model-00001.safetensors",
618
+ "model.layers.41.self_attn.v_proj.weight": "model-00001.safetensors",
619
+ "model.layers.41.share_expert.down_proj.weight": "model-00001.safetensors",
620
+ "model.layers.41.share_expert.gate_proj.weight": "model-00001.safetensors",
621
+ "model.layers.41.share_expert.up_proj.weight": "model-00001.safetensors",
622
+ "model.layers.42.input_layernorm.weight": "model-00001.safetensors",
623
+ "model.layers.42.moe.down_proj.weight": "model-00042.safetensors",
624
+ "model.layers.42.moe.gate.weight": "model-00001.safetensors",
625
+ "model.layers.42.moe.gate_proj.weight": "model-00041.safetensors",
626
+ "model.layers.42.moe.router_bias": "model-00001.safetensors",
627
+ "model.layers.42.moe.up_proj.weight": "model-00042.safetensors",
628
+ "model.layers.42.post_attention_layernorm.weight": "model-00001.safetensors",
629
+ "model.layers.42.self_attn.g_proj.weight": "model-00002.safetensors",
630
+ "model.layers.42.self_attn.k_norm.weight": "model-00001.safetensors",
631
+ "model.layers.42.self_attn.k_proj.weight": "model-00002.safetensors",
632
+ "model.layers.42.self_attn.o_proj.weight": "model-00001.safetensors",
633
+ "model.layers.42.self_attn.q_norm.weight": "model-00001.safetensors",
634
+ "model.layers.42.self_attn.q_proj.weight": "model-00002.safetensors",
635
+ "model.layers.42.self_attn.v_proj.weight": "model-00002.safetensors",
636
+ "model.layers.42.share_expert.down_proj.weight": "model-00001.safetensors",
637
+ "model.layers.42.share_expert.gate_proj.weight": "model-00002.safetensors",
638
+ "model.layers.42.share_expert.up_proj.weight": "model-00002.safetensors",
639
+ "model.layers.43.input_layernorm.weight": "model-00001.safetensors",
640
+ "model.layers.43.moe.down_proj.weight": "model-00043.safetensors",
641
+ "model.layers.43.moe.gate.weight": "model-00001.safetensors",
642
+ "model.layers.43.moe.gate_proj.weight": "model-00042.safetensors",
643
+ "model.layers.43.moe.router_bias": "model-00001.safetensors",
644
+ "model.layers.43.moe.up_proj.weight": "model-00043.safetensors",
645
+ "model.layers.43.post_attention_layernorm.weight": "model-00001.safetensors",
646
+ "model.layers.43.self_attn.g_proj.weight": "model-00002.safetensors",
647
+ "model.layers.43.self_attn.k_norm.weight": "model-00001.safetensors",
648
+ "model.layers.43.self_attn.k_proj.weight": "model-00002.safetensors",
649
+ "model.layers.43.self_attn.o_proj.weight": "model-00001.safetensors",
650
+ "model.layers.43.self_attn.q_norm.weight": "model-00001.safetensors",
651
+ "model.layers.43.self_attn.q_proj.weight": "model-00002.safetensors",
652
+ "model.layers.43.self_attn.v_proj.weight": "model-00002.safetensors",
653
+ "model.layers.43.share_expert.down_proj.weight": "model-00001.safetensors",
654
+ "model.layers.43.share_expert.gate_proj.weight": "model-00002.safetensors",
655
+ "model.layers.43.share_expert.up_proj.weight": "model-00002.safetensors",
656
+ "model.layers.44.input_layernorm.weight": "model-00002.safetensors",
657
+ "model.layers.44.moe.down_proj.weight": "model-00044.safetensors",
658
+ "model.layers.44.moe.gate.weight": "model-00002.safetensors",
659
+ "model.layers.44.moe.gate_proj.weight": "model-00043.safetensors",
660
+ "model.layers.44.moe.router_bias": "model-00002.safetensors",
661
+ "model.layers.44.moe.up_proj.weight": "model-00044.safetensors",
662
+ "model.layers.44.post_attention_layernorm.weight": "model-00002.safetensors",
663
+ "model.layers.44.self_attn.g_proj.weight": "model-00002.safetensors",
664
+ "model.layers.44.self_attn.k_norm.weight": "model-00002.safetensors",
665
+ "model.layers.44.self_attn.k_proj.weight": "model-00002.safetensors",
666
+ "model.layers.44.self_attn.o_proj.weight": "model-00002.safetensors",
667
+ "model.layers.44.self_attn.q_norm.weight": "model-00002.safetensors",
668
+ "model.layers.44.self_attn.q_proj.weight": "model-00002.safetensors",
669
+ "model.layers.44.self_attn.v_proj.weight": "model-00002.safetensors",
670
+ "model.layers.44.share_expert.down_proj.weight": "model-00002.safetensors",
671
+ "model.layers.44.share_expert.gate_proj.weight": "model-00002.safetensors",
672
+ "model.layers.44.share_expert.up_proj.weight": "model-00002.safetensors",
673
+ "model.layers.45.eh_proj.weight": "model-00002.safetensors",
674
+ "model.layers.45.enorm.weight": "model-00002.safetensors",
675
+ "model.layers.45.hnorm.weight": "model-00002.safetensors",
676
+ "model.layers.45.input_layernorm.weight": "model-00002.safetensors",
677
+ "model.layers.45.mlp.down_proj.weight": "model-00002.safetensors",
678
+ "model.layers.45.mlp.gate_proj.weight": "model-00002.safetensors",
679
+ "model.layers.45.mlp.up_proj.weight": "model-00002.safetensors",
680
+ "model.layers.45.post_attention_layernorm.weight": "model-00002.safetensors",
681
+ "model.layers.45.self_attn.g_proj.weight": "model-00002.safetensors",
682
+ "model.layers.45.self_attn.k_norm.weight": "model-00002.safetensors",
683
+ "model.layers.45.self_attn.k_proj.weight": "model-00002.safetensors",
684
+ "model.layers.45.self_attn.o_proj.weight": "model-00002.safetensors",
685
+ "model.layers.45.self_attn.q_norm.weight": "model-00002.safetensors",
686
+ "model.layers.45.self_attn.q_proj.weight": "model-00002.safetensors",
687
+ "model.layers.45.self_attn.v_proj.weight": "model-00002.safetensors",
688
+ "model.layers.45.transformer.shared_head.norm.weight": "model-00002.safetensors",
689
+ "model.layers.45.transformer.shared_head.output.weight": "model-00002.safetensors",
690
+ "model.layers.5.input_layernorm.weight": "model-00001.safetensors",
691
+ "model.layers.5.moe.down_proj.weight": "model-00005.safetensors",
692
+ "model.layers.5.moe.gate.weight": "model-00001.safetensors",
693
+ "model.layers.5.moe.gate_proj.weight": "model-00004.safetensors",
694
+ "model.layers.5.moe.router_bias": "model-00001.safetensors",
695
+ "model.layers.5.moe.up_proj.weight": "model-00005.safetensors",
696
+ "model.layers.5.post_attention_layernorm.weight": "model-00001.safetensors",
697
+ "model.layers.5.self_attn.g_proj.weight": "model-00001.safetensors",
698
+ "model.layers.5.self_attn.k_norm.weight": "model-00001.safetensors",
699
+ "model.layers.5.self_attn.k_proj.weight": "model-00001.safetensors",
700
+ "model.layers.5.self_attn.o_proj.weight": "model-00001.safetensors",
701
+ "model.layers.5.self_attn.q_norm.weight": "model-00001.safetensors",
702
+ "model.layers.5.self_attn.q_proj.weight": "model-00001.safetensors",
703
+ "model.layers.5.self_attn.v_proj.weight": "model-00001.safetensors",
704
+ "model.layers.5.share_expert.down_proj.weight": "model-00001.safetensors",
705
+ "model.layers.5.share_expert.gate_proj.weight": "model-00001.safetensors",
706
+ "model.layers.5.share_expert.up_proj.weight": "model-00001.safetensors",
707
+ "model.layers.6.input_layernorm.weight": "model-00001.safetensors",
708
+ "model.layers.6.moe.down_proj.weight": "model-00006.safetensors",
709
+ "model.layers.6.moe.gate.weight": "model-00001.safetensors",
710
+ "model.layers.6.moe.gate_proj.weight": "model-00005.safetensors",
711
+ "model.layers.6.moe.router_bias": "model-00001.safetensors",
712
+ "model.layers.6.moe.up_proj.weight": "model-00006.safetensors",
713
+ "model.layers.6.post_attention_layernorm.weight": "model-00001.safetensors",
714
+ "model.layers.6.self_attn.g_proj.weight": "model-00001.safetensors",
715
+ "model.layers.6.self_attn.k_norm.weight": "model-00001.safetensors",
716
+ "model.layers.6.self_attn.k_proj.weight": "model-00001.safetensors",
717
+ "model.layers.6.self_attn.o_proj.weight": "model-00001.safetensors",
718
+ "model.layers.6.self_attn.q_norm.weight": "model-00001.safetensors",
719
+ "model.layers.6.self_attn.q_proj.weight": "model-00001.safetensors",
720
+ "model.layers.6.self_attn.v_proj.weight": "model-00001.safetensors",
721
+ "model.layers.6.share_expert.down_proj.weight": "model-00001.safetensors",
722
+ "model.layers.6.share_expert.gate_proj.weight": "model-00001.safetensors",
723
+ "model.layers.6.share_expert.up_proj.weight": "model-00001.safetensors",
724
+ "model.layers.7.input_layernorm.weight": "model-00001.safetensors",
725
+ "model.layers.7.moe.down_proj.weight": "model-00007.safetensors",
726
+ "model.layers.7.moe.gate.weight": "model-00001.safetensors",
727
+ "model.layers.7.moe.gate_proj.weight": "model-00006.safetensors",
728
+ "model.layers.7.moe.router_bias": "model-00001.safetensors",
729
+ "model.layers.7.moe.up_proj.weight": "model-00007.safetensors",
730
+ "model.layers.7.post_attention_layernorm.weight": "model-00001.safetensors",
731
+ "model.layers.7.self_attn.g_proj.weight": "model-00001.safetensors",
732
+ "model.layers.7.self_attn.k_norm.weight": "model-00001.safetensors",
733
+ "model.layers.7.self_attn.k_proj.weight": "model-00001.safetensors",
734
+ "model.layers.7.self_attn.o_proj.weight": "model-00001.safetensors",
735
+ "model.layers.7.self_attn.q_norm.weight": "model-00001.safetensors",
736
+ "model.layers.7.self_attn.q_proj.weight": "model-00001.safetensors",
737
+ "model.layers.7.self_attn.v_proj.weight": "model-00001.safetensors",
738
+ "model.layers.7.share_expert.down_proj.weight": "model-00001.safetensors",
739
+ "model.layers.7.share_expert.gate_proj.weight": "model-00001.safetensors",
740
+ "model.layers.7.share_expert.up_proj.weight": "model-00001.safetensors",
741
+ "model.layers.8.input_layernorm.weight": "model-00001.safetensors",
742
+ "model.layers.8.moe.down_proj.weight": "model-00008.safetensors",
743
+ "model.layers.8.moe.gate.weight": "model-00001.safetensors",
744
+ "model.layers.8.moe.gate_proj.weight": "model-00007.safetensors",
745
+ "model.layers.8.moe.router_bias": "model-00001.safetensors",
746
+ "model.layers.8.moe.up_proj.weight": "model-00008.safetensors",
747
+ "model.layers.8.post_attention_layernorm.weight": "model-00001.safetensors",
748
+ "model.layers.8.self_attn.g_proj.weight": "model-00001.safetensors",
749
+ "model.layers.8.self_attn.k_norm.weight": "model-00001.safetensors",
750
+ "model.layers.8.self_attn.k_proj.weight": "model-00001.safetensors",
751
+ "model.layers.8.self_attn.o_proj.weight": "model-00001.safetensors",
752
+ "model.layers.8.self_attn.q_norm.weight": "model-00001.safetensors",
753
+ "model.layers.8.self_attn.q_proj.weight": "model-00001.safetensors",
754
+ "model.layers.8.self_attn.v_proj.weight": "model-00001.safetensors",
755
+ "model.layers.8.share_expert.down_proj.weight": "model-00001.safetensors",
756
+ "model.layers.8.share_expert.gate_proj.weight": "model-00001.safetensors",
757
+ "model.layers.8.share_expert.up_proj.weight": "model-00001.safetensors",
758
+ "model.layers.9.input_layernorm.weight": "model-00001.safetensors",
759
+ "model.layers.9.moe.down_proj.weight": "model-00009.safetensors",
760
+ "model.layers.9.moe.gate.weight": "model-00001.safetensors",
761
+ "model.layers.9.moe.gate_proj.weight": "model-00008.safetensors",
762
+ "model.layers.9.moe.router_bias": "model-00001.safetensors",
763
+ "model.layers.9.moe.up_proj.weight": "model-00009.safetensors",
764
+ "model.layers.9.post_attention_layernorm.weight": "model-00001.safetensors",
765
+ "model.layers.9.self_attn.g_proj.weight": "model-00001.safetensors",
766
+ "model.layers.9.self_attn.k_norm.weight": "model-00001.safetensors",
767
+ "model.layers.9.self_attn.k_proj.weight": "model-00001.safetensors",
768
+ "model.layers.9.self_attn.o_proj.weight": "model-00001.safetensors",
769
+ "model.layers.9.self_attn.q_norm.weight": "model-00001.safetensors",
770
+ "model.layers.9.self_attn.q_proj.weight": "model-00001.safetensors",
771
+ "model.layers.9.self_attn.v_proj.weight": "model-00001.safetensors",
772
+ "model.layers.9.share_expert.down_proj.weight": "model-00001.safetensors",
773
+ "model.layers.9.share_expert.gate_proj.weight": "model-00001.safetensors",
774
+ "model.layers.9.share_expert.up_proj.weight": "model-00001.safetensors",
775
+ "model.norm.weight": "model-00002.safetensors"
776
+ }
777
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|im_end|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff