D063520 commited on
Commit
6ccd05e
·
1 Parent(s): fcb2d9d

rm old configs

Browse files
chat_template.jinja DELETED
@@ -1,331 +0,0 @@
1
- {#-
2
- In addition to the normal inputs of `messages` and `tools`, this template also accepts the
3
- following kwargs:
4
- - "builtin_tools": A list, can contain "browser" and/or "python".
5
- - "model_identity": A string that optionally describes the model identity.
6
- - "reasoning_effort": A string that describes the reasoning effort, defaults to "medium".
7
- #}
8
-
9
- {#- Tool Definition Rendering ============================================== #}
10
- {%- macro render_typescript_type(param_spec, required_params, is_nullable=false) -%}
11
- {%- if param_spec.type == "array" -%}
12
- {%- if param_spec['items'] -%}
13
- {%- if param_spec['items']['type'] == "string" -%}
14
- {{- "string[]" }}
15
- {%- elif param_spec['items']['type'] == "number" -%}
16
- {{- "number[]" }}
17
- {%- elif param_spec['items']['type'] == "integer" -%}
18
- {{- "number[]" }}
19
- {%- elif param_spec['items']['type'] == "boolean" -%}
20
- {{- "boolean[]" }}
21
- {%- else -%}
22
- {%- set inner_type = render_typescript_type(param_spec['items'], required_params) -%}
23
- {%- if inner_type == "object | object" or inner_type|length > 50 -%}
24
- {{- "any[]" }}
25
- {%- else -%}
26
- {{- inner_type + "[]" }}
27
- {%- endif -%}
28
- {%- endif -%}
29
- {%- if param_spec.nullable -%}
30
- {{- " | null" }}
31
- {%- endif -%}
32
- {%- else -%}
33
- {{- "any[]" }}
34
- {%- if param_spec.nullable -%}
35
- {{- " | null" }}
36
- {%- endif -%}
37
- {%- endif -%}
38
- {%- elif param_spec.type is defined and param_spec.type is iterable and param_spec.type is not string and param_spec.type is not mapping and param_spec.type[0] is defined -%}
39
- {#- Handle array of types like ["object", "object"] from Union[dict, list] #}
40
- {%- if param_spec.type | length > 1 -%}
41
- {{- param_spec.type | join(" | ") }}
42
- {%- else -%}
43
- {{- param_spec.type[0] }}
44
- {%- endif -%}
45
- {%- elif param_spec.oneOf -%}
46
- {#- Handle oneOf schemas - check for complex unions and fallback to any #}
47
- {%- set has_object_variants = false -%}
48
- {%- for variant in param_spec.oneOf -%}
49
- {%- if variant.type == "object" -%}
50
- {%- set has_object_variants = true -%}
51
- {%- endif -%}
52
- {%- endfor -%}
53
- {%- if has_object_variants and param_spec.oneOf|length > 1 -%}
54
- {{- "any" }}
55
- {%- else -%}
56
- {%- for variant in param_spec.oneOf -%}
57
- {{- render_typescript_type(variant, required_params) -}}
58
- {%- if variant.description %}
59
- {{- "// " + variant.description }}
60
- {%- endif -%}
61
- {%- if variant.default is defined %}
62
- {{ "// default: " + variant.default|tojson }}
63
- {%- endif -%}
64
- {%- if not loop.last %}
65
- {{- " | " }}
66
- {% endif -%}
67
- {%- endfor -%}
68
- {%- endif -%}
69
- {%- elif param_spec.type == "string" -%}
70
- {%- if param_spec.enum -%}
71
- {{- '"' + param_spec.enum|join('" | "') + '"' -}}
72
- {%- else -%}
73
- {{- "string" }}
74
- {%- if param_spec.nullable %}
75
- {{- " | null" }}
76
- {%- endif -%}
77
- {%- endif -%}
78
- {%- elif param_spec.type == "number" -%}
79
- {{- "number" }}
80
- {%- elif param_spec.type == "integer" -%}
81
- {{- "number" }}
82
- {%- elif param_spec.type == "boolean" -%}
83
- {{- "boolean" }}
84
-
85
- {%- elif param_spec.type == "object" -%}
86
- {%- if param_spec.properties -%}
87
- {{- "{\n" }}
88
- {%- for prop_name, prop_spec in param_spec.properties.items() -%}
89
- {{- prop_name -}}
90
- {%- if prop_name not in (param_spec.required or []) -%}
91
- {{- "?" }}
92
- {%- endif -%}
93
- {{- ": " }}
94
- {{ render_typescript_type(prop_spec, param_spec.required or []) }}
95
- {%- if not loop.last -%}
96
- {{-", " }}
97
- {%- endif -%}
98
- {%- endfor -%}
99
- {{- "}" }}
100
- {%- else -%}
101
- {{- "object" }}
102
- {%- endif -%}
103
- {%- else -%}
104
- {{- "any" }}
105
- {%- endif -%}
106
- {%- endmacro -%}
107
-
108
- {%- macro render_tool_namespace(namespace_name, tools) -%}
109
- {{- "## " + namespace_name + "\n\n" }}
110
- {{- "namespace " + namespace_name + " {\n\n" }}
111
- {%- for tool in tools %}
112
- {%- set tool = tool.function %}
113
- {{- "// " + tool.description + "\n" }}
114
- {{- "type "+ tool.name + " = " }}
115
- {%- if tool.parameters and tool.parameters.properties %}
116
- {{- "(_: {\n" }}
117
- {%- for param_name, param_spec in tool.parameters.properties.items() %}
118
- {%- if param_spec.description %}
119
- {{- "// " + param_spec.description + "\n" }}
120
- {%- endif %}
121
- {{- param_name }}
122
- {%- if param_name not in (tool.parameters.required or []) -%}
123
- {{- "?" }}
124
- {%- endif -%}
125
- {{- ": " }}
126
- {{- render_typescript_type(param_spec, tool.parameters.required or []) }}
127
- {%- if param_spec.default is defined -%}
128
- {%- if param_spec.enum %}
129
- {{- ", // default: " + param_spec.default }}
130
- {%- elif param_spec.oneOf %}
131
- {{- "// default: " + param_spec.default }}
132
- {%- else %}
133
- {{- ", // default: " + param_spec.default|tojson }}
134
- {%- endif -%}
135
- {%- endif -%}
136
- {%- if not loop.last %}
137
- {{- ",\n" }}
138
- {%- else %}
139
- {{- ",\n" }}
140
- {%- endif -%}
141
- {%- endfor %}
142
- {{- "}) => any;\n\n" }}
143
- {%- else -%}
144
- {{- "() => any;\n\n" }}
145
- {%- endif -%}
146
- {%- endfor %}
147
- {{- "} // namespace " + namespace_name }}
148
- {%- endmacro -%}
149
-
150
- {%- macro render_builtin_tools(browser_tool, python_tool) -%}
151
- {%- if browser_tool %}
152
- {{- "## browser\n\n" }}
153
- {{- "// Tool for browsing.\n" }}
154
- {{- "// The `cursor` appears in brackets before each browsing display: `[{cursor}]`.\n" }}
155
- {{- "// Cite information from the tool using the following format:\n" }}
156
- {{- "// `【{cursor}†L{line_start}(-L{line_end})?】`, for example: `【6†L9-L11】` or `【8†L3】`.\n" }}
157
- {{- "// Do not quote more than 10 words directly from the tool output.\n" }}
158
- {{- "// sources=web (default: web)\n" }}
159
- {{- "namespace browser {\n\n" }}
160
- {{- "// Searches for information related to `query` and displays `topn` results.\n" }}
161
- {{- "type search = (_: {\n" }}
162
- {{- "query: string,\n" }}
163
- {{- "topn?: number, // default: 10\n" }}
164
- {{- "source?: string,\n" }}
165
- {{- "}) => any;\n\n" }}
166
- {{- "// Opens the link `id` from the page indicated by `cursor` starting at line number `loc`, showing `num_lines` lines.\n" }}
167
- {{- "// Valid link ids are displayed with the formatting: `【{id}†.*】`.\n" }}
168
- {{- "// If `cursor` is not provided, the most recent page is implied.\n" }}
169
- {{- "// If `id` is a string, it is treated as a fully qualified URL associated with `source`.\n" }}
170
- {{- "// If `loc` is not provided, the viewport will be positioned at the beginning of the document or centered on the most relevant passage, if available.\n" }}
171
- {{- "// Use this function without `id` to scroll to a new location of an opened page.\n" }}
172
- {{- "type open = (_: {\n" }}
173
- {{- "id?: number | string, // default: -1\n" }}
174
- {{- "cursor?: number, // default: -1\n" }}
175
- {{- "loc?: number, // default: -1\n" }}
176
- {{- "num_lines?: number, // default: -1\n" }}
177
- {{- "view_source?: boolean, // default: false\n" }}
178
- {{- "source?: string,\n" }}
179
- {{- "}) => any;\n\n" }}
180
- {{- "// Finds exact matches of `pattern` in the current page, or the page given by `cursor`.\n" }}
181
- {{- "type find = (_: {\n" }}
182
- {{- "pattern: string,\n" }}
183
- {{- "cursor?: number, // default: -1\n" }}
184
- {{- "}) => any;\n\n" }}
185
- {{- "} // namespace browser\n\n" }}
186
- {%- endif -%}
187
-
188
- {%- if python_tool %}
189
- {{- "## python\n\n" }}
190
- {{- "Use this tool to execute Python code in your chain of thought. The code will not be shown to the user. This tool should be used for internal reasoning, but not for code that is intended to be visible to the user (e.g. when creating plots, tables, or files).\n\n" }}
191
- {{- "When you send a message containing Python code to python, it will be executed in a stateful Jupyter notebook environment. python will respond with the output of the execution or time out after 120.0 seconds. The drive at '/mnt/data' can be used to save and persist user files. Internet access for this session is UNKNOWN. Depends on the cluster.\n\n" }}
192
- {%- endif -%}
193
- {%- endmacro -%}
194
-
195
- {#- System Message Construction ============================================ #}
196
- {%- macro build_system_message() -%}
197
- {%- if model_identity is not defined %}
198
- {%- set model_identity = "You are ChatGPT, a large language model trained by OpenAI." %}
199
- {%- endif %}
200
- {{- model_identity + "\n" }}
201
- {{- "Knowledge cutoff: 2024-06\n" }}
202
- {{- "Current date: " + strftime_now("%Y-%m-%d") + "\n\n" }}
203
- {%- if reasoning_effort is not defined %}
204
- {%- set reasoning_effort = "medium" %}
205
- {%- endif %}
206
- {{- "Reasoning: " + reasoning_effort + "\n\n" }}
207
- {%- if builtin_tools %}
208
- {{- "# Tools\n\n" }}
209
- {%- set available_builtin_tools = namespace(browser=false, python=false) %}
210
- {%- for tool in builtin_tools %}
211
- {%- if tool == "browser" %}
212
- {%- set available_builtin_tools.browser = true %}
213
- {%- elif tool == "python" %}
214
- {%- set available_builtin_tools.python = true %}
215
- {%- endif %}
216
- {%- endfor %}
217
- {{- render_builtin_tools(available_builtin_tools.browser, available_builtin_tools.python) }}
218
- {%- endif -%}
219
- {{- "# Valid channels: analysis, commentary, final. Channel must be included for every message." }}
220
- {%- if tools -%}
221
- {{- "\nCalls to these tools must go to the commentary channel: 'functions'." }}
222
- {%- endif -%}
223
- {%- endmacro -%}
224
-
225
- {#- Main Template Logic ================================================= #}
226
- {#- Set defaults #}
227
-
228
- {#- Render system message #}
229
- {{- "<|start|>system<|message|>" }}
230
- {{- build_system_message() }}
231
- {{- "<|end|>" }}
232
-
233
- {#- Extract developer message #}
234
- {%- if messages[0].role == "developer" or messages[0].role == "system" %}
235
- {%- set developer_message = messages[0].content %}
236
- {%- set loop_messages = messages[1:] %}
237
- {%- else %}
238
- {%- set developer_message = "" %}
239
- {%- set loop_messages = messages %}
240
- {%- endif %}
241
-
242
- {#- Render developer message #}
243
- {%- if developer_message or tools %}
244
- {{- "<|start|>developer<|message|>" }}
245
- {%- if developer_message %}
246
- {{- "# Instructions\n\n" }}
247
- {{- developer_message }}
248
- {{- "\n\n" }}
249
- {%- endif %}
250
- {%- if tools -%}
251
- {{- "# Tools\n\n" }}
252
- {{- render_tool_namespace("functions", tools) }}
253
- {%- endif -%}
254
- {{- "<|end|>" }}
255
- {%- endif %}
256
-
257
- {#- Render messages #}
258
- {%- set last_tool_call = namespace(name=none) %}
259
- {%- for message in loop_messages -%}
260
- {#- At this point only assistant/user/tool messages should remain #}
261
- {%- if message.role == 'assistant' -%}
262
- {#- Checks to ensure the messages are being passed in the format we expect #}
263
- {%- if "content" in message %}
264
- {%- if "<|channel|>analysis<|message|>" in message.content or "<|channel|>final<|message|>" in message.content %}
265
- {{- raise_exception("You have passed a message containing <|channel|> tags in the content field. Instead of doing this, you should pass analysis messages (the string between '<|message|>' and '<|end|>') in the 'thinking' field, and final messages (the string between '<|message|>' and '<|end|>') in the 'content' field.") }}
266
- {%- endif %}
267
- {%- endif %}
268
- {%- if "thinking" in message %}
269
- {%- if "<|channel|>analysis<|message|>" in message.thinking or "<|channel|>final<|message|>" in message.thinking %}
270
- {{- raise_exception("You have passed a message containing <|channel|> tags in the thinking field. Instead of doing this, you should pass analysis messages (the string between '<|message|>' and '<|end|>') in the 'thinking' field, and final messages (the string between '<|message|>' and '<|end|>') in the 'content' field.") }}
271
- {%- endif %}
272
- {%- endif %}
273
- {%- if "tool_calls" in message %}
274
- {#- We need very careful handling here - we want to drop the tool call analysis message if the model #}
275
- {#- has output a later <|final|> message, but otherwise we want to retain it. This is the only case #}
276
- {#- when we render CoT/analysis messages in inference. #}
277
- {%- set future_final_message = namespace(found=false) %}
278
- {%- for future_message in loop_messages[loop.index:] %}
279
- {%- if future_message.role == 'assistant' and "tool_calls" not in future_message %}
280
- {%- set future_final_message.found = true %}
281
- {%- endif %}
282
- {%- endfor %}
283
- {#- We assume max 1 tool call per message, and so we infer the tool call name #}
284
- {#- in "tool" messages from the most recent assistant tool call name #}
285
- {%- set tool_call = message.tool_calls[0] %}
286
- {%- if tool_call.function %}
287
- {%- set tool_call = tool_call.function %}
288
- {%- endif %}
289
- {%- if message.content and message.thinking %}
290
- {{- raise_exception("Cannot pass both content and thinking in an assistant message with tool calls! Put the analysis message in one or the other, but not both.") }}
291
- {%- elif message.content and not future_final_message.found %}
292
- {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.content + "<|end|>" }}
293
- {%- elif message.thinking and not future_final_message.found %}
294
- {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
295
- {%- endif %}
296
- {{- "<|start|>assistant to=" }}
297
- {{- "functions." + tool_call.name + "<|channel|>commentary " }}
298
- {{- (tool_call.content_type if tool_call.content_type is defined else "json") + "<|message|>" }}
299
- {{- tool_call.arguments|tojson }}
300
- {{- "<|call|>" }}
301
- {%- set last_tool_call.name = tool_call.name %}
302
- {%- elif loop.last and not add_generation_prompt %}
303
- {#- Only render the CoT if the final turn is an assistant turn and add_generation_prompt is false #}
304
- {#- This is a situation that should only occur in training, never in inference. #}
305
- {%- if "thinking" in message %}
306
- {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
307
- {%- endif %}
308
- {#- <|return|> indicates the end of generation, but <|end|> does not #}
309
- {#- <|return|> should never be an input to the model, but we include it as the final token #}
310
- {#- when training, so the model learns to emit it. #}
311
- {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|return|>" }}
312
- {%- else %}
313
- {#- CoT is dropped during all previous turns, so we never render it for inference #}
314
- {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|end|>" }}
315
- {%- set last_tool_call.name = none %}
316
- {%- endif %}
317
- {%- elif message.role == 'tool' -%}
318
- {%- if last_tool_call.name is none %}
319
- {{- raise_exception("Message has tool role, but there was no previous assistant message with a tool call!") }}
320
- {%- endif %}
321
- {{- "<|start|>functions." + last_tool_call.name }}
322
- {{- " to=assistant<|channel|>commentary<|message|>" + message.content|tojson + "<|end|>" }}
323
- {%- elif message.role == 'user' -%}
324
- {{- "<|start|>user<|message|>" + message.content + "<|end|>" }}
325
- {%- endif -%}
326
- {%- endfor -%}
327
-
328
- {#- Generation prompt #}
329
- {%- if add_generation_prompt -%}
330
- <|start|>assistant
331
- {%- endif -%}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
config.json DELETED
@@ -1 +0,0 @@
1
- {"num_hidden_layers": 36, "num_experts": 128, "experts_per_token": 4, "vocab_size": 201088, "hidden_size": 2880, "intermediate_size": 2880, "swiglu_limit": 7.0, "head_dim": 64, "num_attention_heads": 64, "num_key_value_heads": 8, "sliding_window": 128, "initial_context_length": 4096, "rope_theta": 150000, "rope_scaling_factor": 32.0, "rope_ntk_alpha": 1, "rope_ntk_beta": 32}
 
 
dtypes.json DELETED
@@ -1 +0,0 @@
1
- {"embedding.weight": "BF16", "block.0.attn.norm.scale": "BF16", "block.0.attn.qkv.weight": "BF16", "block.0.attn.qkv.bias": "BF16", "block.0.attn.sinks": "BF16", "block.0.attn.out.weight": "BF16", "block.0.attn.out.bias": "BF16", "block.0.mlp.norm.scale": "BF16", "block.0.mlp.gate.weight": "BF16", "block.0.mlp.gate.bias": "BF16", "block.0.mlp.mlp1_weight.blocks": "FP4", "block.0.mlp.mlp1_weight.scales": "UE8", "block.0.mlp.mlp1_bias": "BF16", "block.0.mlp.mlp2_weight.blocks": "FP4", "block.0.mlp.mlp2_weight.scales": "UE8", "block.0.mlp.mlp2_bias": "BF16", "block.1.attn.norm.scale": "BF16", "block.1.attn.qkv.weight": "BF16", "block.1.attn.qkv.bias": "BF16", "block.1.attn.sinks": "BF16", "block.1.attn.out.weight": "BF16", "block.1.attn.out.bias": "BF16", "block.1.mlp.norm.scale": "BF16", "block.1.mlp.gate.weight": "BF16", "block.1.mlp.gate.bias": "BF16", "block.1.mlp.mlp1_weight.blocks": "FP4", "block.1.mlp.mlp1_weight.scales": "UE8", "block.1.mlp.mlp1_bias": "BF16", "block.1.mlp.mlp2_weight.blocks": "FP4", "block.1.mlp.mlp2_weight.scales": "UE8", "block.1.mlp.mlp2_bias": "BF16", "block.2.attn.norm.scale": "BF16", "block.2.attn.qkv.weight": "BF16", "block.2.attn.qkv.bias": "BF16", "block.2.attn.sinks": "BF16", "block.2.attn.out.weight": "BF16", "block.2.attn.out.bias": "BF16", "block.2.mlp.norm.scale": "BF16", "block.2.mlp.gate.weight": "BF16", "block.2.mlp.gate.bias": "BF16", "block.2.mlp.mlp1_weight.blocks": "FP4", "block.2.mlp.mlp1_weight.scales": "UE8", "block.2.mlp.mlp1_bias": "BF16", "block.2.mlp.mlp2_weight.blocks": "FP4", "block.2.mlp.mlp2_weight.scales": "UE8", "block.2.mlp.mlp2_bias": "BF16", "block.3.attn.norm.scale": "BF16", "block.3.attn.qkv.weight": "BF16", "block.3.attn.qkv.bias": "BF16", "block.3.attn.sinks": "BF16", "block.3.attn.out.weight": "BF16", "block.3.attn.out.bias": "BF16", "block.3.mlp.norm.scale": "BF16", "block.3.mlp.gate.weight": "BF16", "block.3.mlp.gate.bias": "BF16", "block.3.mlp.mlp1_weight.blocks": "FP4", "block.3.mlp.mlp1_weight.scales": "UE8", "block.3.mlp.mlp1_bias": "BF16", "block.3.mlp.mlp2_weight.blocks": "FP4", "block.3.mlp.mlp2_weight.scales": "UE8", "block.3.mlp.mlp2_bias": "BF16", "block.4.attn.norm.scale": "BF16", "block.4.attn.qkv.weight": "BF16", "block.4.attn.qkv.bias": "BF16", "block.4.attn.sinks": "BF16", "block.4.attn.out.weight": "BF16", "block.4.attn.out.bias": "BF16", "block.4.mlp.norm.scale": "BF16", "block.4.mlp.gate.weight": "BF16", "block.4.mlp.gate.bias": "BF16", "block.4.mlp.mlp1_weight.blocks": "FP4", "block.4.mlp.mlp1_weight.scales": "UE8", "block.4.mlp.mlp1_bias": "BF16", "block.4.mlp.mlp2_weight.blocks": "FP4", "block.4.mlp.mlp2_weight.scales": "UE8", "block.4.mlp.mlp2_bias": "BF16", "block.5.attn.norm.scale": "BF16", "block.5.attn.qkv.weight": "BF16", "block.5.attn.qkv.bias": "BF16", "block.5.attn.sinks": "BF16", "block.5.attn.out.weight": "BF16", "block.5.attn.out.bias": "BF16", "block.5.mlp.norm.scale": "BF16", "block.5.mlp.gate.weight": "BF16", "block.5.mlp.gate.bias": "BF16", "block.5.mlp.mlp1_weight.blocks": "FP4", "block.5.mlp.mlp1_weight.scales": "UE8", "block.5.mlp.mlp1_bias": "BF16", "block.5.mlp.mlp2_weight.blocks": "FP4", "block.5.mlp.mlp2_weight.scales": "UE8", "block.5.mlp.mlp2_bias": "BF16", "block.6.attn.norm.scale": "BF16", "block.6.attn.qkv.weight": "BF16", "block.6.attn.qkv.bias": "BF16", "block.6.attn.sinks": "BF16", "block.6.attn.out.weight": "BF16", "block.6.attn.out.bias": "BF16", "block.6.mlp.norm.scale": "BF16", "block.6.mlp.gate.weight": "BF16", "block.6.mlp.gate.bias": "BF16", "block.6.mlp.mlp1_weight.blocks": "FP4", "block.6.mlp.mlp1_weight.scales": "UE8", "block.6.mlp.mlp1_bias": "BF16", "block.6.mlp.mlp2_weight.blocks": "FP4", "block.6.mlp.mlp2_weight.scales": "UE8", "block.6.mlp.mlp2_bias": "BF16", "block.7.attn.norm.scale": "BF16", "block.7.attn.qkv.weight": "BF16", "block.7.attn.qkv.bias": "BF16", "block.7.attn.sinks": "BF16", "block.7.attn.out.weight": "BF16", "block.7.attn.out.bias": "BF16", "block.7.mlp.norm.scale": "BF16", "block.7.mlp.gate.weight": "BF16", "block.7.mlp.gate.bias": "BF16", "block.7.mlp.mlp1_weight.blocks": "FP4", "block.7.mlp.mlp1_weight.scales": "UE8", "block.7.mlp.mlp1_bias": "BF16", "block.7.mlp.mlp2_weight.blocks": "FP4", "block.7.mlp.mlp2_weight.scales": "UE8", "block.7.mlp.mlp2_bias": "BF16", "block.8.attn.norm.scale": "BF16", "block.8.attn.qkv.weight": "BF16", "block.8.attn.qkv.bias": "BF16", "block.8.attn.sinks": "BF16", "block.8.attn.out.weight": "BF16", "block.8.attn.out.bias": "BF16", "block.8.mlp.norm.scale": "BF16", "block.8.mlp.gate.weight": "BF16", "block.8.mlp.gate.bias": "BF16", "block.8.mlp.mlp1_weight.blocks": "FP4", "block.8.mlp.mlp1_weight.scales": "UE8", "block.8.mlp.mlp1_bias": "BF16", "block.8.mlp.mlp2_weight.blocks": "FP4", "block.8.mlp.mlp2_weight.scales": "UE8", "block.8.mlp.mlp2_bias": "BF16", "block.9.attn.norm.scale": "BF16", "block.9.attn.qkv.weight": "BF16", "block.9.attn.qkv.bias": "BF16", "block.9.attn.sinks": "BF16", "block.9.attn.out.weight": "BF16", "block.9.attn.out.bias": "BF16", "block.9.mlp.norm.scale": "BF16", "block.9.mlp.gate.weight": "BF16", "block.9.mlp.gate.bias": "BF16", "block.9.mlp.mlp1_weight.blocks": "FP4", "block.9.mlp.mlp1_weight.scales": "UE8", "block.9.mlp.mlp1_bias": "BF16", "block.9.mlp.mlp2_weight.blocks": "FP4", "block.9.mlp.mlp2_weight.scales": "UE8", "block.9.mlp.mlp2_bias": "BF16", "block.10.attn.norm.scale": "BF16", "block.10.attn.qkv.weight": "BF16", "block.10.attn.qkv.bias": "BF16", "block.10.attn.sinks": "BF16", "block.10.attn.out.weight": "BF16", "block.10.attn.out.bias": "BF16", "block.10.mlp.norm.scale": "BF16", "block.10.mlp.gate.weight": "BF16", "block.10.mlp.gate.bias": "BF16", "block.10.mlp.mlp1_weight.blocks": "FP4", "block.10.mlp.mlp1_weight.scales": "UE8", "block.10.mlp.mlp1_bias": "BF16", "block.10.mlp.mlp2_weight.blocks": "FP4", "block.10.mlp.mlp2_weight.scales": "UE8", "block.10.mlp.mlp2_bias": "BF16", "block.11.attn.norm.scale": "BF16", "block.11.attn.qkv.weight": "BF16", "block.11.attn.qkv.bias": "BF16", "block.11.attn.sinks": "BF16", "block.11.attn.out.weight": "BF16", "block.11.attn.out.bias": "BF16", "block.11.mlp.norm.scale": "BF16", "block.11.mlp.gate.weight": "BF16", "block.11.mlp.gate.bias": "BF16", "block.11.mlp.mlp1_weight.blocks": "FP4", "block.11.mlp.mlp1_weight.scales": "UE8", "block.11.mlp.mlp1_bias": "BF16", "block.11.mlp.mlp2_weight.blocks": "FP4", "block.11.mlp.mlp2_weight.scales": "UE8", "block.11.mlp.mlp2_bias": "BF16", "block.12.attn.norm.scale": "BF16", "block.12.attn.qkv.weight": "BF16", "block.12.attn.qkv.bias": "BF16", "block.12.attn.sinks": "BF16", "block.12.attn.out.weight": "BF16", "block.12.attn.out.bias": "BF16", "block.12.mlp.norm.scale": "BF16", "block.12.mlp.gate.weight": "BF16", "block.12.mlp.gate.bias": "BF16", "block.12.mlp.mlp1_weight.blocks": "FP4", "block.12.mlp.mlp1_weight.scales": "UE8", "block.12.mlp.mlp1_bias": "BF16", "block.12.mlp.mlp2_weight.blocks": "FP4", "block.12.mlp.mlp2_weight.scales": "UE8", "block.12.mlp.mlp2_bias": "BF16", "block.13.attn.norm.scale": "BF16", "block.13.attn.qkv.weight": "BF16", "block.13.attn.qkv.bias": "BF16", "block.13.attn.sinks": "BF16", "block.13.attn.out.weight": "BF16", "block.13.attn.out.bias": "BF16", "block.13.mlp.norm.scale": "BF16", "block.13.mlp.gate.weight": "BF16", "block.13.mlp.gate.bias": "BF16", "block.13.mlp.mlp1_weight.blocks": "FP4", "block.13.mlp.mlp1_weight.scales": "UE8", "block.13.mlp.mlp1_bias": "BF16", "block.13.mlp.mlp2_weight.blocks": "FP4", "block.13.mlp.mlp2_weight.scales": "UE8", "block.13.mlp.mlp2_bias": "BF16", "block.14.attn.norm.scale": "BF16", "block.14.attn.qkv.weight": "BF16", "block.14.attn.qkv.bias": "BF16", "block.14.attn.sinks": "BF16", "block.14.attn.out.weight": "BF16", "block.14.attn.out.bias": "BF16", "block.14.mlp.norm.scale": "BF16", "block.14.mlp.gate.weight": "BF16", "block.14.mlp.gate.bias": "BF16", "block.14.mlp.mlp1_weight.blocks": "FP4", "block.14.mlp.mlp1_weight.scales": "UE8", "block.14.mlp.mlp1_bias": "BF16", "block.14.mlp.mlp2_weight.blocks": "FP4", "block.14.mlp.mlp2_weight.scales": "UE8", "block.14.mlp.mlp2_bias": "BF16", "block.15.attn.norm.scale": "BF16", "block.15.attn.qkv.weight": "BF16", "block.15.attn.qkv.bias": "BF16", "block.15.attn.sinks": "BF16", "block.15.attn.out.weight": "BF16", "block.15.attn.out.bias": "BF16", "block.15.mlp.norm.scale": "BF16", "block.15.mlp.gate.weight": "BF16", "block.15.mlp.gate.bias": "BF16", "block.15.mlp.mlp1_weight.blocks": "FP4", "block.15.mlp.mlp1_weight.scales": "UE8", "block.15.mlp.mlp1_bias": "BF16", "block.15.mlp.mlp2_weight.blocks": "FP4", "block.15.mlp.mlp2_weight.scales": "UE8", "block.15.mlp.mlp2_bias": "BF16", "block.16.attn.norm.scale": "BF16", "block.16.attn.qkv.weight": "BF16", "block.16.attn.qkv.bias": "BF16", "block.16.attn.sinks": "BF16", "block.16.attn.out.weight": "BF16", "block.16.attn.out.bias": "BF16", "block.16.mlp.norm.scale": "BF16", "block.16.mlp.gate.weight": "BF16", "block.16.mlp.gate.bias": "BF16", "block.16.mlp.mlp1_weight.blocks": "FP4", "block.16.mlp.mlp1_weight.scales": "UE8", "block.16.mlp.mlp1_bias": "BF16", "block.16.mlp.mlp2_weight.blocks": "FP4", "block.16.mlp.mlp2_weight.scales": "UE8", "block.16.mlp.mlp2_bias": "BF16", "block.17.attn.norm.scale": "BF16", "block.17.attn.qkv.weight": "BF16", "block.17.attn.qkv.bias": "BF16", "block.17.attn.sinks": "BF16", "block.17.attn.out.weight": "BF16", "block.17.attn.out.bias": "BF16", "block.17.mlp.norm.scale": "BF16", "block.17.mlp.gate.weight": "BF16", "block.17.mlp.gate.bias": "BF16", "block.17.mlp.mlp1_weight.blocks": "FP4", "block.17.mlp.mlp1_weight.scales": "UE8", "block.17.mlp.mlp1_bias": "BF16", "block.17.mlp.mlp2_weight.blocks": "FP4", "block.17.mlp.mlp2_weight.scales": "UE8", "block.17.mlp.mlp2_bias": "BF16", "block.18.attn.norm.scale": "BF16", "block.18.attn.qkv.weight": "BF16", "block.18.attn.qkv.bias": "BF16", "block.18.attn.sinks": "BF16", "block.18.attn.out.weight": "BF16", "block.18.attn.out.bias": "BF16", "block.18.mlp.norm.scale": "BF16", "block.18.mlp.gate.weight": "BF16", "block.18.mlp.gate.bias": "BF16", "block.18.mlp.mlp1_weight.blocks": "FP4", "block.18.mlp.mlp1_weight.scales": "UE8", "block.18.mlp.mlp1_bias": "BF16", "block.18.mlp.mlp2_weight.blocks": "FP4", "block.18.mlp.mlp2_weight.scales": "UE8", "block.18.mlp.mlp2_bias": "BF16", "block.19.attn.norm.scale": "BF16", "block.19.attn.qkv.weight": "BF16", "block.19.attn.qkv.bias": "BF16", "block.19.attn.sinks": "BF16", "block.19.attn.out.weight": "BF16", "block.19.attn.out.bias": "BF16", "block.19.mlp.norm.scale": "BF16", "block.19.mlp.gate.weight": "BF16", "block.19.mlp.gate.bias": "BF16", "block.19.mlp.mlp1_weight.blocks": "FP4", "block.19.mlp.mlp1_weight.scales": "UE8", "block.19.mlp.mlp1_bias": "BF16", "block.19.mlp.mlp2_weight.blocks": "FP4", "block.19.mlp.mlp2_weight.scales": "UE8", "block.19.mlp.mlp2_bias": "BF16", "block.20.attn.norm.scale": "BF16", "block.20.attn.qkv.weight": "BF16", "block.20.attn.qkv.bias": "BF16", "block.20.attn.sinks": "BF16", "block.20.attn.out.weight": "BF16", "block.20.attn.out.bias": "BF16", "block.20.mlp.norm.scale": "BF16", "block.20.mlp.gate.weight": "BF16", "block.20.mlp.gate.bias": "BF16", "block.20.mlp.mlp1_weight.blocks": "FP4", "block.20.mlp.mlp1_weight.scales": "UE8", "block.20.mlp.mlp1_bias": "BF16", "block.20.mlp.mlp2_weight.blocks": "FP4", "block.20.mlp.mlp2_weight.scales": "UE8", "block.20.mlp.mlp2_bias": "BF16", "block.21.attn.norm.scale": "BF16", "block.21.attn.qkv.weight": "BF16", "block.21.attn.qkv.bias": "BF16", "block.21.attn.sinks": "BF16", "block.21.attn.out.weight": "BF16", "block.21.attn.out.bias": "BF16", "block.21.mlp.norm.scale": "BF16", "block.21.mlp.gate.weight": "BF16", "block.21.mlp.gate.bias": "BF16", "block.21.mlp.mlp1_weight.blocks": "FP4", "block.21.mlp.mlp1_weight.scales": "UE8", "block.21.mlp.mlp1_bias": "BF16", "block.21.mlp.mlp2_weight.blocks": "FP4", "block.21.mlp.mlp2_weight.scales": "UE8", "block.21.mlp.mlp2_bias": "BF16", "block.22.attn.norm.scale": "BF16", "block.22.attn.qkv.weight": "BF16", "block.22.attn.qkv.bias": "BF16", "block.22.attn.sinks": "BF16", "block.22.attn.out.weight": "BF16", "block.22.attn.out.bias": "BF16", "block.22.mlp.norm.scale": "BF16", "block.22.mlp.gate.weight": "BF16", "block.22.mlp.gate.bias": "BF16", "block.22.mlp.mlp1_weight.blocks": "FP4", "block.22.mlp.mlp1_weight.scales": "UE8", "block.22.mlp.mlp1_bias": "BF16", "block.22.mlp.mlp2_weight.blocks": "FP4", "block.22.mlp.mlp2_weight.scales": "UE8", "block.22.mlp.mlp2_bias": "BF16", "block.23.attn.norm.scale": "BF16", "block.23.attn.qkv.weight": "BF16", "block.23.attn.qkv.bias": "BF16", "block.23.attn.sinks": "BF16", "block.23.attn.out.weight": "BF16", "block.23.attn.out.bias": "BF16", "block.23.mlp.norm.scale": "BF16", "block.23.mlp.gate.weight": "BF16", "block.23.mlp.gate.bias": "BF16", "block.23.mlp.mlp1_weight.blocks": "FP4", "block.23.mlp.mlp1_weight.scales": "UE8", "block.23.mlp.mlp1_bias": "BF16", "block.23.mlp.mlp2_weight.blocks": "FP4", "block.23.mlp.mlp2_weight.scales": "UE8", "block.23.mlp.mlp2_bias": "BF16", "block.24.attn.norm.scale": "BF16", "block.24.attn.qkv.weight": "BF16", "block.24.attn.qkv.bias": "BF16", "block.24.attn.sinks": "BF16", "block.24.attn.out.weight": "BF16", "block.24.attn.out.bias": "BF16", "block.24.mlp.norm.scale": "BF16", "block.24.mlp.gate.weight": "BF16", "block.24.mlp.gate.bias": "BF16", "block.24.mlp.mlp1_weight.blocks": "FP4", "block.24.mlp.mlp1_weight.scales": "UE8", "block.24.mlp.mlp1_bias": "BF16", "block.24.mlp.mlp2_weight.blocks": "FP4", "block.24.mlp.mlp2_weight.scales": "UE8", "block.24.mlp.mlp2_bias": "BF16", "block.25.attn.norm.scale": "BF16", "block.25.attn.qkv.weight": "BF16", "block.25.attn.qkv.bias": "BF16", "block.25.attn.sinks": "BF16", "block.25.attn.out.weight": "BF16", "block.25.attn.out.bias": "BF16", "block.25.mlp.norm.scale": "BF16", "block.25.mlp.gate.weight": "BF16", "block.25.mlp.gate.bias": "BF16", "block.25.mlp.mlp1_weight.blocks": "FP4", "block.25.mlp.mlp1_weight.scales": "UE8", "block.25.mlp.mlp1_bias": "BF16", "block.25.mlp.mlp2_weight.blocks": "FP4", "block.25.mlp.mlp2_weight.scales": "UE8", "block.25.mlp.mlp2_bias": "BF16", "block.26.attn.norm.scale": "BF16", "block.26.attn.qkv.weight": "BF16", "block.26.attn.qkv.bias": "BF16", "block.26.attn.sinks": "BF16", "block.26.attn.out.weight": "BF16", "block.26.attn.out.bias": "BF16", "block.26.mlp.norm.scale": "BF16", "block.26.mlp.gate.weight": "BF16", "block.26.mlp.gate.bias": "BF16", "block.26.mlp.mlp1_weight.blocks": "FP4", "block.26.mlp.mlp1_weight.scales": "UE8", "block.26.mlp.mlp1_bias": "BF16", "block.26.mlp.mlp2_weight.blocks": "FP4", "block.26.mlp.mlp2_weight.scales": "UE8", "block.26.mlp.mlp2_bias": "BF16", "block.27.attn.norm.scale": "BF16", "block.27.attn.qkv.weight": "BF16", "block.27.attn.qkv.bias": "BF16", "block.27.attn.sinks": "BF16", "block.27.attn.out.weight": "BF16", "block.27.attn.out.bias": "BF16", "block.27.mlp.norm.scale": "BF16", "block.27.mlp.gate.weight": "BF16", "block.27.mlp.gate.bias": "BF16", "block.27.mlp.mlp1_weight.blocks": "FP4", "block.27.mlp.mlp1_weight.scales": "UE8", "block.27.mlp.mlp1_bias": "BF16", "block.27.mlp.mlp2_weight.blocks": "FP4", "block.27.mlp.mlp2_weight.scales": "UE8", "block.27.mlp.mlp2_bias": "BF16", "block.28.attn.norm.scale": "BF16", "block.28.attn.qkv.weight": "BF16", "block.28.attn.qkv.bias": "BF16", "block.28.attn.sinks": "BF16", "block.28.attn.out.weight": "BF16", "block.28.attn.out.bias": "BF16", "block.28.mlp.norm.scale": "BF16", "block.28.mlp.gate.weight": "BF16", "block.28.mlp.gate.bias": "BF16", "block.28.mlp.mlp1_weight.blocks": "FP4", "block.28.mlp.mlp1_weight.scales": "UE8", "block.28.mlp.mlp1_bias": "BF16", "block.28.mlp.mlp2_weight.blocks": "FP4", "block.28.mlp.mlp2_weight.scales": "UE8", "block.28.mlp.mlp2_bias": "BF16", "block.29.attn.norm.scale": "BF16", "block.29.attn.qkv.weight": "BF16", "block.29.attn.qkv.bias": "BF16", "block.29.attn.sinks": "BF16", "block.29.attn.out.weight": "BF16", "block.29.attn.out.bias": "BF16", "block.29.mlp.norm.scale": "BF16", "block.29.mlp.gate.weight": "BF16", "block.29.mlp.gate.bias": "BF16", "block.29.mlp.mlp1_weight.blocks": "FP4", "block.29.mlp.mlp1_weight.scales": "UE8", "block.29.mlp.mlp1_bias": "BF16", "block.29.mlp.mlp2_weight.blocks": "FP4", "block.29.mlp.mlp2_weight.scales": "UE8", "block.29.mlp.mlp2_bias": "BF16", "block.30.attn.norm.scale": "BF16", "block.30.attn.qkv.weight": "BF16", "block.30.attn.qkv.bias": "BF16", "block.30.attn.sinks": "BF16", "block.30.attn.out.weight": "BF16", "block.30.attn.out.bias": "BF16", "block.30.mlp.norm.scale": "BF16", "block.30.mlp.gate.weight": "BF16", "block.30.mlp.gate.bias": "BF16", "block.30.mlp.mlp1_weight.blocks": "FP4", "block.30.mlp.mlp1_weight.scales": "UE8", "block.30.mlp.mlp1_bias": "BF16", "block.30.mlp.mlp2_weight.blocks": "FP4", "block.30.mlp.mlp2_weight.scales": "UE8", "block.30.mlp.mlp2_bias": "BF16", "block.31.attn.norm.scale": "BF16", "block.31.attn.qkv.weight": "BF16", "block.31.attn.qkv.bias": "BF16", "block.31.attn.sinks": "BF16", "block.31.attn.out.weight": "BF16", "block.31.attn.out.bias": "BF16", "block.31.mlp.norm.scale": "BF16", "block.31.mlp.gate.weight": "BF16", "block.31.mlp.gate.bias": "BF16", "block.31.mlp.mlp1_weight.blocks": "FP4", "block.31.mlp.mlp1_weight.scales": "UE8", "block.31.mlp.mlp1_bias": "BF16", "block.31.mlp.mlp2_weight.blocks": "FP4", "block.31.mlp.mlp2_weight.scales": "UE8", "block.31.mlp.mlp2_bias": "BF16", "block.32.attn.norm.scale": "BF16", "block.32.attn.qkv.weight": "BF16", "block.32.attn.qkv.bias": "BF16", "block.32.attn.sinks": "BF16", "block.32.attn.out.weight": "BF16", "block.32.attn.out.bias": "BF16", "block.32.mlp.norm.scale": "BF16", "block.32.mlp.gate.weight": "BF16", "block.32.mlp.gate.bias": "BF16", "block.32.mlp.mlp1_weight.blocks": "FP4", "block.32.mlp.mlp1_weight.scales": "UE8", "block.32.mlp.mlp1_bias": "BF16", "block.32.mlp.mlp2_weight.blocks": "FP4", "block.32.mlp.mlp2_weight.scales": "UE8", "block.32.mlp.mlp2_bias": "BF16", "block.33.attn.norm.scale": "BF16", "block.33.attn.qkv.weight": "BF16", "block.33.attn.qkv.bias": "BF16", "block.33.attn.sinks": "BF16", "block.33.attn.out.weight": "BF16", "block.33.attn.out.bias": "BF16", "block.33.mlp.norm.scale": "BF16", "block.33.mlp.gate.weight": "BF16", "block.33.mlp.gate.bias": "BF16", "block.33.mlp.mlp1_weight.blocks": "FP4", "block.33.mlp.mlp1_weight.scales": "UE8", "block.33.mlp.mlp1_bias": "BF16", "block.33.mlp.mlp2_weight.blocks": "FP4", "block.33.mlp.mlp2_weight.scales": "UE8", "block.33.mlp.mlp2_bias": "BF16", "block.34.attn.norm.scale": "BF16", "block.34.attn.qkv.weight": "BF16", "block.34.attn.qkv.bias": "BF16", "block.34.attn.sinks": "BF16", "block.34.attn.out.weight": "BF16", "block.34.attn.out.bias": "BF16", "block.34.mlp.norm.scale": "BF16", "block.34.mlp.gate.weight": "BF16", "block.34.mlp.gate.bias": "BF16", "block.34.mlp.mlp1_weight.blocks": "FP4", "block.34.mlp.mlp1_weight.scales": "UE8", "block.34.mlp.mlp1_bias": "BF16", "block.34.mlp.mlp2_weight.blocks": "FP4", "block.34.mlp.mlp2_weight.scales": "UE8", "block.34.mlp.mlp2_bias": "BF16", "block.35.attn.norm.scale": "BF16", "block.35.attn.qkv.weight": "BF16", "block.35.attn.qkv.bias": "BF16", "block.35.attn.sinks": "BF16", "block.35.attn.out.weight": "BF16", "block.35.attn.out.bias": "BF16", "block.35.mlp.norm.scale": "BF16", "block.35.mlp.gate.weight": "BF16", "block.35.mlp.gate.bias": "BF16", "block.35.mlp.mlp1_weight.blocks": "FP4", "block.35.mlp.mlp1_weight.scales": "UE8", "block.35.mlp.mlp1_bias": "BF16", "block.35.mlp.mlp2_weight.blocks": "FP4", "block.35.mlp.mlp2_weight.scales": "UE8", "block.35.mlp.mlp2_bias": "BF16", "norm.scale": "BF16", "unembedding.weight": "BF16"}
 
 
generation_config.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "bos_token_id": 199998,
3
- "do_sample": true,
4
- "eos_token_id": [
5
- 200002,
6
- 199999,
7
- 200012
8
- ],
9
- "pad_token_id": 199999,
10
- "transformers_version": "4.55.0.dev0"
11
- }
 
 
 
 
 
 
 
 
 
 
 
 
model.safetensors.index.json DELETED
@@ -1,550 +0,0 @@
1
- {
2
- "metadata": {
3
- "total_size": 65248815744
4
- },
5
- "weight_map": {
6
- "block.0.attn.norm.scale": "model--00001-of-00007.safetensors",
7
- "block.0.attn.out.bias": "model--00001-of-00007.safetensors",
8
- "block.0.attn.out.weight": "model--00001-of-00007.safetensors",
9
- "block.0.attn.qkv.bias": "model--00001-of-00007.safetensors",
10
- "block.0.attn.qkv.weight": "model--00001-of-00007.safetensors",
11
- "block.0.attn.sinks": "model--00001-of-00007.safetensors",
12
- "block.0.mlp.gate.bias": "model--00001-of-00007.safetensors",
13
- "block.0.mlp.gate.weight": "model--00001-of-00007.safetensors",
14
- "block.0.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
15
- "block.0.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
16
- "block.0.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
17
- "block.0.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
18
- "block.0.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
19
- "block.0.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
20
- "block.0.mlp.norm.scale": "model--00001-of-00007.safetensors",
21
- "block.1.attn.norm.scale": "model--00001-of-00007.safetensors",
22
- "block.1.attn.out.bias": "model--00001-of-00007.safetensors",
23
- "block.1.attn.out.weight": "model--00001-of-00007.safetensors",
24
- "block.1.attn.qkv.bias": "model--00001-of-00007.safetensors",
25
- "block.1.attn.qkv.weight": "model--00001-of-00007.safetensors",
26
- "block.1.attn.sinks": "model--00001-of-00007.safetensors",
27
- "block.1.mlp.gate.bias": "model--00001-of-00007.safetensors",
28
- "block.1.mlp.gate.weight": "model--00001-of-00007.safetensors",
29
- "block.1.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
30
- "block.1.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
31
- "block.1.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
32
- "block.1.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
33
- "block.1.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
34
- "block.1.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
35
- "block.1.mlp.norm.scale": "model--00001-of-00007.safetensors",
36
- "block.10.attn.norm.scale": "model--00001-of-00007.safetensors",
37
- "block.10.attn.out.bias": "model--00001-of-00007.safetensors",
38
- "block.10.attn.out.weight": "model--00001-of-00007.safetensors",
39
- "block.10.attn.qkv.bias": "model--00001-of-00007.safetensors",
40
- "block.10.attn.qkv.weight": "model--00001-of-00007.safetensors",
41
- "block.10.attn.sinks": "model--00001-of-00007.safetensors",
42
- "block.10.mlp.gate.bias": "model--00001-of-00007.safetensors",
43
- "block.10.mlp.gate.weight": "model--00001-of-00007.safetensors",
44
- "block.10.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
45
- "block.10.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
46
- "block.10.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
47
- "block.10.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
48
- "block.10.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
49
- "block.10.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
50
- "block.10.mlp.norm.scale": "model--00001-of-00007.safetensors",
51
- "block.11.attn.norm.scale": "model--00001-of-00007.safetensors",
52
- "block.11.attn.out.bias": "model--00001-of-00007.safetensors",
53
- "block.11.attn.out.weight": "model--00001-of-00007.safetensors",
54
- "block.11.attn.qkv.bias": "model--00001-of-00007.safetensors",
55
- "block.11.attn.qkv.weight": "model--00001-of-00007.safetensors",
56
- "block.11.attn.sinks": "model--00001-of-00007.safetensors",
57
- "block.11.mlp.gate.bias": "model--00001-of-00007.safetensors",
58
- "block.11.mlp.gate.weight": "model--00001-of-00007.safetensors",
59
- "block.11.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
60
- "block.11.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
61
- "block.11.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
62
- "block.11.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
63
- "block.11.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
64
- "block.11.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
65
- "block.11.mlp.norm.scale": "model--00001-of-00007.safetensors",
66
- "block.12.attn.norm.scale": "model--00001-of-00007.safetensors",
67
- "block.12.attn.out.bias": "model--00001-of-00007.safetensors",
68
- "block.12.attn.out.weight": "model--00001-of-00007.safetensors",
69
- "block.12.attn.qkv.bias": "model--00001-of-00007.safetensors",
70
- "block.12.attn.qkv.weight": "model--00001-of-00007.safetensors",
71
- "block.12.attn.sinks": "model--00001-of-00007.safetensors",
72
- "block.12.mlp.gate.bias": "model--00001-of-00007.safetensors",
73
- "block.12.mlp.gate.weight": "model--00001-of-00007.safetensors",
74
- "block.12.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
75
- "block.12.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
76
- "block.12.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
77
- "block.12.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
78
- "block.12.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
79
- "block.12.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
80
- "block.12.mlp.norm.scale": "model--00001-of-00007.safetensors",
81
- "block.13.attn.norm.scale": "model--00001-of-00007.safetensors",
82
- "block.13.attn.out.bias": "model--00001-of-00007.safetensors",
83
- "block.13.attn.out.weight": "model--00001-of-00007.safetensors",
84
- "block.13.attn.qkv.bias": "model--00001-of-00007.safetensors",
85
- "block.13.attn.qkv.weight": "model--00001-of-00007.safetensors",
86
- "block.13.attn.sinks": "model--00001-of-00007.safetensors",
87
- "block.13.mlp.gate.bias": "model--00001-of-00007.safetensors",
88
- "block.13.mlp.gate.weight": "model--00001-of-00007.safetensors",
89
- "block.13.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
90
- "block.13.mlp.mlp1_weight.blocks": "model--00001-of-00007.safetensors",
91
- "block.13.mlp.mlp1_weight.scales": "model--00001-of-00007.safetensors",
92
- "block.13.mlp.mlp2_bias": "model--00001-of-00007.safetensors",
93
- "block.13.mlp.mlp2_weight.blocks": "model--00001-of-00007.safetensors",
94
- "block.13.mlp.mlp2_weight.scales": "model--00001-of-00007.safetensors",
95
- "block.13.mlp.norm.scale": "model--00001-of-00007.safetensors",
96
- "block.14.attn.norm.scale": "model--00001-of-00007.safetensors",
97
- "block.14.attn.out.bias": "model--00001-of-00007.safetensors",
98
- "block.14.attn.out.weight": "model--00001-of-00007.safetensors",
99
- "block.14.attn.qkv.bias": "model--00001-of-00007.safetensors",
100
- "block.14.attn.qkv.weight": "model--00001-of-00007.safetensors",
101
- "block.14.attn.sinks": "model--00001-of-00007.safetensors",
102
- "block.14.mlp.gate.bias": "model--00001-of-00007.safetensors",
103
- "block.14.mlp.gate.weight": "model--00001-of-00007.safetensors",
104
- "block.14.mlp.mlp1_bias": "model--00001-of-00007.safetensors",
105
- "block.14.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
106
- "block.14.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
107
- "block.14.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
108
- "block.14.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
109
- "block.14.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
110
- "block.14.mlp.norm.scale": "model--00002-of-00007.safetensors",
111
- "block.15.attn.norm.scale": "model--00002-of-00007.safetensors",
112
- "block.15.attn.out.bias": "model--00002-of-00007.safetensors",
113
- "block.15.attn.out.weight": "model--00002-of-00007.safetensors",
114
- "block.15.attn.qkv.bias": "model--00002-of-00007.safetensors",
115
- "block.15.attn.qkv.weight": "model--00002-of-00007.safetensors",
116
- "block.15.attn.sinks": "model--00002-of-00007.safetensors",
117
- "block.15.mlp.gate.bias": "model--00002-of-00007.safetensors",
118
- "block.15.mlp.gate.weight": "model--00002-of-00007.safetensors",
119
- "block.15.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
120
- "block.15.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
121
- "block.15.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
122
- "block.15.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
123
- "block.15.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
124
- "block.15.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
125
- "block.15.mlp.norm.scale": "model--00002-of-00007.safetensors",
126
- "block.16.attn.norm.scale": "model--00002-of-00007.safetensors",
127
- "block.16.attn.out.bias": "model--00002-of-00007.safetensors",
128
- "block.16.attn.out.weight": "model--00002-of-00007.safetensors",
129
- "block.16.attn.qkv.bias": "model--00002-of-00007.safetensors",
130
- "block.16.attn.qkv.weight": "model--00002-of-00007.safetensors",
131
- "block.16.attn.sinks": "model--00002-of-00007.safetensors",
132
- "block.16.mlp.gate.bias": "model--00002-of-00007.safetensors",
133
- "block.16.mlp.gate.weight": "model--00002-of-00007.safetensors",
134
- "block.16.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
135
- "block.16.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
136
- "block.16.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
137
- "block.16.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
138
- "block.16.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
139
- "block.16.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
140
- "block.16.mlp.norm.scale": "model--00002-of-00007.safetensors",
141
- "block.17.attn.norm.scale": "model--00002-of-00007.safetensors",
142
- "block.17.attn.out.bias": "model--00002-of-00007.safetensors",
143
- "block.17.attn.out.weight": "model--00002-of-00007.safetensors",
144
- "block.17.attn.qkv.bias": "model--00002-of-00007.safetensors",
145
- "block.17.attn.qkv.weight": "model--00002-of-00007.safetensors",
146
- "block.17.attn.sinks": "model--00002-of-00007.safetensors",
147
- "block.17.mlp.gate.bias": "model--00002-of-00007.safetensors",
148
- "block.17.mlp.gate.weight": "model--00002-of-00007.safetensors",
149
- "block.17.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
150
- "block.17.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
151
- "block.17.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
152
- "block.17.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
153
- "block.17.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
154
- "block.17.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
155
- "block.17.mlp.norm.scale": "model--00002-of-00007.safetensors",
156
- "block.18.attn.norm.scale": "model--00002-of-00007.safetensors",
157
- "block.18.attn.out.bias": "model--00002-of-00007.safetensors",
158
- "block.18.attn.out.weight": "model--00002-of-00007.safetensors",
159
- "block.18.attn.qkv.bias": "model--00002-of-00007.safetensors",
160
- "block.18.attn.qkv.weight": "model--00002-of-00007.safetensors",
161
- "block.18.attn.sinks": "model--00002-of-00007.safetensors",
162
- "block.18.mlp.gate.bias": "model--00002-of-00007.safetensors",
163
- "block.18.mlp.gate.weight": "model--00002-of-00007.safetensors",
164
- "block.18.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
165
- "block.18.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
166
- "block.18.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
167
- "block.18.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
168
- "block.18.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
169
- "block.18.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
170
- "block.18.mlp.norm.scale": "model--00002-of-00007.safetensors",
171
- "block.19.attn.norm.scale": "model--00002-of-00007.safetensors",
172
- "block.19.attn.out.bias": "model--00002-of-00007.safetensors",
173
- "block.19.attn.out.weight": "model--00002-of-00007.safetensors",
174
- "block.19.attn.qkv.bias": "model--00002-of-00007.safetensors",
175
- "block.19.attn.qkv.weight": "model--00002-of-00007.safetensors",
176
- "block.19.attn.sinks": "model--00002-of-00007.safetensors",
177
- "block.19.mlp.gate.bias": "model--00002-of-00007.safetensors",
178
- "block.19.mlp.gate.weight": "model--00002-of-00007.safetensors",
179
- "block.19.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
180
- "block.19.mlp.mlp1_weight.blocks": "model--00002-of-00007.safetensors",
181
- "block.19.mlp.mlp1_weight.scales": "model--00002-of-00007.safetensors",
182
- "block.19.mlp.mlp2_bias": "model--00002-of-00007.safetensors",
183
- "block.19.mlp.mlp2_weight.blocks": "model--00002-of-00007.safetensors",
184
- "block.19.mlp.mlp2_weight.scales": "model--00002-of-00007.safetensors",
185
- "block.19.mlp.norm.scale": "model--00002-of-00007.safetensors",
186
- "block.2.attn.norm.scale": "model--00002-of-00007.safetensors",
187
- "block.2.attn.out.bias": "model--00002-of-00007.safetensors",
188
- "block.2.attn.out.weight": "model--00002-of-00007.safetensors",
189
- "block.2.attn.qkv.bias": "model--00002-of-00007.safetensors",
190
- "block.2.attn.qkv.weight": "model--00002-of-00007.safetensors",
191
- "block.2.attn.sinks": "model--00002-of-00007.safetensors",
192
- "block.2.mlp.gate.bias": "model--00002-of-00007.safetensors",
193
- "block.2.mlp.gate.weight": "model--00002-of-00007.safetensors",
194
- "block.2.mlp.mlp1_bias": "model--00002-of-00007.safetensors",
195
- "block.2.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
196
- "block.2.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
197
- "block.2.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
198
- "block.2.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
199
- "block.2.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
200
- "block.2.mlp.norm.scale": "model--00003-of-00007.safetensors",
201
- "block.20.attn.norm.scale": "model--00003-of-00007.safetensors",
202
- "block.20.attn.out.bias": "model--00003-of-00007.safetensors",
203
- "block.20.attn.out.weight": "model--00003-of-00007.safetensors",
204
- "block.20.attn.qkv.bias": "model--00003-of-00007.safetensors",
205
- "block.20.attn.qkv.weight": "model--00003-of-00007.safetensors",
206
- "block.20.attn.sinks": "model--00003-of-00007.safetensors",
207
- "block.20.mlp.gate.bias": "model--00003-of-00007.safetensors",
208
- "block.20.mlp.gate.weight": "model--00003-of-00007.safetensors",
209
- "block.20.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
210
- "block.20.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
211
- "block.20.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
212
- "block.20.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
213
- "block.20.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
214
- "block.20.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
215
- "block.20.mlp.norm.scale": "model--00003-of-00007.safetensors",
216
- "block.21.attn.norm.scale": "model--00003-of-00007.safetensors",
217
- "block.21.attn.out.bias": "model--00003-of-00007.safetensors",
218
- "block.21.attn.out.weight": "model--00003-of-00007.safetensors",
219
- "block.21.attn.qkv.bias": "model--00003-of-00007.safetensors",
220
- "block.21.attn.qkv.weight": "model--00003-of-00007.safetensors",
221
- "block.21.attn.sinks": "model--00003-of-00007.safetensors",
222
- "block.21.mlp.gate.bias": "model--00003-of-00007.safetensors",
223
- "block.21.mlp.gate.weight": "model--00003-of-00007.safetensors",
224
- "block.21.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
225
- "block.21.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
226
- "block.21.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
227
- "block.21.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
228
- "block.21.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
229
- "block.21.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
230
- "block.21.mlp.norm.scale": "model--00003-of-00007.safetensors",
231
- "block.22.attn.norm.scale": "model--00003-of-00007.safetensors",
232
- "block.22.attn.out.bias": "model--00003-of-00007.safetensors",
233
- "block.22.attn.out.weight": "model--00003-of-00007.safetensors",
234
- "block.22.attn.qkv.bias": "model--00003-of-00007.safetensors",
235
- "block.22.attn.qkv.weight": "model--00003-of-00007.safetensors",
236
- "block.22.attn.sinks": "model--00003-of-00007.safetensors",
237
- "block.22.mlp.gate.bias": "model--00003-of-00007.safetensors",
238
- "block.22.mlp.gate.weight": "model--00003-of-00007.safetensors",
239
- "block.22.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
240
- "block.22.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
241
- "block.22.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
242
- "block.22.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
243
- "block.22.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
244
- "block.22.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
245
- "block.22.mlp.norm.scale": "model--00003-of-00007.safetensors",
246
- "block.23.attn.norm.scale": "model--00003-of-00007.safetensors",
247
- "block.23.attn.out.bias": "model--00003-of-00007.safetensors",
248
- "block.23.attn.out.weight": "model--00003-of-00007.safetensors",
249
- "block.23.attn.qkv.bias": "model--00003-of-00007.safetensors",
250
- "block.23.attn.qkv.weight": "model--00003-of-00007.safetensors",
251
- "block.23.attn.sinks": "model--00003-of-00007.safetensors",
252
- "block.23.mlp.gate.bias": "model--00003-of-00007.safetensors",
253
- "block.23.mlp.gate.weight": "model--00003-of-00007.safetensors",
254
- "block.23.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
255
- "block.23.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
256
- "block.23.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
257
- "block.23.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
258
- "block.23.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
259
- "block.23.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
260
- "block.23.mlp.norm.scale": "model--00003-of-00007.safetensors",
261
- "block.24.attn.norm.scale": "model--00003-of-00007.safetensors",
262
- "block.24.attn.out.bias": "model--00003-of-00007.safetensors",
263
- "block.24.attn.out.weight": "model--00003-of-00007.safetensors",
264
- "block.24.attn.qkv.bias": "model--00003-of-00007.safetensors",
265
- "block.24.attn.qkv.weight": "model--00003-of-00007.safetensors",
266
- "block.24.attn.sinks": "model--00003-of-00007.safetensors",
267
- "block.24.mlp.gate.bias": "model--00003-of-00007.safetensors",
268
- "block.24.mlp.gate.weight": "model--00003-of-00007.safetensors",
269
- "block.24.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
270
- "block.24.mlp.mlp1_weight.blocks": "model--00003-of-00007.safetensors",
271
- "block.24.mlp.mlp1_weight.scales": "model--00003-of-00007.safetensors",
272
- "block.24.mlp.mlp2_bias": "model--00003-of-00007.safetensors",
273
- "block.24.mlp.mlp2_weight.blocks": "model--00003-of-00007.safetensors",
274
- "block.24.mlp.mlp2_weight.scales": "model--00003-of-00007.safetensors",
275
- "block.24.mlp.norm.scale": "model--00003-of-00007.safetensors",
276
- "block.25.attn.norm.scale": "model--00003-of-00007.safetensors",
277
- "block.25.attn.out.bias": "model--00003-of-00007.safetensors",
278
- "block.25.attn.out.weight": "model--00003-of-00007.safetensors",
279
- "block.25.attn.qkv.bias": "model--00003-of-00007.safetensors",
280
- "block.25.attn.qkv.weight": "model--00003-of-00007.safetensors",
281
- "block.25.attn.sinks": "model--00003-of-00007.safetensors",
282
- "block.25.mlp.gate.bias": "model--00003-of-00007.safetensors",
283
- "block.25.mlp.gate.weight": "model--00003-of-00007.safetensors",
284
- "block.25.mlp.mlp1_bias": "model--00003-of-00007.safetensors",
285
- "block.25.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
286
- "block.25.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
287
- "block.25.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
288
- "block.25.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
289
- "block.25.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
290
- "block.25.mlp.norm.scale": "model--00004-of-00007.safetensors",
291
- "block.26.attn.norm.scale": "model--00004-of-00007.safetensors",
292
- "block.26.attn.out.bias": "model--00004-of-00007.safetensors",
293
- "block.26.attn.out.weight": "model--00004-of-00007.safetensors",
294
- "block.26.attn.qkv.bias": "model--00004-of-00007.safetensors",
295
- "block.26.attn.qkv.weight": "model--00004-of-00007.safetensors",
296
- "block.26.attn.sinks": "model--00004-of-00007.safetensors",
297
- "block.26.mlp.gate.bias": "model--00004-of-00007.safetensors",
298
- "block.26.mlp.gate.weight": "model--00004-of-00007.safetensors",
299
- "block.26.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
300
- "block.26.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
301
- "block.26.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
302
- "block.26.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
303
- "block.26.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
304
- "block.26.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
305
- "block.26.mlp.norm.scale": "model--00004-of-00007.safetensors",
306
- "block.27.attn.norm.scale": "model--00004-of-00007.safetensors",
307
- "block.27.attn.out.bias": "model--00004-of-00007.safetensors",
308
- "block.27.attn.out.weight": "model--00004-of-00007.safetensors",
309
- "block.27.attn.qkv.bias": "model--00004-of-00007.safetensors",
310
- "block.27.attn.qkv.weight": "model--00004-of-00007.safetensors",
311
- "block.27.attn.sinks": "model--00004-of-00007.safetensors",
312
- "block.27.mlp.gate.bias": "model--00004-of-00007.safetensors",
313
- "block.27.mlp.gate.weight": "model--00004-of-00007.safetensors",
314
- "block.27.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
315
- "block.27.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
316
- "block.27.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
317
- "block.27.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
318
- "block.27.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
319
- "block.27.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
320
- "block.27.mlp.norm.scale": "model--00004-of-00007.safetensors",
321
- "block.28.attn.norm.scale": "model--00004-of-00007.safetensors",
322
- "block.28.attn.out.bias": "model--00004-of-00007.safetensors",
323
- "block.28.attn.out.weight": "model--00004-of-00007.safetensors",
324
- "block.28.attn.qkv.bias": "model--00004-of-00007.safetensors",
325
- "block.28.attn.qkv.weight": "model--00004-of-00007.safetensors",
326
- "block.28.attn.sinks": "model--00004-of-00007.safetensors",
327
- "block.28.mlp.gate.bias": "model--00004-of-00007.safetensors",
328
- "block.28.mlp.gate.weight": "model--00004-of-00007.safetensors",
329
- "block.28.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
330
- "block.28.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
331
- "block.28.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
332
- "block.28.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
333
- "block.28.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
334
- "block.28.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
335
- "block.28.mlp.norm.scale": "model--00004-of-00007.safetensors",
336
- "block.29.attn.norm.scale": "model--00004-of-00007.safetensors",
337
- "block.29.attn.out.bias": "model--00004-of-00007.safetensors",
338
- "block.29.attn.out.weight": "model--00004-of-00007.safetensors",
339
- "block.29.attn.qkv.bias": "model--00004-of-00007.safetensors",
340
- "block.29.attn.qkv.weight": "model--00004-of-00007.safetensors",
341
- "block.29.attn.sinks": "model--00004-of-00007.safetensors",
342
- "block.29.mlp.gate.bias": "model--00004-of-00007.safetensors",
343
- "block.29.mlp.gate.weight": "model--00004-of-00007.safetensors",
344
- "block.29.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
345
- "block.29.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
346
- "block.29.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
347
- "block.29.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
348
- "block.29.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
349
- "block.29.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
350
- "block.29.mlp.norm.scale": "model--00004-of-00007.safetensors",
351
- "block.3.attn.norm.scale": "model--00004-of-00007.safetensors",
352
- "block.3.attn.out.bias": "model--00004-of-00007.safetensors",
353
- "block.3.attn.out.weight": "model--00004-of-00007.safetensors",
354
- "block.3.attn.qkv.bias": "model--00004-of-00007.safetensors",
355
- "block.3.attn.qkv.weight": "model--00004-of-00007.safetensors",
356
- "block.3.attn.sinks": "model--00004-of-00007.safetensors",
357
- "block.3.mlp.gate.bias": "model--00004-of-00007.safetensors",
358
- "block.3.mlp.gate.weight": "model--00004-of-00007.safetensors",
359
- "block.3.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
360
- "block.3.mlp.mlp1_weight.blocks": "model--00004-of-00007.safetensors",
361
- "block.3.mlp.mlp1_weight.scales": "model--00004-of-00007.safetensors",
362
- "block.3.mlp.mlp2_bias": "model--00004-of-00007.safetensors",
363
- "block.3.mlp.mlp2_weight.blocks": "model--00004-of-00007.safetensors",
364
- "block.3.mlp.mlp2_weight.scales": "model--00004-of-00007.safetensors",
365
- "block.3.mlp.norm.scale": "model--00004-of-00007.safetensors",
366
- "block.30.attn.norm.scale": "model--00004-of-00007.safetensors",
367
- "block.30.attn.out.bias": "model--00004-of-00007.safetensors",
368
- "block.30.attn.out.weight": "model--00004-of-00007.safetensors",
369
- "block.30.attn.qkv.bias": "model--00004-of-00007.safetensors",
370
- "block.30.attn.qkv.weight": "model--00004-of-00007.safetensors",
371
- "block.30.attn.sinks": "model--00004-of-00007.safetensors",
372
- "block.30.mlp.gate.bias": "model--00004-of-00007.safetensors",
373
- "block.30.mlp.gate.weight": "model--00004-of-00007.safetensors",
374
- "block.30.mlp.mlp1_bias": "model--00004-of-00007.safetensors",
375
- "block.30.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
376
- "block.30.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
377
- "block.30.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
378
- "block.30.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
379
- "block.30.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
380
- "block.30.mlp.norm.scale": "model--00005-of-00007.safetensors",
381
- "block.31.attn.norm.scale": "model--00005-of-00007.safetensors",
382
- "block.31.attn.out.bias": "model--00005-of-00007.safetensors",
383
- "block.31.attn.out.weight": "model--00005-of-00007.safetensors",
384
- "block.31.attn.qkv.bias": "model--00005-of-00007.safetensors",
385
- "block.31.attn.qkv.weight": "model--00005-of-00007.safetensors",
386
- "block.31.attn.sinks": "model--00005-of-00007.safetensors",
387
- "block.31.mlp.gate.bias": "model--00005-of-00007.safetensors",
388
- "block.31.mlp.gate.weight": "model--00005-of-00007.safetensors",
389
- "block.31.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
390
- "block.31.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
391
- "block.31.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
392
- "block.31.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
393
- "block.31.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
394
- "block.31.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
395
- "block.31.mlp.norm.scale": "model--00005-of-00007.safetensors",
396
- "block.32.attn.norm.scale": "model--00005-of-00007.safetensors",
397
- "block.32.attn.out.bias": "model--00005-of-00007.safetensors",
398
- "block.32.attn.out.weight": "model--00005-of-00007.safetensors",
399
- "block.32.attn.qkv.bias": "model--00005-of-00007.safetensors",
400
- "block.32.attn.qkv.weight": "model--00005-of-00007.safetensors",
401
- "block.32.attn.sinks": "model--00005-of-00007.safetensors",
402
- "block.32.mlp.gate.bias": "model--00005-of-00007.safetensors",
403
- "block.32.mlp.gate.weight": "model--00005-of-00007.safetensors",
404
- "block.32.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
405
- "block.32.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
406
- "block.32.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
407
- "block.32.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
408
- "block.32.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
409
- "block.32.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
410
- "block.32.mlp.norm.scale": "model--00005-of-00007.safetensors",
411
- "block.33.attn.norm.scale": "model--00005-of-00007.safetensors",
412
- "block.33.attn.out.bias": "model--00005-of-00007.safetensors",
413
- "block.33.attn.out.weight": "model--00005-of-00007.safetensors",
414
- "block.33.attn.qkv.bias": "model--00005-of-00007.safetensors",
415
- "block.33.attn.qkv.weight": "model--00005-of-00007.safetensors",
416
- "block.33.attn.sinks": "model--00005-of-00007.safetensors",
417
- "block.33.mlp.gate.bias": "model--00005-of-00007.safetensors",
418
- "block.33.mlp.gate.weight": "model--00005-of-00007.safetensors",
419
- "block.33.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
420
- "block.33.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
421
- "block.33.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
422
- "block.33.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
423
- "block.33.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
424
- "block.33.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
425
- "block.33.mlp.norm.scale": "model--00005-of-00007.safetensors",
426
- "block.34.attn.norm.scale": "model--00005-of-00007.safetensors",
427
- "block.34.attn.out.bias": "model--00005-of-00007.safetensors",
428
- "block.34.attn.out.weight": "model--00005-of-00007.safetensors",
429
- "block.34.attn.qkv.bias": "model--00005-of-00007.safetensors",
430
- "block.34.attn.qkv.weight": "model--00005-of-00007.safetensors",
431
- "block.34.attn.sinks": "model--00005-of-00007.safetensors",
432
- "block.34.mlp.gate.bias": "model--00005-of-00007.safetensors",
433
- "block.34.mlp.gate.weight": "model--00005-of-00007.safetensors",
434
- "block.34.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
435
- "block.34.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
436
- "block.34.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
437
- "block.34.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
438
- "block.34.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
439
- "block.34.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
440
- "block.34.mlp.norm.scale": "model--00005-of-00007.safetensors",
441
- "block.35.attn.norm.scale": "model--00005-of-00007.safetensors",
442
- "block.35.attn.out.bias": "model--00005-of-00007.safetensors",
443
- "block.35.attn.out.weight": "model--00005-of-00007.safetensors",
444
- "block.35.attn.qkv.bias": "model--00005-of-00007.safetensors",
445
- "block.35.attn.qkv.weight": "model--00005-of-00007.safetensors",
446
- "block.35.attn.sinks": "model--00005-of-00007.safetensors",
447
- "block.35.mlp.gate.bias": "model--00005-of-00007.safetensors",
448
- "block.35.mlp.gate.weight": "model--00005-of-00007.safetensors",
449
- "block.35.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
450
- "block.35.mlp.mlp1_weight.blocks": "model--00005-of-00007.safetensors",
451
- "block.35.mlp.mlp1_weight.scales": "model--00005-of-00007.safetensors",
452
- "block.35.mlp.mlp2_bias": "model--00005-of-00007.safetensors",
453
- "block.35.mlp.mlp2_weight.blocks": "model--00005-of-00007.safetensors",
454
- "block.35.mlp.mlp2_weight.scales": "model--00005-of-00007.safetensors",
455
- "block.35.mlp.norm.scale": "model--00005-of-00007.safetensors",
456
- "block.4.attn.norm.scale": "model--00005-of-00007.safetensors",
457
- "block.4.attn.out.bias": "model--00005-of-00007.safetensors",
458
- "block.4.attn.out.weight": "model--00005-of-00007.safetensors",
459
- "block.4.attn.qkv.bias": "model--00005-of-00007.safetensors",
460
- "block.4.attn.qkv.weight": "model--00005-of-00007.safetensors",
461
- "block.4.attn.sinks": "model--00005-of-00007.safetensors",
462
- "block.4.mlp.gate.bias": "model--00005-of-00007.safetensors",
463
- "block.4.mlp.gate.weight": "model--00005-of-00007.safetensors",
464
- "block.4.mlp.mlp1_bias": "model--00005-of-00007.safetensors",
465
- "block.4.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
466
- "block.4.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
467
- "block.4.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
468
- "block.4.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
469
- "block.4.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
470
- "block.4.mlp.norm.scale": "model--00006-of-00007.safetensors",
471
- "block.5.attn.norm.scale": "model--00006-of-00007.safetensors",
472
- "block.5.attn.out.bias": "model--00006-of-00007.safetensors",
473
- "block.5.attn.out.weight": "model--00006-of-00007.safetensors",
474
- "block.5.attn.qkv.bias": "model--00006-of-00007.safetensors",
475
- "block.5.attn.qkv.weight": "model--00006-of-00007.safetensors",
476
- "block.5.attn.sinks": "model--00006-of-00007.safetensors",
477
- "block.5.mlp.gate.bias": "model--00006-of-00007.safetensors",
478
- "block.5.mlp.gate.weight": "model--00006-of-00007.safetensors",
479
- "block.5.mlp.mlp1_bias": "model--00006-of-00007.safetensors",
480
- "block.5.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
481
- "block.5.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
482
- "block.5.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
483
- "block.5.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
484
- "block.5.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
485
- "block.5.mlp.norm.scale": "model--00006-of-00007.safetensors",
486
- "block.6.attn.norm.scale": "model--00006-of-00007.safetensors",
487
- "block.6.attn.out.bias": "model--00006-of-00007.safetensors",
488
- "block.6.attn.out.weight": "model--00006-of-00007.safetensors",
489
- "block.6.attn.qkv.bias": "model--00006-of-00007.safetensors",
490
- "block.6.attn.qkv.weight": "model--00006-of-00007.safetensors",
491
- "block.6.attn.sinks": "model--00006-of-00007.safetensors",
492
- "block.6.mlp.gate.bias": "model--00006-of-00007.safetensors",
493
- "block.6.mlp.gate.weight": "model--00006-of-00007.safetensors",
494
- "block.6.mlp.mlp1_bias": "model--00006-of-00007.safetensors",
495
- "block.6.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
496
- "block.6.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
497
- "block.6.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
498
- "block.6.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
499
- "block.6.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
500
- "block.6.mlp.norm.scale": "model--00006-of-00007.safetensors",
501
- "block.7.attn.norm.scale": "model--00006-of-00007.safetensors",
502
- "block.7.attn.out.bias": "model--00006-of-00007.safetensors",
503
- "block.7.attn.out.weight": "model--00006-of-00007.safetensors",
504
- "block.7.attn.qkv.bias": "model--00006-of-00007.safetensors",
505
- "block.7.attn.qkv.weight": "model--00006-of-00007.safetensors",
506
- "block.7.attn.sinks": "model--00006-of-00007.safetensors",
507
- "block.7.mlp.gate.bias": "model--00006-of-00007.safetensors",
508
- "block.7.mlp.gate.weight": "model--00006-of-00007.safetensors",
509
- "block.7.mlp.mlp1_bias": "model--00006-of-00007.safetensors",
510
- "block.7.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
511
- "block.7.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
512
- "block.7.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
513
- "block.7.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
514
- "block.7.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
515
- "block.7.mlp.norm.scale": "model--00006-of-00007.safetensors",
516
- "block.8.attn.norm.scale": "model--00006-of-00007.safetensors",
517
- "block.8.attn.out.bias": "model--00006-of-00007.safetensors",
518
- "block.8.attn.out.weight": "model--00006-of-00007.safetensors",
519
- "block.8.attn.qkv.bias": "model--00006-of-00007.safetensors",
520
- "block.8.attn.qkv.weight": "model--00006-of-00007.safetensors",
521
- "block.8.attn.sinks": "model--00006-of-00007.safetensors",
522
- "block.8.mlp.gate.bias": "model--00006-of-00007.safetensors",
523
- "block.8.mlp.gate.weight": "model--00006-of-00007.safetensors",
524
- "block.8.mlp.mlp1_bias": "model--00006-of-00007.safetensors",
525
- "block.8.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
526
- "block.8.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
527
- "block.8.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
528
- "block.8.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
529
- "block.8.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
530
- "block.8.mlp.norm.scale": "model--00006-of-00007.safetensors",
531
- "block.9.attn.norm.scale": "model--00006-of-00007.safetensors",
532
- "block.9.attn.out.bias": "model--00006-of-00007.safetensors",
533
- "block.9.attn.out.weight": "model--00006-of-00007.safetensors",
534
- "block.9.attn.qkv.bias": "model--00006-of-00007.safetensors",
535
- "block.9.attn.qkv.weight": "model--00006-of-00007.safetensors",
536
- "block.9.attn.sinks": "model--00006-of-00007.safetensors",
537
- "block.9.mlp.gate.bias": "model--00006-of-00007.safetensors",
538
- "block.9.mlp.gate.weight": "model--00006-of-00007.safetensors",
539
- "block.9.mlp.mlp1_bias": "model--00006-of-00007.safetensors",
540
- "block.9.mlp.mlp1_weight.blocks": "model--00006-of-00007.safetensors",
541
- "block.9.mlp.mlp1_weight.scales": "model--00006-of-00007.safetensors",
542
- "block.9.mlp.mlp2_bias": "model--00006-of-00007.safetensors",
543
- "block.9.mlp.mlp2_weight.blocks": "model--00006-of-00007.safetensors",
544
- "block.9.mlp.mlp2_weight.scales": "model--00006-of-00007.safetensors",
545
- "block.9.mlp.norm.scale": "model--00006-of-00007.safetensors",
546
- "embedding.weight": "model--00007-of-00007.safetensors",
547
- "norm.scale": "model--00007-of-00007.safetensors",
548
- "unembedding.weight": "model--00007-of-00007.safetensors"
549
- }
550
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
special_tokens_map.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "bos_token": "<|startoftext|>",
3
- "eos_token": "<|return|>",
4
- "pad_token": "<|endoftext|>"
5
- }
 
 
 
 
 
 
tokenizer.json DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0614fe83cadab421296e664e1f48f4261fa8fef6e03e63bb75c20f38e37d07d3
3
- size 27868174
 
 
 
 
tokenizer_config.json DELETED
@@ -1,183 +0,0 @@
1
- {
2
- "added_tokens_decoder": {
3
- "199998": {
4
- "content": "<|startoftext|>",
5
- "lstrip": false,
6
- "normalized": false,
7
- "rstrip": false,
8
- "single_word": false,
9
- "special": true
10
- },
11
- "199999": {
12
- "content": "<|endoftext|>",
13
- "lstrip": false,
14
- "normalized": false,
15
- "rstrip": false,
16
- "single_word": false,
17
- "special": true
18
- },
19
- "200000": {
20
- "content": "<|reserved_200000|>",
21
- "lstrip": false,
22
- "normalized": false,
23
- "rstrip": false,
24
- "single_word": false,
25
- "special": true
26
- },
27
- "200001": {
28
- "content": "<|reserved_200001|>",
29
- "lstrip": false,
30
- "normalized": false,
31
- "rstrip": false,
32
- "single_word": false,
33
- "special": true
34
- },
35
- "200002": {
36
- "content": "<|return|>",
37
- "lstrip": false,
38
- "normalized": false,
39
- "rstrip": false,
40
- "single_word": false,
41
- "special": true
42
- },
43
- "200003": {
44
- "content": "<|constrain|>",
45
- "lstrip": false,
46
- "normalized": false,
47
- "rstrip": false,
48
- "single_word": false,
49
- "special": true
50
- },
51
- "200004": {
52
- "content": "<|reserved_200004|>",
53
- "lstrip": false,
54
- "normalized": false,
55
- "rstrip": false,
56
- "single_word": false,
57
- "special": true
58
- },
59
- "200005": {
60
- "content": "<|channel|>",
61
- "lstrip": false,
62
- "normalized": false,
63
- "rstrip": false,
64
- "single_word": false,
65
- "special": true
66
- },
67
- "200006": {
68
- "content": "<|start|>",
69
- "lstrip": false,
70
- "normalized": false,
71
- "rstrip": false,
72
- "single_word": false,
73
- "special": true
74
- },
75
- "200007": {
76
- "content": "<|end|>",
77
- "lstrip": false,
78
- "normalized": false,
79
- "rstrip": false,
80
- "single_word": false,
81
- "special": true
82
- },
83
- "200008": {
84
- "content": "<|message|>",
85
- "lstrip": false,
86
- "normalized": false,
87
- "rstrip": false,
88
- "single_word": false,
89
- "special": true
90
- },
91
- "200009": {
92
- "content": "<|reserved_200009|>",
93
- "lstrip": false,
94
- "normalized": false,
95
- "rstrip": false,
96
- "single_word": false,
97
- "special": true
98
- },
99
- "200010": {
100
- "content": "<|reserved_200010|>",
101
- "lstrip": false,
102
- "normalized": false,
103
- "rstrip": false,
104
- "single_word": false,
105
- "special": true
106
- },
107
- "200011": {
108
- "content": "<|reserved_200011|>",
109
- "lstrip": false,
110
- "normalized": false,
111
- "rstrip": false,
112
- "single_word": false,
113
- "special": true
114
- },
115
- "200012": {
116
- "content": "<|call|>",
117
- "lstrip": false,
118
- "normalized": false,
119
- "rstrip": false,
120
- "single_word": false,
121
- "special": true
122
- },
123
- "200013": {
124
- "content": "<|reserved_200013|>",
125
- "lstrip": false,
126
- "normalized": false,
127
- "rstrip": false,
128
- "single_word": false,
129
- "special": true
130
- },
131
- "200014": {
132
- "content": "<|reserved_200014|>",
133
- "lstrip": false,
134
- "normalized": false,
135
- "rstrip": false,
136
- "single_word": false,
137
- "special": true
138
- },
139
- "200015": {
140
- "content": "<|reserved_200015|>",
141
- "lstrip": false,
142
- "normalized": false,
143
- "rstrip": false,
144
- "single_word": false,
145
- "special": true
146
- },
147
- "200016": {
148
- "content": "<|reserved_200016|>",
149
- "lstrip": false,
150
- "normalized": false,
151
- "rstrip": false,
152
- "single_word": false,
153
- "special": true
154
- },
155
- "200017": {
156
- "content": "<|reserved_200017|>",
157
- "lstrip": false,
158
- "normalized": false,
159
- "rstrip": false,
160
- "single_word": false,
161
- "special": true
162
- },
163
- "200018": {
164
- "content": "<|endofprompt|>",
165
- "lstrip": false,
166
- "normalized": false,
167
- "rstrip": false,
168
- "single_word": false,
169
- "special": true
170
- }
171
- },
172
- "bos_token": "<|startoftext|>",
173
- "clean_up_tokenization_spaces": false,
174
- "eos_token": "<|return|>",
175
- "extra_special_tokens": {},
176
- "model_input_names": [
177
- "input_ids",
178
- "attention_mask"
179
- ],
180
- "model_max_length": 1000000000000000019884624838656,
181
- "pad_token": "<|endoftext|>",
182
- "tokenizer_class": "PreTrainedTokenizerFast"
183
- }