nightmedia commited on
Commit
2a675b0
·
verified ·
1 Parent(s): e401f2f

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: EpistemeAI/VCoder-120b-1.0
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - unsloth
7
+ - gpt_oss
8
+ - mlx
9
+ license: apache-2.0
10
+ language:
11
+ - en
12
+ datasets:
13
+ - EpistemeAI/vibe-coder-part-debug
14
+ pipeline_tag: text-generation
15
+ library_name: mlx
16
+ ---
17
+
18
+ # VCoder-120b-1.0-qx86-hi-mlx
19
+
20
+ This model [VCoder-120b-1.0-qx86-hi-mlx](https://huggingface.co/VCoder-120b-1.0-qx86-hi-mlx) was
21
+ converted to MLX format from [EpistemeAI/VCoder-120b-1.0](https://huggingface.co/EpistemeAI/VCoder-120b-1.0)
22
+ using mlx-lm version **0.28.2**.
23
+
24
+ ## Use with mlx
25
+
26
+ ```bash
27
+ pip install mlx-lm
28
+ ```
29
+
30
+ ```python
31
+ from mlx_lm import load, generate
32
+
33
+ model, tokenizer = load("VCoder-120b-1.0-qx86-hi-mlx")
34
+
35
+ prompt = "hello"
36
+
37
+ if tokenizer.chat_template is not None:
38
+ messages = [{"role": "user", "content": prompt}]
39
+ prompt = tokenizer.apply_chat_template(
40
+ messages, add_generation_prompt=True
41
+ )
42
+
43
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
44
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {# Copyright 2025-present Unsloth. Apache 2.0 License. Unsloth chat template fixes. Edited from ggml-org & OpenAI #}
2
+ {#-
3
+ In addition to the normal inputs of `messages` and `tools`, this template also accepts the
4
+ following kwargs:
5
+ - "builtin_tools": A list, can contain "browser" and/or "python".
6
+ - "model_identity": A string that optionally describes the model identity.
7
+ - "reasoning_effort": A string that describes the reasoning effort, defaults to "medium".
8
+ #}
9
+
10
+ {#- Tool Definition Rendering ============================================== #}
11
+ {%- macro render_typescript_type(param_spec, required_params, is_nullable=false) -%}
12
+ {%- if param_spec.type == "array" -%}
13
+ {%- if param_spec['items'] -%}
14
+ {%- if param_spec['items']['type'] == "string" -%}
15
+ {{- "string[]" }}
16
+ {%- elif param_spec['items']['type'] == "number" -%}
17
+ {{- "number[]" }}
18
+ {%- elif param_spec['items']['type'] == "integer" -%}
19
+ {{- "number[]" }}
20
+ {%- elif param_spec['items']['type'] == "boolean" -%}
21
+ {{- "boolean[]" }}
22
+ {%- else -%}
23
+ {%- set inner_type = render_typescript_type(param_spec['items'], required_params) -%}
24
+ {%- if inner_type == "object | object" or inner_type|length > 50 -%}
25
+ {{- "any[]" }}
26
+ {%- else -%}
27
+ {{- inner_type + "[]" }}
28
+ {%- endif -%}
29
+ {%- endif -%}
30
+ {%- if param_spec.nullable -%}
31
+ {{- " | null" }}
32
+ {%- endif -%}
33
+ {%- else -%}
34
+ {{- "any[]" }}
35
+ {%- if param_spec.nullable -%}
36
+ {{- " | null" }}
37
+ {%- endif -%}
38
+ {%- endif -%}
39
+ {%- 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 -%}
40
+ {#- Handle array of types like ["object", "object"] from Union[dict, list] #}
41
+ {%- if param_spec.type | length > 1 -%}
42
+ {{- param_spec.type | join(" | ") }}
43
+ {%- else -%}
44
+ {{- param_spec.type[0] }}
45
+ {%- endif -%}
46
+ {%- elif param_spec.oneOf -%}
47
+ {#- Handle oneOf schemas - check for complex unions and fallback to any #}
48
+ {%- set has_object_variants = false -%}
49
+ {%- for variant in param_spec.oneOf -%}
50
+ {%- if variant.type == "object" -%}
51
+ {%- set has_object_variants = true -%}
52
+ {%- endif -%}
53
+ {%- endfor -%}
54
+ {%- if has_object_variants and param_spec.oneOf|length > 1 -%}
55
+ {{- "any" }}
56
+ {%- else -%}
57
+ {%- for variant in param_spec.oneOf -%}
58
+ {{- render_typescript_type(variant, required_params) -}}
59
+ {%- if variant.description %}
60
+ {{- "// " + variant.description }}
61
+ {%- endif -%}
62
+ {%- if variant.default is defined %}
63
+ {{ "// default: " + variant.default|tojson }}
64
+ {%- endif -%}
65
+ {%- if not loop.last %}
66
+ {{- " | " }}
67
+ {% endif -%}
68
+ {%- endfor -%}
69
+ {%- endif -%}
70
+ {%- elif param_spec.type == "string" -%}
71
+ {%- if param_spec.enum -%}
72
+ {{- '"' + param_spec.enum|join('" | "') + '"' -}}
73
+ {%- else -%}
74
+ {{- "string" }}
75
+ {%- if param_spec.nullable %}
76
+ {{- " | null" }}
77
+ {%- endif -%}
78
+ {%- endif -%}
79
+ {%- elif param_spec.type == "number" -%}
80
+ {{- "number" }}
81
+ {%- elif param_spec.type == "integer" -%}
82
+ {{- "number" }}
83
+ {%- elif param_spec.type == "boolean" -%}
84
+ {{- "boolean" }}
85
+
86
+ {%- elif param_spec.type == "object" -%}
87
+ {%- if param_spec.properties -%}
88
+ {{- "{\n" }}
89
+ {%- for prop_name, prop_spec in param_spec.properties.items() -%}
90
+ {{- prop_name -}}
91
+ {%- if prop_name not in (param_spec.required or []) -%}
92
+ {{- "?" }}
93
+ {%- endif -%}
94
+ {{- ": " }}
95
+ {{ render_typescript_type(prop_spec, param_spec.required or []) }}
96
+ {%- if not loop.last -%}
97
+ {{-", " }}
98
+ {%- endif -%}
99
+ {%- endfor -%}
100
+ {{- "}" }}
101
+ {%- else -%}
102
+ {{- "object" }}
103
+ {%- endif -%}
104
+ {%- else -%}
105
+ {{- "any" }}
106
+ {%- endif -%}
107
+ {%- endmacro -%}
108
+
109
+ {%- macro render_tool_namespace(namespace_name, tools) -%}
110
+ {{- "## " + namespace_name + "\n\n" }}
111
+ {{- "namespace " + namespace_name + " {\n\n" }}
112
+ {%- for tool in tools %}
113
+ {%- set tool = tool.function %}
114
+ {{- "// " + tool.description + "\n" }}
115
+ {{- "type "+ tool.name + " = " }}
116
+ {%- if tool.parameters and tool.parameters.properties -%}
117
+ {{- "(_: " }}
118
+ {{- "{\n" }}
119
+ {%- for param_name, param_spec in tool.parameters.properties.items() %}
120
+ {{- "// " + param_spec.description + "\n" }}
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
+ {{- "You are ChatGPT, a large language model trained by OpenAI.\n" -}}
199
+ {%- else %}
200
+ {{- model_identity }}
201
+ {%- endif %}
202
+ {{- "Knowledge cutoff: 2024-06\n" }}
203
+ {{- "Current date: " + strftime_now("%Y-%m-%d") + "\n\n" }}
204
+ {%- if reasoning_effort is not defined %}
205
+ {%- set reasoning_effort = "medium" %}
206
+ {%- endif %}
207
+ {{- "Reasoning: " + reasoning_effort + "\n\n" }}
208
+ {%- if builtin_tools is defined %}
209
+ {{- "# Tools\n\n" }}
210
+ {%- set available_builtin_tools = namespace(browser=false, python=false) %}
211
+ {%- for tool in builtin_tools %}
212
+ {%- if tool == "browser" %}
213
+ {%- set available_builtin_tools.browser = true %}
214
+ {%- elif tool == "python" %}
215
+ {%- set available_builtin_tools.python = true %}
216
+ {%- endif %}
217
+ {%- endfor %}
218
+ {{- render_builtin_tools(available_builtin_tools.browser, available_builtin_tools.python) }}
219
+ {%- endif -%}
220
+ {{- "# Valid channels: analysis, commentary, final. Channel must be included for every message." }}
221
+ {%- if tools is defined -%}
222
+ {{- "\nCalls to these tools must go to the commentary channel: 'functions'." }}
223
+ {%- endif -%}
224
+ {%- endmacro -%}
225
+
226
+ {#- Main Template Logic ================================================= #}
227
+ {#- Set defaults #}
228
+
229
+ {#- Render system message #}
230
+ {{- "<|start|>system<|message|>" }}
231
+ {{- build_system_message() }}
232
+ {{- "<|end|>" }}
233
+
234
+ {#- Extract developer message #}
235
+ {%- if messages[0].role == "developer" or messages[0].role == "system" %}
236
+ {%- set developer_message = messages[0].content %}
237
+ {%- set loop_messages = messages[1:] %}
238
+ {%- else %}
239
+ {%- set developer_message = "" %}
240
+ {%- set loop_messages = messages %}
241
+ {%- endif %}
242
+
243
+ {#- Render developer message #}
244
+ {%- if developer_message or tools %}
245
+ {{- "<|start|>developer<|message|>" }}
246
+ {%- if developer_message %}
247
+ {{- "# Instructions\n\n" }}
248
+ {{- developer_message }}
249
+ {%- endif %}
250
+ {%- if tools -%}
251
+ {{- "\n\n" }}
252
+ {{- "# Tools\n\n" }}
253
+ {{- render_tool_namespace("functions", tools) }}
254
+ {%- endif -%}
255
+ {{- "<|end|>" }}
256
+ {%- endif %}
257
+
258
+ {#- Render messages #}
259
+ {%- set last_tool_call = namespace(name=none) %}
260
+ {%- for message in loop_messages -%}
261
+ {#- At this point only assistant/user/tool messages should remain #}
262
+ {%- if message.role == 'assistant' -%}
263
+ {%- if "tool_calls" in message %}
264
+ {#- We assume max 1 tool call per message, and so we infer the tool call name #}
265
+ {#- in "tool" messages from the most recent assistant tool call name #}
266
+ {%- set tool_call = message.tool_calls[0] %}
267
+ {%- if tool_call.function %}
268
+ {%- set tool_call = tool_call.function %}
269
+ {%- endif %}
270
+ {%- if message.content %}
271
+ {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.content + "<|end|>" }}
272
+ {%- endif %}
273
+ {{- "<|start|>assistant to=" }}
274
+ {{- "functions." + tool_call.name + "<|channel|>commentary json<|message|>" }}
275
+ {{- tool_call.arguments|tojson }}
276
+ {{- "<|call|>" }}
277
+ {%- set last_tool_call.name = tool_call.name %}
278
+ {%- elif "thinking" in message and loop.last and not add_generation_prompt %}
279
+ {#- Only render the CoT if the final turn is an assistant turn and add_generation_prompt is false #}
280
+ {#- This is a situation that should only occur in training, never in inference. #}
281
+ {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
282
+ {#- <|return|> indicates the end of generation, but <|end|> does not #}
283
+ {#- <|return|> should never be an input to the model, but we include it as the final token #}
284
+ {#- when training, so the model learns to emit it. #}
285
+ {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|return|>" }}
286
+ {%- set last_tool_call.name = none %}
287
+ {%- elif "thinking" in message %}
288
+ {#- CoT is dropped during all previous turns, so we never render it for inference #}
289
+ {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|end|>" }}
290
+ {%- set last_tool_call.name = none %}
291
+ {%- elif loop.last and not add_generation_prompt %}
292
+ {#- <|return|> indicates the end of generation, but <|end|> does not #}
293
+ {#- <|return|> should never be an input to the model, but we include it as the final token #}
294
+ {#- when training, so the model learns to emit it. #}
295
+ {{- "<|start|>assistant<|message|>" + message.content + "<|return|>" }}
296
+ {%- else %}
297
+ {{- "<|start|>assistant<|message|>" + message.content + "<|end|>" }}
298
+ {%- set last_tool_call.name = none %}
299
+ {%- endif %}
300
+ {%- elif message.role == 'tool' -%}
301
+ {%- if last_tool_call.name is none %}
302
+ {{- raise_exception("Message has tool role, but there was no previous assistant message with a tool call!") }}
303
+ {%- endif %}
304
+ {{- "<|start|>functions." + last_tool_call.name }}
305
+ {{- " to=assistant<|channel|>commentary<|message|>" + message.content|tojson + "<|end|>" }}
306
+ {%- else -%}
307
+ {{- "<|start|>user<|message|>" + message.content + "<|end|>" }}
308
+ {%- endif -%}
309
+ {%- endfor -%}
310
+
311
+ {#- Generation prompt #}
312
+ {%- if add_generation_prompt -%}
313
+ <|start|>assistant
314
+ {%- endif -%}
315
+ {# Copyright 2025-present Unsloth. Apache 2.0 License. Unsloth chat template fixes. Edited from ggml-org & OpenAI #}
config.json ADDED
@@ -0,0 +1,1546 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GptOssForCausalLM"
4
+ ],
5
+ "attention_bias": true,
6
+ "attention_dropout": 0.0,
7
+ "eos_token_id": 200002,
8
+ "experts_per_token": 4,
9
+ "head_dim": 64,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2880,
12
+ "initial_context_length": 4096,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 2880,
15
+ "layer_types": [
16
+ "sliding_attention",
17
+ "full_attention",
18
+ "sliding_attention",
19
+ "full_attention",
20
+ "sliding_attention",
21
+ "full_attention",
22
+ "sliding_attention",
23
+ "full_attention",
24
+ "sliding_attention",
25
+ "full_attention",
26
+ "sliding_attention",
27
+ "full_attention",
28
+ "sliding_attention",
29
+ "full_attention",
30
+ "sliding_attention",
31
+ "full_attention",
32
+ "sliding_attention",
33
+ "full_attention",
34
+ "sliding_attention",
35
+ "full_attention",
36
+ "sliding_attention",
37
+ "full_attention",
38
+ "sliding_attention",
39
+ "full_attention",
40
+ "sliding_attention",
41
+ "full_attention",
42
+ "sliding_attention",
43
+ "full_attention",
44
+ "sliding_attention",
45
+ "full_attention",
46
+ "sliding_attention",
47
+ "full_attention",
48
+ "sliding_attention",
49
+ "full_attention",
50
+ "sliding_attention",
51
+ "full_attention"
52
+ ],
53
+ "max_position_embeddings": 131072,
54
+ "model_type": "gpt_oss",
55
+ "num_attention_heads": 64,
56
+ "num_experts_per_tok": 4,
57
+ "num_hidden_layers": 36,
58
+ "num_key_value_heads": 8,
59
+ "num_local_experts": 128,
60
+ "output_router_logits": false,
61
+ "pad_token_id": 200017,
62
+ "quantization": {
63
+ "group_size": 32,
64
+ "bits": 4,
65
+ "mode": "mxfp4",
66
+ "model.embed_tokens": {
67
+ "group_size": 32,
68
+ "bits": 6
69
+ },
70
+ "model.layers.0.self_attn.q_proj": {
71
+ "group_size": 32,
72
+ "bits": 8
73
+ },
74
+ "model.layers.0.self_attn.k_proj": {
75
+ "group_size": 32,
76
+ "bits": 8
77
+ },
78
+ "model.layers.0.self_attn.v_proj": {
79
+ "group_size": 32,
80
+ "bits": 8
81
+ },
82
+ "model.layers.0.self_attn.o_proj": {
83
+ "group_size": 32,
84
+ "bits": 8
85
+ },
86
+ "model.layers.0.mlp.router": {
87
+ "group_size": 32,
88
+ "bits": 8
89
+ },
90
+ "model.layers.1.self_attn.q_proj": {
91
+ "group_size": 32,
92
+ "bits": 6
93
+ },
94
+ "model.layers.1.self_attn.k_proj": {
95
+ "group_size": 32,
96
+ "bits": 6
97
+ },
98
+ "model.layers.1.self_attn.v_proj": {
99
+ "group_size": 32,
100
+ "bits": 8
101
+ },
102
+ "model.layers.1.self_attn.o_proj": {
103
+ "group_size": 32,
104
+ "bits": 6
105
+ },
106
+ "model.layers.1.mlp.router": {
107
+ "group_size": 32,
108
+ "bits": 6
109
+ },
110
+ "model.layers.2.self_attn.q_proj": {
111
+ "group_size": 32,
112
+ "bits": 6
113
+ },
114
+ "model.layers.2.self_attn.k_proj": {
115
+ "group_size": 32,
116
+ "bits": 6
117
+ },
118
+ "model.layers.2.self_attn.v_proj": {
119
+ "group_size": 32,
120
+ "bits": 8
121
+ },
122
+ "model.layers.2.self_attn.o_proj": {
123
+ "group_size": 32,
124
+ "bits": 6
125
+ },
126
+ "model.layers.2.mlp.router": {
127
+ "group_size": 32,
128
+ "bits": 6
129
+ },
130
+ "model.layers.3.self_attn.q_proj": {
131
+ "group_size": 32,
132
+ "bits": 6
133
+ },
134
+ "model.layers.3.self_attn.k_proj": {
135
+ "group_size": 32,
136
+ "bits": 6
137
+ },
138
+ "model.layers.3.self_attn.v_proj": {
139
+ "group_size": 32,
140
+ "bits": 8
141
+ },
142
+ "model.layers.3.self_attn.o_proj": {
143
+ "group_size": 32,
144
+ "bits": 6
145
+ },
146
+ "model.layers.3.mlp.router": {
147
+ "group_size": 32,
148
+ "bits": 6
149
+ },
150
+ "model.layers.4.self_attn.q_proj": {
151
+ "group_size": 32,
152
+ "bits": 6
153
+ },
154
+ "model.layers.4.self_attn.k_proj": {
155
+ "group_size": 32,
156
+ "bits": 6
157
+ },
158
+ "model.layers.4.self_attn.v_proj": {
159
+ "group_size": 32,
160
+ "bits": 8
161
+ },
162
+ "model.layers.4.self_attn.o_proj": {
163
+ "group_size": 32,
164
+ "bits": 6
165
+ },
166
+ "model.layers.4.mlp.router": {
167
+ "group_size": 32,
168
+ "bits": 6
169
+ },
170
+ "model.layers.5.self_attn.q_proj": {
171
+ "group_size": 32,
172
+ "bits": 6
173
+ },
174
+ "model.layers.5.self_attn.k_proj": {
175
+ "group_size": 32,
176
+ "bits": 6
177
+ },
178
+ "model.layers.5.self_attn.v_proj": {
179
+ "group_size": 32,
180
+ "bits": 8
181
+ },
182
+ "model.layers.5.self_attn.o_proj": {
183
+ "group_size": 32,
184
+ "bits": 6
185
+ },
186
+ "model.layers.5.mlp.router": {
187
+ "group_size": 32,
188
+ "bits": 6
189
+ },
190
+ "model.layers.6.self_attn.q_proj": {
191
+ "group_size": 32,
192
+ "bits": 6
193
+ },
194
+ "model.layers.6.self_attn.k_proj": {
195
+ "group_size": 32,
196
+ "bits": 6
197
+ },
198
+ "model.layers.6.self_attn.v_proj": {
199
+ "group_size": 32,
200
+ "bits": 8
201
+ },
202
+ "model.layers.6.self_attn.o_proj": {
203
+ "group_size": 32,
204
+ "bits": 6
205
+ },
206
+ "model.layers.6.mlp.router": {
207
+ "group_size": 32,
208
+ "bits": 6
209
+ },
210
+ "model.layers.7.self_attn.q_proj": {
211
+ "group_size": 32,
212
+ "bits": 6
213
+ },
214
+ "model.layers.7.self_attn.k_proj": {
215
+ "group_size": 32,
216
+ "bits": 6
217
+ },
218
+ "model.layers.7.self_attn.v_proj": {
219
+ "group_size": 32,
220
+ "bits": 8
221
+ },
222
+ "model.layers.7.self_attn.o_proj": {
223
+ "group_size": 32,
224
+ "bits": 6
225
+ },
226
+ "model.layers.7.mlp.router": {
227
+ "group_size": 32,
228
+ "bits": 6
229
+ },
230
+ "model.layers.8.self_attn.q_proj": {
231
+ "group_size": 32,
232
+ "bits": 6
233
+ },
234
+ "model.layers.8.self_attn.k_proj": {
235
+ "group_size": 32,
236
+ "bits": 6
237
+ },
238
+ "model.layers.8.self_attn.v_proj": {
239
+ "group_size": 32,
240
+ "bits": 8
241
+ },
242
+ "model.layers.8.self_attn.o_proj": {
243
+ "group_size": 32,
244
+ "bits": 6
245
+ },
246
+ "model.layers.8.mlp.router": {
247
+ "group_size": 32,
248
+ "bits": 6
249
+ },
250
+ "model.layers.9.self_attn.q_proj": {
251
+ "group_size": 32,
252
+ "bits": 6
253
+ },
254
+ "model.layers.9.self_attn.k_proj": {
255
+ "group_size": 32,
256
+ "bits": 6
257
+ },
258
+ "model.layers.9.self_attn.v_proj": {
259
+ "group_size": 32,
260
+ "bits": 8
261
+ },
262
+ "model.layers.9.self_attn.o_proj": {
263
+ "group_size": 32,
264
+ "bits": 6
265
+ },
266
+ "model.layers.9.mlp.router": {
267
+ "group_size": 32,
268
+ "bits": 6
269
+ },
270
+ "model.layers.10.self_attn.q_proj": {
271
+ "group_size": 32,
272
+ "bits": 6
273
+ },
274
+ "model.layers.10.self_attn.k_proj": {
275
+ "group_size": 32,
276
+ "bits": 6
277
+ },
278
+ "model.layers.10.self_attn.v_proj": {
279
+ "group_size": 32,
280
+ "bits": 8
281
+ },
282
+ "model.layers.10.self_attn.o_proj": {
283
+ "group_size": 32,
284
+ "bits": 6
285
+ },
286
+ "model.layers.10.mlp.router": {
287
+ "group_size": 32,
288
+ "bits": 6
289
+ },
290
+ "model.layers.11.self_attn.q_proj": {
291
+ "group_size": 32,
292
+ "bits": 6
293
+ },
294
+ "model.layers.11.self_attn.k_proj": {
295
+ "group_size": 32,
296
+ "bits": 6
297
+ },
298
+ "model.layers.11.self_attn.v_proj": {
299
+ "group_size": 32,
300
+ "bits": 8
301
+ },
302
+ "model.layers.11.self_attn.o_proj": {
303
+ "group_size": 32,
304
+ "bits": 6
305
+ },
306
+ "model.layers.11.mlp.router": {
307
+ "group_size": 32,
308
+ "bits": 6
309
+ },
310
+ "model.layers.12.self_attn.q_proj": {
311
+ "group_size": 32,
312
+ "bits": 6
313
+ },
314
+ "model.layers.12.self_attn.k_proj": {
315
+ "group_size": 32,
316
+ "bits": 6
317
+ },
318
+ "model.layers.12.self_attn.v_proj": {
319
+ "group_size": 32,
320
+ "bits": 8
321
+ },
322
+ "model.layers.12.self_attn.o_proj": {
323
+ "group_size": 32,
324
+ "bits": 6
325
+ },
326
+ "model.layers.12.mlp.router": {
327
+ "group_size": 32,
328
+ "bits": 6
329
+ },
330
+ "model.layers.13.self_attn.q_proj": {
331
+ "group_size": 32,
332
+ "bits": 6
333
+ },
334
+ "model.layers.13.self_attn.k_proj": {
335
+ "group_size": 32,
336
+ "bits": 6
337
+ },
338
+ "model.layers.13.self_attn.v_proj": {
339
+ "group_size": 32,
340
+ "bits": 8
341
+ },
342
+ "model.layers.13.self_attn.o_proj": {
343
+ "group_size": 32,
344
+ "bits": 6
345
+ },
346
+ "model.layers.13.mlp.router": {
347
+ "group_size": 32,
348
+ "bits": 6
349
+ },
350
+ "model.layers.14.self_attn.q_proj": {
351
+ "group_size": 32,
352
+ "bits": 6
353
+ },
354
+ "model.layers.14.self_attn.k_proj": {
355
+ "group_size": 32,
356
+ "bits": 6
357
+ },
358
+ "model.layers.14.self_attn.v_proj": {
359
+ "group_size": 32,
360
+ "bits": 8
361
+ },
362
+ "model.layers.14.self_attn.o_proj": {
363
+ "group_size": 32,
364
+ "bits": 6
365
+ },
366
+ "model.layers.14.mlp.router": {
367
+ "group_size": 32,
368
+ "bits": 6
369
+ },
370
+ "model.layers.15.self_attn.q_proj": {
371
+ "group_size": 32,
372
+ "bits": 6
373
+ },
374
+ "model.layers.15.self_attn.k_proj": {
375
+ "group_size": 32,
376
+ "bits": 6
377
+ },
378
+ "model.layers.15.self_attn.v_proj": {
379
+ "group_size": 32,
380
+ "bits": 8
381
+ },
382
+ "model.layers.15.self_attn.o_proj": {
383
+ "group_size": 32,
384
+ "bits": 6
385
+ },
386
+ "model.layers.15.mlp.router": {
387
+ "group_size": 32,
388
+ "bits": 6
389
+ },
390
+ "model.layers.16.self_attn.q_proj": {
391
+ "group_size": 32,
392
+ "bits": 6
393
+ },
394
+ "model.layers.16.self_attn.k_proj": {
395
+ "group_size": 32,
396
+ "bits": 6
397
+ },
398
+ "model.layers.16.self_attn.v_proj": {
399
+ "group_size": 32,
400
+ "bits": 8
401
+ },
402
+ "model.layers.16.self_attn.o_proj": {
403
+ "group_size": 32,
404
+ "bits": 6
405
+ },
406
+ "model.layers.16.mlp.router": {
407
+ "group_size": 32,
408
+ "bits": 6
409
+ },
410
+ "model.layers.17.self_attn.q_proj": {
411
+ "group_size": 32,
412
+ "bits": 6
413
+ },
414
+ "model.layers.17.self_attn.k_proj": {
415
+ "group_size": 32,
416
+ "bits": 6
417
+ },
418
+ "model.layers.17.self_attn.v_proj": {
419
+ "group_size": 32,
420
+ "bits": 8
421
+ },
422
+ "model.layers.17.self_attn.o_proj": {
423
+ "group_size": 32,
424
+ "bits": 6
425
+ },
426
+ "model.layers.17.mlp.router": {
427
+ "group_size": 32,
428
+ "bits": 6
429
+ },
430
+ "model.layers.18.self_attn.q_proj": {
431
+ "group_size": 32,
432
+ "bits": 6
433
+ },
434
+ "model.layers.18.self_attn.k_proj": {
435
+ "group_size": 32,
436
+ "bits": 6
437
+ },
438
+ "model.layers.18.self_attn.v_proj": {
439
+ "group_size": 32,
440
+ "bits": 8
441
+ },
442
+ "model.layers.18.self_attn.o_proj": {
443
+ "group_size": 32,
444
+ "bits": 6
445
+ },
446
+ "model.layers.18.mlp.router": {
447
+ "group_size": 32,
448
+ "bits": 6
449
+ },
450
+ "model.layers.19.self_attn.q_proj": {
451
+ "group_size": 32,
452
+ "bits": 6
453
+ },
454
+ "model.layers.19.self_attn.k_proj": {
455
+ "group_size": 32,
456
+ "bits": 6
457
+ },
458
+ "model.layers.19.self_attn.v_proj": {
459
+ "group_size": 32,
460
+ "bits": 8
461
+ },
462
+ "model.layers.19.self_attn.o_proj": {
463
+ "group_size": 32,
464
+ "bits": 6
465
+ },
466
+ "model.layers.19.mlp.router": {
467
+ "group_size": 32,
468
+ "bits": 6
469
+ },
470
+ "model.layers.20.self_attn.q_proj": {
471
+ "group_size": 32,
472
+ "bits": 6
473
+ },
474
+ "model.layers.20.self_attn.k_proj": {
475
+ "group_size": 32,
476
+ "bits": 6
477
+ },
478
+ "model.layers.20.self_attn.v_proj": {
479
+ "group_size": 32,
480
+ "bits": 8
481
+ },
482
+ "model.layers.20.self_attn.o_proj": {
483
+ "group_size": 32,
484
+ "bits": 6
485
+ },
486
+ "model.layers.20.mlp.router": {
487
+ "group_size": 32,
488
+ "bits": 6
489
+ },
490
+ "model.layers.21.self_attn.q_proj": {
491
+ "group_size": 32,
492
+ "bits": 6
493
+ },
494
+ "model.layers.21.self_attn.k_proj": {
495
+ "group_size": 32,
496
+ "bits": 6
497
+ },
498
+ "model.layers.21.self_attn.v_proj": {
499
+ "group_size": 32,
500
+ "bits": 8
501
+ },
502
+ "model.layers.21.self_attn.o_proj": {
503
+ "group_size": 32,
504
+ "bits": 6
505
+ },
506
+ "model.layers.21.mlp.router": {
507
+ "group_size": 32,
508
+ "bits": 6
509
+ },
510
+ "model.layers.22.self_attn.q_proj": {
511
+ "group_size": 32,
512
+ "bits": 6
513
+ },
514
+ "model.layers.22.self_attn.k_proj": {
515
+ "group_size": 32,
516
+ "bits": 6
517
+ },
518
+ "model.layers.22.self_attn.v_proj": {
519
+ "group_size": 32,
520
+ "bits": 8
521
+ },
522
+ "model.layers.22.self_attn.o_proj": {
523
+ "group_size": 32,
524
+ "bits": 6
525
+ },
526
+ "model.layers.22.mlp.router": {
527
+ "group_size": 32,
528
+ "bits": 6
529
+ },
530
+ "model.layers.23.self_attn.q_proj": {
531
+ "group_size": 32,
532
+ "bits": 6
533
+ },
534
+ "model.layers.23.self_attn.k_proj": {
535
+ "group_size": 32,
536
+ "bits": 6
537
+ },
538
+ "model.layers.23.self_attn.v_proj": {
539
+ "group_size": 32,
540
+ "bits": 8
541
+ },
542
+ "model.layers.23.self_attn.o_proj": {
543
+ "group_size": 32,
544
+ "bits": 6
545
+ },
546
+ "model.layers.23.mlp.router": {
547
+ "group_size": 32,
548
+ "bits": 6
549
+ },
550
+ "model.layers.24.self_attn.q_proj": {
551
+ "group_size": 32,
552
+ "bits": 6
553
+ },
554
+ "model.layers.24.self_attn.k_proj": {
555
+ "group_size": 32,
556
+ "bits": 6
557
+ },
558
+ "model.layers.24.self_attn.v_proj": {
559
+ "group_size": 32,
560
+ "bits": 8
561
+ },
562
+ "model.layers.24.self_attn.o_proj": {
563
+ "group_size": 32,
564
+ "bits": 6
565
+ },
566
+ "model.layers.24.mlp.router": {
567
+ "group_size": 32,
568
+ "bits": 6
569
+ },
570
+ "model.layers.25.self_attn.q_proj": {
571
+ "group_size": 32,
572
+ "bits": 6
573
+ },
574
+ "model.layers.25.self_attn.k_proj": {
575
+ "group_size": 32,
576
+ "bits": 6
577
+ },
578
+ "model.layers.25.self_attn.v_proj": {
579
+ "group_size": 32,
580
+ "bits": 8
581
+ },
582
+ "model.layers.25.self_attn.o_proj": {
583
+ "group_size": 32,
584
+ "bits": 6
585
+ },
586
+ "model.layers.25.mlp.router": {
587
+ "group_size": 32,
588
+ "bits": 6
589
+ },
590
+ "model.layers.26.self_attn.q_proj": {
591
+ "group_size": 32,
592
+ "bits": 6
593
+ },
594
+ "model.layers.26.self_attn.k_proj": {
595
+ "group_size": 32,
596
+ "bits": 6
597
+ },
598
+ "model.layers.26.self_attn.v_proj": {
599
+ "group_size": 32,
600
+ "bits": 8
601
+ },
602
+ "model.layers.26.self_attn.o_proj": {
603
+ "group_size": 32,
604
+ "bits": 6
605
+ },
606
+ "model.layers.26.mlp.router": {
607
+ "group_size": 32,
608
+ "bits": 6
609
+ },
610
+ "model.layers.27.self_attn.q_proj": {
611
+ "group_size": 32,
612
+ "bits": 6
613
+ },
614
+ "model.layers.27.self_attn.k_proj": {
615
+ "group_size": 32,
616
+ "bits": 6
617
+ },
618
+ "model.layers.27.self_attn.v_proj": {
619
+ "group_size": 32,
620
+ "bits": 8
621
+ },
622
+ "model.layers.27.self_attn.o_proj": {
623
+ "group_size": 32,
624
+ "bits": 6
625
+ },
626
+ "model.layers.27.mlp.router": {
627
+ "group_size": 32,
628
+ "bits": 6
629
+ },
630
+ "model.layers.28.self_attn.q_proj": {
631
+ "group_size": 32,
632
+ "bits": 6
633
+ },
634
+ "model.layers.28.self_attn.k_proj": {
635
+ "group_size": 32,
636
+ "bits": 6
637
+ },
638
+ "model.layers.28.self_attn.v_proj": {
639
+ "group_size": 32,
640
+ "bits": 8
641
+ },
642
+ "model.layers.28.self_attn.o_proj": {
643
+ "group_size": 32,
644
+ "bits": 6
645
+ },
646
+ "model.layers.28.mlp.router": {
647
+ "group_size": 32,
648
+ "bits": 6
649
+ },
650
+ "model.layers.29.self_attn.q_proj": {
651
+ "group_size": 32,
652
+ "bits": 6
653
+ },
654
+ "model.layers.29.self_attn.k_proj": {
655
+ "group_size": 32,
656
+ "bits": 6
657
+ },
658
+ "model.layers.29.self_attn.v_proj": {
659
+ "group_size": 32,
660
+ "bits": 8
661
+ },
662
+ "model.layers.29.self_attn.o_proj": {
663
+ "group_size": 32,
664
+ "bits": 6
665
+ },
666
+ "model.layers.29.mlp.router": {
667
+ "group_size": 32,
668
+ "bits": 6
669
+ },
670
+ "model.layers.30.self_attn.q_proj": {
671
+ "group_size": 32,
672
+ "bits": 6
673
+ },
674
+ "model.layers.30.self_attn.k_proj": {
675
+ "group_size": 32,
676
+ "bits": 6
677
+ },
678
+ "model.layers.30.self_attn.v_proj": {
679
+ "group_size": 32,
680
+ "bits": 8
681
+ },
682
+ "model.layers.30.self_attn.o_proj": {
683
+ "group_size": 32,
684
+ "bits": 6
685
+ },
686
+ "model.layers.30.mlp.router": {
687
+ "group_size": 32,
688
+ "bits": 6
689
+ },
690
+ "model.layers.31.self_attn.q_proj": {
691
+ "group_size": 32,
692
+ "bits": 6
693
+ },
694
+ "model.layers.31.self_attn.k_proj": {
695
+ "group_size": 32,
696
+ "bits": 6
697
+ },
698
+ "model.layers.31.self_attn.v_proj": {
699
+ "group_size": 32,
700
+ "bits": 8
701
+ },
702
+ "model.layers.31.self_attn.o_proj": {
703
+ "group_size": 32,
704
+ "bits": 6
705
+ },
706
+ "model.layers.31.mlp.router": {
707
+ "group_size": 32,
708
+ "bits": 6
709
+ },
710
+ "model.layers.32.self_attn.q_proj": {
711
+ "group_size": 32,
712
+ "bits": 6
713
+ },
714
+ "model.layers.32.self_attn.k_proj": {
715
+ "group_size": 32,
716
+ "bits": 6
717
+ },
718
+ "model.layers.32.self_attn.v_proj": {
719
+ "group_size": 32,
720
+ "bits": 8
721
+ },
722
+ "model.layers.32.self_attn.o_proj": {
723
+ "group_size": 32,
724
+ "bits": 6
725
+ },
726
+ "model.layers.32.mlp.router": {
727
+ "group_size": 32,
728
+ "bits": 6
729
+ },
730
+ "model.layers.33.self_attn.q_proj": {
731
+ "group_size": 32,
732
+ "bits": 6
733
+ },
734
+ "model.layers.33.self_attn.k_proj": {
735
+ "group_size": 32,
736
+ "bits": 6
737
+ },
738
+ "model.layers.33.self_attn.v_proj": {
739
+ "group_size": 32,
740
+ "bits": 8
741
+ },
742
+ "model.layers.33.self_attn.o_proj": {
743
+ "group_size": 32,
744
+ "bits": 6
745
+ },
746
+ "model.layers.33.mlp.router": {
747
+ "group_size": 32,
748
+ "bits": 6
749
+ },
750
+ "model.layers.34.self_attn.q_proj": {
751
+ "group_size": 32,
752
+ "bits": 6
753
+ },
754
+ "model.layers.34.self_attn.k_proj": {
755
+ "group_size": 32,
756
+ "bits": 6
757
+ },
758
+ "model.layers.34.self_attn.v_proj": {
759
+ "group_size": 32,
760
+ "bits": 8
761
+ },
762
+ "model.layers.34.self_attn.o_proj": {
763
+ "group_size": 32,
764
+ "bits": 6
765
+ },
766
+ "model.layers.34.mlp.router": {
767
+ "group_size": 32,
768
+ "bits": 6
769
+ },
770
+ "model.layers.35.self_attn.q_proj": {
771
+ "group_size": 32,
772
+ "bits": 6
773
+ },
774
+ "model.layers.35.self_attn.k_proj": {
775
+ "group_size": 32,
776
+ "bits": 6
777
+ },
778
+ "model.layers.35.self_attn.v_proj": {
779
+ "group_size": 32,
780
+ "bits": 8
781
+ },
782
+ "model.layers.35.self_attn.o_proj": {
783
+ "group_size": 32,
784
+ "bits": 6
785
+ },
786
+ "model.layers.35.mlp.router": {
787
+ "group_size": 32,
788
+ "bits": 6
789
+ },
790
+ "lm_head": {
791
+ "group_size": 32,
792
+ "bits": 8
793
+ }
794
+ },
795
+ "quantization_config": {
796
+ "group_size": 32,
797
+ "bits": 4,
798
+ "mode": "mxfp4",
799
+ "model.embed_tokens": {
800
+ "group_size": 32,
801
+ "bits": 6
802
+ },
803
+ "model.layers.0.self_attn.q_proj": {
804
+ "group_size": 32,
805
+ "bits": 8
806
+ },
807
+ "model.layers.0.self_attn.k_proj": {
808
+ "group_size": 32,
809
+ "bits": 8
810
+ },
811
+ "model.layers.0.self_attn.v_proj": {
812
+ "group_size": 32,
813
+ "bits": 8
814
+ },
815
+ "model.layers.0.self_attn.o_proj": {
816
+ "group_size": 32,
817
+ "bits": 8
818
+ },
819
+ "model.layers.0.mlp.router": {
820
+ "group_size": 32,
821
+ "bits": 8
822
+ },
823
+ "model.layers.1.self_attn.q_proj": {
824
+ "group_size": 32,
825
+ "bits": 6
826
+ },
827
+ "model.layers.1.self_attn.k_proj": {
828
+ "group_size": 32,
829
+ "bits": 6
830
+ },
831
+ "model.layers.1.self_attn.v_proj": {
832
+ "group_size": 32,
833
+ "bits": 8
834
+ },
835
+ "model.layers.1.self_attn.o_proj": {
836
+ "group_size": 32,
837
+ "bits": 6
838
+ },
839
+ "model.layers.1.mlp.router": {
840
+ "group_size": 32,
841
+ "bits": 6
842
+ },
843
+ "model.layers.2.self_attn.q_proj": {
844
+ "group_size": 32,
845
+ "bits": 6
846
+ },
847
+ "model.layers.2.self_attn.k_proj": {
848
+ "group_size": 32,
849
+ "bits": 6
850
+ },
851
+ "model.layers.2.self_attn.v_proj": {
852
+ "group_size": 32,
853
+ "bits": 8
854
+ },
855
+ "model.layers.2.self_attn.o_proj": {
856
+ "group_size": 32,
857
+ "bits": 6
858
+ },
859
+ "model.layers.2.mlp.router": {
860
+ "group_size": 32,
861
+ "bits": 6
862
+ },
863
+ "model.layers.3.self_attn.q_proj": {
864
+ "group_size": 32,
865
+ "bits": 6
866
+ },
867
+ "model.layers.3.self_attn.k_proj": {
868
+ "group_size": 32,
869
+ "bits": 6
870
+ },
871
+ "model.layers.3.self_attn.v_proj": {
872
+ "group_size": 32,
873
+ "bits": 8
874
+ },
875
+ "model.layers.3.self_attn.o_proj": {
876
+ "group_size": 32,
877
+ "bits": 6
878
+ },
879
+ "model.layers.3.mlp.router": {
880
+ "group_size": 32,
881
+ "bits": 6
882
+ },
883
+ "model.layers.4.self_attn.q_proj": {
884
+ "group_size": 32,
885
+ "bits": 6
886
+ },
887
+ "model.layers.4.self_attn.k_proj": {
888
+ "group_size": 32,
889
+ "bits": 6
890
+ },
891
+ "model.layers.4.self_attn.v_proj": {
892
+ "group_size": 32,
893
+ "bits": 8
894
+ },
895
+ "model.layers.4.self_attn.o_proj": {
896
+ "group_size": 32,
897
+ "bits": 6
898
+ },
899
+ "model.layers.4.mlp.router": {
900
+ "group_size": 32,
901
+ "bits": 6
902
+ },
903
+ "model.layers.5.self_attn.q_proj": {
904
+ "group_size": 32,
905
+ "bits": 6
906
+ },
907
+ "model.layers.5.self_attn.k_proj": {
908
+ "group_size": 32,
909
+ "bits": 6
910
+ },
911
+ "model.layers.5.self_attn.v_proj": {
912
+ "group_size": 32,
913
+ "bits": 8
914
+ },
915
+ "model.layers.5.self_attn.o_proj": {
916
+ "group_size": 32,
917
+ "bits": 6
918
+ },
919
+ "model.layers.5.mlp.router": {
920
+ "group_size": 32,
921
+ "bits": 6
922
+ },
923
+ "model.layers.6.self_attn.q_proj": {
924
+ "group_size": 32,
925
+ "bits": 6
926
+ },
927
+ "model.layers.6.self_attn.k_proj": {
928
+ "group_size": 32,
929
+ "bits": 6
930
+ },
931
+ "model.layers.6.self_attn.v_proj": {
932
+ "group_size": 32,
933
+ "bits": 8
934
+ },
935
+ "model.layers.6.self_attn.o_proj": {
936
+ "group_size": 32,
937
+ "bits": 6
938
+ },
939
+ "model.layers.6.mlp.router": {
940
+ "group_size": 32,
941
+ "bits": 6
942
+ },
943
+ "model.layers.7.self_attn.q_proj": {
944
+ "group_size": 32,
945
+ "bits": 6
946
+ },
947
+ "model.layers.7.self_attn.k_proj": {
948
+ "group_size": 32,
949
+ "bits": 6
950
+ },
951
+ "model.layers.7.self_attn.v_proj": {
952
+ "group_size": 32,
953
+ "bits": 8
954
+ },
955
+ "model.layers.7.self_attn.o_proj": {
956
+ "group_size": 32,
957
+ "bits": 6
958
+ },
959
+ "model.layers.7.mlp.router": {
960
+ "group_size": 32,
961
+ "bits": 6
962
+ },
963
+ "model.layers.8.self_attn.q_proj": {
964
+ "group_size": 32,
965
+ "bits": 6
966
+ },
967
+ "model.layers.8.self_attn.k_proj": {
968
+ "group_size": 32,
969
+ "bits": 6
970
+ },
971
+ "model.layers.8.self_attn.v_proj": {
972
+ "group_size": 32,
973
+ "bits": 8
974
+ },
975
+ "model.layers.8.self_attn.o_proj": {
976
+ "group_size": 32,
977
+ "bits": 6
978
+ },
979
+ "model.layers.8.mlp.router": {
980
+ "group_size": 32,
981
+ "bits": 6
982
+ },
983
+ "model.layers.9.self_attn.q_proj": {
984
+ "group_size": 32,
985
+ "bits": 6
986
+ },
987
+ "model.layers.9.self_attn.k_proj": {
988
+ "group_size": 32,
989
+ "bits": 6
990
+ },
991
+ "model.layers.9.self_attn.v_proj": {
992
+ "group_size": 32,
993
+ "bits": 8
994
+ },
995
+ "model.layers.9.self_attn.o_proj": {
996
+ "group_size": 32,
997
+ "bits": 6
998
+ },
999
+ "model.layers.9.mlp.router": {
1000
+ "group_size": 32,
1001
+ "bits": 6
1002
+ },
1003
+ "model.layers.10.self_attn.q_proj": {
1004
+ "group_size": 32,
1005
+ "bits": 6
1006
+ },
1007
+ "model.layers.10.self_attn.k_proj": {
1008
+ "group_size": 32,
1009
+ "bits": 6
1010
+ },
1011
+ "model.layers.10.self_attn.v_proj": {
1012
+ "group_size": 32,
1013
+ "bits": 8
1014
+ },
1015
+ "model.layers.10.self_attn.o_proj": {
1016
+ "group_size": 32,
1017
+ "bits": 6
1018
+ },
1019
+ "model.layers.10.mlp.router": {
1020
+ "group_size": 32,
1021
+ "bits": 6
1022
+ },
1023
+ "model.layers.11.self_attn.q_proj": {
1024
+ "group_size": 32,
1025
+ "bits": 6
1026
+ },
1027
+ "model.layers.11.self_attn.k_proj": {
1028
+ "group_size": 32,
1029
+ "bits": 6
1030
+ },
1031
+ "model.layers.11.self_attn.v_proj": {
1032
+ "group_size": 32,
1033
+ "bits": 8
1034
+ },
1035
+ "model.layers.11.self_attn.o_proj": {
1036
+ "group_size": 32,
1037
+ "bits": 6
1038
+ },
1039
+ "model.layers.11.mlp.router": {
1040
+ "group_size": 32,
1041
+ "bits": 6
1042
+ },
1043
+ "model.layers.12.self_attn.q_proj": {
1044
+ "group_size": 32,
1045
+ "bits": 6
1046
+ },
1047
+ "model.layers.12.self_attn.k_proj": {
1048
+ "group_size": 32,
1049
+ "bits": 6
1050
+ },
1051
+ "model.layers.12.self_attn.v_proj": {
1052
+ "group_size": 32,
1053
+ "bits": 8
1054
+ },
1055
+ "model.layers.12.self_attn.o_proj": {
1056
+ "group_size": 32,
1057
+ "bits": 6
1058
+ },
1059
+ "model.layers.12.mlp.router": {
1060
+ "group_size": 32,
1061
+ "bits": 6
1062
+ },
1063
+ "model.layers.13.self_attn.q_proj": {
1064
+ "group_size": 32,
1065
+ "bits": 6
1066
+ },
1067
+ "model.layers.13.self_attn.k_proj": {
1068
+ "group_size": 32,
1069
+ "bits": 6
1070
+ },
1071
+ "model.layers.13.self_attn.v_proj": {
1072
+ "group_size": 32,
1073
+ "bits": 8
1074
+ },
1075
+ "model.layers.13.self_attn.o_proj": {
1076
+ "group_size": 32,
1077
+ "bits": 6
1078
+ },
1079
+ "model.layers.13.mlp.router": {
1080
+ "group_size": 32,
1081
+ "bits": 6
1082
+ },
1083
+ "model.layers.14.self_attn.q_proj": {
1084
+ "group_size": 32,
1085
+ "bits": 6
1086
+ },
1087
+ "model.layers.14.self_attn.k_proj": {
1088
+ "group_size": 32,
1089
+ "bits": 6
1090
+ },
1091
+ "model.layers.14.self_attn.v_proj": {
1092
+ "group_size": 32,
1093
+ "bits": 8
1094
+ },
1095
+ "model.layers.14.self_attn.o_proj": {
1096
+ "group_size": 32,
1097
+ "bits": 6
1098
+ },
1099
+ "model.layers.14.mlp.router": {
1100
+ "group_size": 32,
1101
+ "bits": 6
1102
+ },
1103
+ "model.layers.15.self_attn.q_proj": {
1104
+ "group_size": 32,
1105
+ "bits": 6
1106
+ },
1107
+ "model.layers.15.self_attn.k_proj": {
1108
+ "group_size": 32,
1109
+ "bits": 6
1110
+ },
1111
+ "model.layers.15.self_attn.v_proj": {
1112
+ "group_size": 32,
1113
+ "bits": 8
1114
+ },
1115
+ "model.layers.15.self_attn.o_proj": {
1116
+ "group_size": 32,
1117
+ "bits": 6
1118
+ },
1119
+ "model.layers.15.mlp.router": {
1120
+ "group_size": 32,
1121
+ "bits": 6
1122
+ },
1123
+ "model.layers.16.self_attn.q_proj": {
1124
+ "group_size": 32,
1125
+ "bits": 6
1126
+ },
1127
+ "model.layers.16.self_attn.k_proj": {
1128
+ "group_size": 32,
1129
+ "bits": 6
1130
+ },
1131
+ "model.layers.16.self_attn.v_proj": {
1132
+ "group_size": 32,
1133
+ "bits": 8
1134
+ },
1135
+ "model.layers.16.self_attn.o_proj": {
1136
+ "group_size": 32,
1137
+ "bits": 6
1138
+ },
1139
+ "model.layers.16.mlp.router": {
1140
+ "group_size": 32,
1141
+ "bits": 6
1142
+ },
1143
+ "model.layers.17.self_attn.q_proj": {
1144
+ "group_size": 32,
1145
+ "bits": 6
1146
+ },
1147
+ "model.layers.17.self_attn.k_proj": {
1148
+ "group_size": 32,
1149
+ "bits": 6
1150
+ },
1151
+ "model.layers.17.self_attn.v_proj": {
1152
+ "group_size": 32,
1153
+ "bits": 8
1154
+ },
1155
+ "model.layers.17.self_attn.o_proj": {
1156
+ "group_size": 32,
1157
+ "bits": 6
1158
+ },
1159
+ "model.layers.17.mlp.router": {
1160
+ "group_size": 32,
1161
+ "bits": 6
1162
+ },
1163
+ "model.layers.18.self_attn.q_proj": {
1164
+ "group_size": 32,
1165
+ "bits": 6
1166
+ },
1167
+ "model.layers.18.self_attn.k_proj": {
1168
+ "group_size": 32,
1169
+ "bits": 6
1170
+ },
1171
+ "model.layers.18.self_attn.v_proj": {
1172
+ "group_size": 32,
1173
+ "bits": 8
1174
+ },
1175
+ "model.layers.18.self_attn.o_proj": {
1176
+ "group_size": 32,
1177
+ "bits": 6
1178
+ },
1179
+ "model.layers.18.mlp.router": {
1180
+ "group_size": 32,
1181
+ "bits": 6
1182
+ },
1183
+ "model.layers.19.self_attn.q_proj": {
1184
+ "group_size": 32,
1185
+ "bits": 6
1186
+ },
1187
+ "model.layers.19.self_attn.k_proj": {
1188
+ "group_size": 32,
1189
+ "bits": 6
1190
+ },
1191
+ "model.layers.19.self_attn.v_proj": {
1192
+ "group_size": 32,
1193
+ "bits": 8
1194
+ },
1195
+ "model.layers.19.self_attn.o_proj": {
1196
+ "group_size": 32,
1197
+ "bits": 6
1198
+ },
1199
+ "model.layers.19.mlp.router": {
1200
+ "group_size": 32,
1201
+ "bits": 6
1202
+ },
1203
+ "model.layers.20.self_attn.q_proj": {
1204
+ "group_size": 32,
1205
+ "bits": 6
1206
+ },
1207
+ "model.layers.20.self_attn.k_proj": {
1208
+ "group_size": 32,
1209
+ "bits": 6
1210
+ },
1211
+ "model.layers.20.self_attn.v_proj": {
1212
+ "group_size": 32,
1213
+ "bits": 8
1214
+ },
1215
+ "model.layers.20.self_attn.o_proj": {
1216
+ "group_size": 32,
1217
+ "bits": 6
1218
+ },
1219
+ "model.layers.20.mlp.router": {
1220
+ "group_size": 32,
1221
+ "bits": 6
1222
+ },
1223
+ "model.layers.21.self_attn.q_proj": {
1224
+ "group_size": 32,
1225
+ "bits": 6
1226
+ },
1227
+ "model.layers.21.self_attn.k_proj": {
1228
+ "group_size": 32,
1229
+ "bits": 6
1230
+ },
1231
+ "model.layers.21.self_attn.v_proj": {
1232
+ "group_size": 32,
1233
+ "bits": 8
1234
+ },
1235
+ "model.layers.21.self_attn.o_proj": {
1236
+ "group_size": 32,
1237
+ "bits": 6
1238
+ },
1239
+ "model.layers.21.mlp.router": {
1240
+ "group_size": 32,
1241
+ "bits": 6
1242
+ },
1243
+ "model.layers.22.self_attn.q_proj": {
1244
+ "group_size": 32,
1245
+ "bits": 6
1246
+ },
1247
+ "model.layers.22.self_attn.k_proj": {
1248
+ "group_size": 32,
1249
+ "bits": 6
1250
+ },
1251
+ "model.layers.22.self_attn.v_proj": {
1252
+ "group_size": 32,
1253
+ "bits": 8
1254
+ },
1255
+ "model.layers.22.self_attn.o_proj": {
1256
+ "group_size": 32,
1257
+ "bits": 6
1258
+ },
1259
+ "model.layers.22.mlp.router": {
1260
+ "group_size": 32,
1261
+ "bits": 6
1262
+ },
1263
+ "model.layers.23.self_attn.q_proj": {
1264
+ "group_size": 32,
1265
+ "bits": 6
1266
+ },
1267
+ "model.layers.23.self_attn.k_proj": {
1268
+ "group_size": 32,
1269
+ "bits": 6
1270
+ },
1271
+ "model.layers.23.self_attn.v_proj": {
1272
+ "group_size": 32,
1273
+ "bits": 8
1274
+ },
1275
+ "model.layers.23.self_attn.o_proj": {
1276
+ "group_size": 32,
1277
+ "bits": 6
1278
+ },
1279
+ "model.layers.23.mlp.router": {
1280
+ "group_size": 32,
1281
+ "bits": 6
1282
+ },
1283
+ "model.layers.24.self_attn.q_proj": {
1284
+ "group_size": 32,
1285
+ "bits": 6
1286
+ },
1287
+ "model.layers.24.self_attn.k_proj": {
1288
+ "group_size": 32,
1289
+ "bits": 6
1290
+ },
1291
+ "model.layers.24.self_attn.v_proj": {
1292
+ "group_size": 32,
1293
+ "bits": 8
1294
+ },
1295
+ "model.layers.24.self_attn.o_proj": {
1296
+ "group_size": 32,
1297
+ "bits": 6
1298
+ },
1299
+ "model.layers.24.mlp.router": {
1300
+ "group_size": 32,
1301
+ "bits": 6
1302
+ },
1303
+ "model.layers.25.self_attn.q_proj": {
1304
+ "group_size": 32,
1305
+ "bits": 6
1306
+ },
1307
+ "model.layers.25.self_attn.k_proj": {
1308
+ "group_size": 32,
1309
+ "bits": 6
1310
+ },
1311
+ "model.layers.25.self_attn.v_proj": {
1312
+ "group_size": 32,
1313
+ "bits": 8
1314
+ },
1315
+ "model.layers.25.self_attn.o_proj": {
1316
+ "group_size": 32,
1317
+ "bits": 6
1318
+ },
1319
+ "model.layers.25.mlp.router": {
1320
+ "group_size": 32,
1321
+ "bits": 6
1322
+ },
1323
+ "model.layers.26.self_attn.q_proj": {
1324
+ "group_size": 32,
1325
+ "bits": 6
1326
+ },
1327
+ "model.layers.26.self_attn.k_proj": {
1328
+ "group_size": 32,
1329
+ "bits": 6
1330
+ },
1331
+ "model.layers.26.self_attn.v_proj": {
1332
+ "group_size": 32,
1333
+ "bits": 8
1334
+ },
1335
+ "model.layers.26.self_attn.o_proj": {
1336
+ "group_size": 32,
1337
+ "bits": 6
1338
+ },
1339
+ "model.layers.26.mlp.router": {
1340
+ "group_size": 32,
1341
+ "bits": 6
1342
+ },
1343
+ "model.layers.27.self_attn.q_proj": {
1344
+ "group_size": 32,
1345
+ "bits": 6
1346
+ },
1347
+ "model.layers.27.self_attn.k_proj": {
1348
+ "group_size": 32,
1349
+ "bits": 6
1350
+ },
1351
+ "model.layers.27.self_attn.v_proj": {
1352
+ "group_size": 32,
1353
+ "bits": 8
1354
+ },
1355
+ "model.layers.27.self_attn.o_proj": {
1356
+ "group_size": 32,
1357
+ "bits": 6
1358
+ },
1359
+ "model.layers.27.mlp.router": {
1360
+ "group_size": 32,
1361
+ "bits": 6
1362
+ },
1363
+ "model.layers.28.self_attn.q_proj": {
1364
+ "group_size": 32,
1365
+ "bits": 6
1366
+ },
1367
+ "model.layers.28.self_attn.k_proj": {
1368
+ "group_size": 32,
1369
+ "bits": 6
1370
+ },
1371
+ "model.layers.28.self_attn.v_proj": {
1372
+ "group_size": 32,
1373
+ "bits": 8
1374
+ },
1375
+ "model.layers.28.self_attn.o_proj": {
1376
+ "group_size": 32,
1377
+ "bits": 6
1378
+ },
1379
+ "model.layers.28.mlp.router": {
1380
+ "group_size": 32,
1381
+ "bits": 6
1382
+ },
1383
+ "model.layers.29.self_attn.q_proj": {
1384
+ "group_size": 32,
1385
+ "bits": 6
1386
+ },
1387
+ "model.layers.29.self_attn.k_proj": {
1388
+ "group_size": 32,
1389
+ "bits": 6
1390
+ },
1391
+ "model.layers.29.self_attn.v_proj": {
1392
+ "group_size": 32,
1393
+ "bits": 8
1394
+ },
1395
+ "model.layers.29.self_attn.o_proj": {
1396
+ "group_size": 32,
1397
+ "bits": 6
1398
+ },
1399
+ "model.layers.29.mlp.router": {
1400
+ "group_size": 32,
1401
+ "bits": 6
1402
+ },
1403
+ "model.layers.30.self_attn.q_proj": {
1404
+ "group_size": 32,
1405
+ "bits": 6
1406
+ },
1407
+ "model.layers.30.self_attn.k_proj": {
1408
+ "group_size": 32,
1409
+ "bits": 6
1410
+ },
1411
+ "model.layers.30.self_attn.v_proj": {
1412
+ "group_size": 32,
1413
+ "bits": 8
1414
+ },
1415
+ "model.layers.30.self_attn.o_proj": {
1416
+ "group_size": 32,
1417
+ "bits": 6
1418
+ },
1419
+ "model.layers.30.mlp.router": {
1420
+ "group_size": 32,
1421
+ "bits": 6
1422
+ },
1423
+ "model.layers.31.self_attn.q_proj": {
1424
+ "group_size": 32,
1425
+ "bits": 6
1426
+ },
1427
+ "model.layers.31.self_attn.k_proj": {
1428
+ "group_size": 32,
1429
+ "bits": 6
1430
+ },
1431
+ "model.layers.31.self_attn.v_proj": {
1432
+ "group_size": 32,
1433
+ "bits": 8
1434
+ },
1435
+ "model.layers.31.self_attn.o_proj": {
1436
+ "group_size": 32,
1437
+ "bits": 6
1438
+ },
1439
+ "model.layers.31.mlp.router": {
1440
+ "group_size": 32,
1441
+ "bits": 6
1442
+ },
1443
+ "model.layers.32.self_attn.q_proj": {
1444
+ "group_size": 32,
1445
+ "bits": 6
1446
+ },
1447
+ "model.layers.32.self_attn.k_proj": {
1448
+ "group_size": 32,
1449
+ "bits": 6
1450
+ },
1451
+ "model.layers.32.self_attn.v_proj": {
1452
+ "group_size": 32,
1453
+ "bits": 8
1454
+ },
1455
+ "model.layers.32.self_attn.o_proj": {
1456
+ "group_size": 32,
1457
+ "bits": 6
1458
+ },
1459
+ "model.layers.32.mlp.router": {
1460
+ "group_size": 32,
1461
+ "bits": 6
1462
+ },
1463
+ "model.layers.33.self_attn.q_proj": {
1464
+ "group_size": 32,
1465
+ "bits": 6
1466
+ },
1467
+ "model.layers.33.self_attn.k_proj": {
1468
+ "group_size": 32,
1469
+ "bits": 6
1470
+ },
1471
+ "model.layers.33.self_attn.v_proj": {
1472
+ "group_size": 32,
1473
+ "bits": 8
1474
+ },
1475
+ "model.layers.33.self_attn.o_proj": {
1476
+ "group_size": 32,
1477
+ "bits": 6
1478
+ },
1479
+ "model.layers.33.mlp.router": {
1480
+ "group_size": 32,
1481
+ "bits": 6
1482
+ },
1483
+ "model.layers.34.self_attn.q_proj": {
1484
+ "group_size": 32,
1485
+ "bits": 6
1486
+ },
1487
+ "model.layers.34.self_attn.k_proj": {
1488
+ "group_size": 32,
1489
+ "bits": 6
1490
+ },
1491
+ "model.layers.34.self_attn.v_proj": {
1492
+ "group_size": 32,
1493
+ "bits": 8
1494
+ },
1495
+ "model.layers.34.self_attn.o_proj": {
1496
+ "group_size": 32,
1497
+ "bits": 6
1498
+ },
1499
+ "model.layers.34.mlp.router": {
1500
+ "group_size": 32,
1501
+ "bits": 6
1502
+ },
1503
+ "model.layers.35.self_attn.q_proj": {
1504
+ "group_size": 32,
1505
+ "bits": 6
1506
+ },
1507
+ "model.layers.35.self_attn.k_proj": {
1508
+ "group_size": 32,
1509
+ "bits": 6
1510
+ },
1511
+ "model.layers.35.self_attn.v_proj": {
1512
+ "group_size": 32,
1513
+ "bits": 8
1514
+ },
1515
+ "model.layers.35.self_attn.o_proj": {
1516
+ "group_size": 32,
1517
+ "bits": 6
1518
+ },
1519
+ "model.layers.35.mlp.router": {
1520
+ "group_size": 32,
1521
+ "bits": 6
1522
+ },
1523
+ "lm_head": {
1524
+ "group_size": 32,
1525
+ "bits": 8
1526
+ }
1527
+ },
1528
+ "rms_norm_eps": 1e-05,
1529
+ "rope_scaling": {
1530
+ "beta_fast": 32.0,
1531
+ "beta_slow": 1.0,
1532
+ "factor": 32.0,
1533
+ "original_max_position_embeddings": 4096,
1534
+ "rope_type": "yarn",
1535
+ "truncate": false
1536
+ },
1537
+ "rope_theta": 150000,
1538
+ "router_aux_loss_coef": 0.9,
1539
+ "sliding_window": 128,
1540
+ "swiglu_limit": 7.0,
1541
+ "tie_word_embeddings": false,
1542
+ "transformers_version": "4.56.2",
1543
+ "unsloth_fixed": true,
1544
+ "use_cache": true,
1545
+ "vocab_size": 201088
1546
+ }
model-00001-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:973335bef749d3bd41b72d7777be9f42f5c0b940f62d8485480d63259fb91948
3
+ size 5102664724
model-00002-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d2d289e1d16a8c77e6d20c15a20796762e64e6b310cd5316f8e700ae2e55a0b
3
+ size 5154649571
model-00003-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e98bd7b600e09315a3dae9d668c204eba8644ad25d5972dca6a64c16eb3ce34
3
+ size 5154649583
model-00004-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04004c0128f4aa55823b4acce744b068904120e32513046a3d307e8f66253315
3
+ size 5154649572
model-00005-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6332fd3d31ae8a0bb6346ec62551f96a783c432b8f989d5775a5265753b428fa
3
+ size 5154649703
model-00006-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:699f09dbbbd3b3e27dca55c6e36435f894cead4ea25d59087e9a4be22a8228c7
3
+ size 5154649623
model-00007-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:346933c95efa0fc1e467590149a4acb2aa8b063752ddad723e7031b1fbe023e4
3
+ size 5154649699
model-00008-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2c0b6f5442ea8d3e08aa226e2ef3f18537167b41a5096f797f6d493ecc9ced6
3
+ size 5154649673
model-00009-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b0ac3c250cd731099afe5544b6a97b961b8e88e23578bb478a0fd3cd334698b
3
+ size 5154649671
model-00010-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae95fc4c226d45df8e8d9cd87f80ffaf35573dd884c4f0202a0798d86cb156f2
3
+ size 5154649687
model-00011-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fc39eb3af19920626cf5a3244ee9008766247a8be4c67043b6d059f4b2c9cf7
3
+ size 5154649703
model-00012-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39430d998a0502ee619f52454e3a664903751e4e67cca6f5d0437efc2c7f9ff8
3
+ size 5154649687
model-00013-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32385ac23808588498d9d0f1a007e10fbe38fdd049b2f47dc3224bf142219b8e
3
+ size 1216617255
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|startoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|return|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|reserved_200017|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0614fe83cadab421296e664e1f48f4261fa8fef6e03e63bb75c20f38e37d07d3
3
+ size 27868174
tokenizer_config.json ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 131072,
181
+ "pad_token": "<|reserved_200017|>",
182
+ "padding_side": "left",
183
+ "tokenizer_class": "PreTrainedTokenizerFast",
184
+ "unk_token": null
185
+ }