Bibun55 commited on
Commit
bd1a73f
·
verified ·
1 Parent(s): 924b25b

Initial model upload

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,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: text-generation
4
+ library_name: transformers
5
+ tags:
6
+ - vllm
7
+ ---
8
+
9
+ <p align="center">
10
+ <img alt="gpt-oss-120b" src="https://raw.githubusercontent.com/openai/gpt-oss/main/docs/gpt-oss-120b.svg">
11
+ </p>
12
+
13
+ <p align="center">
14
+ <a href="https://gpt-oss.com"><strong>Try gpt-oss</strong></a> ·
15
+ <a href="https://cookbook.openai.com/topic/gpt-oss"><strong>Guides</strong></a> ·
16
+ <a href="https://arxiv.org/abs/2508.10925"><strong>Model card</strong></a> ·
17
+ <a href="https://openai.com/index/introducing-gpt-oss/"><strong>OpenAI blog</strong></a>
18
+ </p>
19
+
20
+ <br>
21
+
22
+ Welcome to the gpt-oss series, [OpenAI’s open-weight models](https://openai.com/open-models) designed for powerful reasoning, agentic tasks, and versatile developer use cases.
23
+
24
+ We’re releasing two flavors of these open models:
25
+ - `gpt-oss-120b` — for production, general purpose, high reasoning use cases that fit into a single 80GB GPU (like NVIDIA H100 or AMD MI300X) (117B parameters with 5.1B active parameters)
26
+ - `gpt-oss-20b` — for lower latency, and local or specialized use cases (21B parameters with 3.6B active parameters)
27
+
28
+ Both models were trained on our [harmony response format](https://github.com/openai/harmony) and should only be used with the harmony format as it will not work correctly otherwise.
29
+
30
+
31
+ > [!NOTE]
32
+ > This model card is dedicated to the larger `gpt-oss-120b` model. Check out [`gpt-oss-20b`](https://huggingface.co/openai/gpt-oss-20b) for the smaller model.
33
+
34
+ # Highlights
35
+
36
+ * **Permissive Apache 2.0 license:** Build freely without copyleft restrictions or patent risk—ideal for experimentation, customization, and commercial deployment.
37
+ * **Configurable reasoning effort:** Easily adjust the reasoning effort (low, medium, high) based on your specific use case and latency needs.
38
+ * **Full chain-of-thought:** Gain complete access to the model’s reasoning process, facilitating easier debugging and increased trust in outputs. It’s not intended to be shown to end users.
39
+ * **Fine-tunable:** Fully customize models to your specific use case through parameter fine-tuning.
40
+ * **Agentic capabilities:** Use the models’ native capabilities for function calling, [web browsing](https://github.com/openai/gpt-oss/tree/main?tab=readme-ov-file#browser), [Python code execution](https://github.com/openai/gpt-oss/tree/main?tab=readme-ov-file#python), and Structured Outputs.
41
+ * **MXFP4 quantization:** The models were post-trained with MXFP4 quantization of the MoE weights, making `gpt-oss-120b` run on a single 80GB GPU (like NVIDIA H100 or AMD MI300X) and the `gpt-oss-20b` model run within 16GB of memory. All evals were performed with the same MXFP4 quantization.
42
+
43
+ ---
44
+
45
+ # Inference examples
46
+
47
+ ## Transformers
48
+
49
+ You can use `gpt-oss-120b` and `gpt-oss-20b` with Transformers. If you use the Transformers chat template, it will automatically apply the [harmony response format](https://github.com/openai/harmony). If you use `model.generate` directly, you need to apply the harmony format manually using the chat template or use our [openai-harmony](https://github.com/openai/harmony) package.
50
+
51
+ To get started, install the necessary dependencies to setup your environment:
52
+
53
+ ```
54
+ pip install -U transformers kernels torch
55
+ ```
56
+
57
+ Once, setup you can proceed to run the model by running the snippet below:
58
+
59
+ ```py
60
+ from transformers import pipeline
61
+ import torch
62
+
63
+ model_id = "openai/gpt-oss-120b"
64
+
65
+ pipe = pipeline(
66
+ "text-generation",
67
+ model=model_id,
68
+ torch_dtype="auto",
69
+ device_map="auto",
70
+ )
71
+
72
+ messages = [
73
+ {"role": "user", "content": "Explain quantum mechanics clearly and concisely."},
74
+ ]
75
+
76
+ outputs = pipe(
77
+ messages,
78
+ max_new_tokens=256,
79
+ )
80
+ print(outputs[0]["generated_text"][-1])
81
+ ```
82
+
83
+ Alternatively, you can run the model via [`Transformers Serve`](https://huggingface.co/docs/transformers/main/serving) to spin up a OpenAI-compatible webserver:
84
+
85
+ ```
86
+ transformers serve
87
+ transformers chat localhost:8000 --model-name-or-path openai/gpt-oss-120b
88
+ ```
89
+
90
+ [Learn more about how to use gpt-oss with Transformers.](https://cookbook.openai.com/articles/gpt-oss/run-transformers)
91
+
92
+ ## vLLM
93
+
94
+ vLLM recommends using [uv](https://docs.astral.sh/uv/) for Python dependency management. You can use vLLM to spin up an OpenAI-compatible webserver. The following command will automatically download the model and start the server.
95
+
96
+ ```bash
97
+ uv pip install --pre vllm==0.10.1+gptoss \
98
+ --extra-index-url https://wheels.vllm.ai/gpt-oss/ \
99
+ --extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
100
+ --index-strategy unsafe-best-match
101
+
102
+ vllm serve openai/gpt-oss-120b
103
+ ```
104
+
105
+ [Learn more about how to use gpt-oss with vLLM.](https://cookbook.openai.com/articles/gpt-oss/run-vllm)
106
+
107
+ ## PyTorch / Triton
108
+
109
+ To learn about how to use this model with PyTorch and Triton, check out our [reference implementations in the gpt-oss repository](https://github.com/openai/gpt-oss?tab=readme-ov-file#reference-pytorch-implementation).
110
+
111
+ ## Ollama
112
+
113
+ If you are trying to run gpt-oss on consumer hardware, you can use Ollama by running the following commands after [installing Ollama](https://ollama.com/download).
114
+
115
+ ```bash
116
+ # gpt-oss-120b
117
+ ollama pull gpt-oss:120b
118
+ ollama run gpt-oss:120b
119
+ ```
120
+
121
+ [Learn more about how to use gpt-oss with Ollama.](https://cookbook.openai.com/articles/gpt-oss/run-locally-ollama)
122
+
123
+ #### LM Studio
124
+
125
+ If you are using [LM Studio](https://lmstudio.ai/) you can use the following commands to download.
126
+
127
+ ```bash
128
+ # gpt-oss-120b
129
+ lms get openai/gpt-oss-120b
130
+ ```
131
+
132
+ Check out our [awesome list](https://github.com/openai/gpt-oss/blob/main/awesome-gpt-oss.md) for a broader collection of gpt-oss resources and inference partners.
133
+
134
+ ---
135
+
136
+ # Download the model
137
+
138
+ You can download the model weights from the [Hugging Face Hub](https://huggingface.co/collections/openai/gpt-oss-68911959590a1634ba11c7a4) directly from Hugging Face CLI:
139
+
140
+ ```shell
141
+ # gpt-oss-120b
142
+ huggingface-cli download openai/gpt-oss-120b --include "original/*" --local-dir gpt-oss-120b/
143
+ pip install gpt-oss
144
+ python -m gpt_oss.chat model/
145
+ ```
146
+
147
+ # Reasoning levels
148
+
149
+ You can adjust the reasoning level that suits your task across three levels:
150
+
151
+ * **Low:** Fast responses for general dialogue.
152
+ * **Medium:** Balanced speed and detail.
153
+ * **High:** Deep and detailed analysis.
154
+
155
+ The reasoning level can be set in the system prompts, e.g., "Reasoning: high".
156
+
157
+ # Tool use
158
+
159
+ The gpt-oss models are excellent for:
160
+ * Web browsing (using built-in browsing tools)
161
+ * Function calling with defined schemas
162
+ * Agentic operations like browser tasks
163
+
164
+ # Fine-tuning
165
+
166
+ Both gpt-oss models can be fine-tuned for a variety of specialized use cases.
167
+
168
+ This larger model `gpt-oss-120b` can be fine-tuned on a single H100 node, whereas the smaller [`gpt-oss-20b`](https://huggingface.co/openai/gpt-oss-20b) can even be fine-tuned on consumer hardware.
169
+
170
+ # Citation
171
+
172
+ ```bibtex
173
+ @misc{openai2025gptoss120bgptoss20bmodel,
174
+ title={gpt-oss-120b & gpt-oss-20b Model Card},
175
+ author={OpenAI},
176
+ year={2025},
177
+ eprint={2508.10925},
178
+ archivePrefix={arXiv},
179
+ primaryClass={cs.CL},
180
+ url={https://arxiv.org/abs/2508.10925},
181
+ }
182
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {#- Tool Definition Rendering ============================================== #}
9
+ {%- macro render_typescript_type(param_spec, required_params, is_nullable=false) -%}
10
+ {%- if param_spec.type == "array" -%}
11
+ {%- if param_spec['items'] -%}
12
+ {%- if param_spec['items']['type'] == "string" -%}
13
+ {{- "string[]" }}
14
+ {%- elif param_spec['items']['type'] == "number" -%}
15
+ {{- "number[]" }}
16
+ {%- elif param_spec['items']['type'] == "integer" -%}
17
+ {{- "number[]" }}
18
+ {%- elif param_spec['items']['type'] == "boolean" -%}
19
+ {{- "boolean[]" }}
20
+ {%- else -%}
21
+ {%- set inner_type = render_typescript_type(param_spec['items'], required_params) -%}
22
+ {%- if inner_type == "object | object" or inner_type|length > 50 -%}
23
+ {{- "any[]" }}
24
+ {%- else -%}
25
+ {{- inner_type + "[]" }}
26
+ {%- endif -%}
27
+ {%- endif -%}
28
+ {%- if param_spec.nullable -%}
29
+ {{- " | null" }}
30
+ {%- endif -%}
31
+ {%- else -%}
32
+ {{- "any[]" }}
33
+ {%- if param_spec.nullable -%}
34
+ {{- " | null" }}
35
+ {%- endif -%}
36
+ {%- endif -%}
37
+ {%- 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 -%}
38
+ {#- Handle array of types like ["object", "object"] from Union[dict, list] #}
39
+ {%- if param_spec.type | length > 1 -%}
40
+ {{- param_spec.type | join(" | ") }}
41
+ {%- else -%}
42
+ {{- param_spec.type[0] }}
43
+ {%- endif -%}
44
+ {%- elif param_spec.oneOf -%}
45
+ {#- Handle oneOf schemas - check for complex unions and fallback to any #}
46
+ {%- set has_object_variants = false -%}
47
+ {%- for variant in param_spec.oneOf -%}
48
+ {%- if variant.type == "object" -%}
49
+ {%- set has_object_variants = true -%}
50
+ {%- endif -%}
51
+ {%- endfor -%}
52
+ {%- if has_object_variants and param_spec.oneOf|length > 1 -%}
53
+ {{- "any" }}
54
+ {%- else -%}
55
+ {%- for variant in param_spec.oneOf -%}
56
+ {{- render_typescript_type(variant, required_params) -}}
57
+ {%- if variant.description %}
58
+ {{- "// " + variant.description }}
59
+ {%- endif -%}
60
+ {%- if variant.default is defined %}
61
+ {{ "// default: " + variant.default|tojson }}
62
+ {%- endif -%}
63
+ {%- if not loop.last %}
64
+ {{- " | " }}
65
+ {% endif -%}
66
+ {%- endfor -%}
67
+ {%- endif -%}
68
+ {%- elif param_spec.type == "string" -%}
69
+ {%- if param_spec.enum -%}
70
+ {{- '"' + param_spec.enum|join('" | "') + '"' -}}
71
+ {%- else -%}
72
+ {{- "string" }}
73
+ {%- if param_spec.nullable %}
74
+ {{- " | null" }}
75
+ {%- endif -%}
76
+ {%- endif -%}
77
+ {%- elif param_spec.type == "number" -%}
78
+ {{- "number" }}
79
+ {%- elif param_spec.type == "integer" -%}
80
+ {{- "number" }}
81
+ {%- elif param_spec.type == "boolean" -%}
82
+ {{- "boolean" }}
83
+ {%- elif param_spec.type == "object" -%}
84
+ {%- if param_spec.properties -%}
85
+ {{- "{\n" }}
86
+ {%- for prop_name, prop_spec in param_spec.properties.items() -%}
87
+ {{- prop_name -}}
88
+ {%- if prop_name not in (param_spec.required or []) -%}
89
+ {{- "?" }}
90
+ {%- endif -%}
91
+ {{- ": " }}
92
+ {{ render_typescript_type(prop_spec, param_spec.required or []) }}
93
+ {%- if not loop.last -%}
94
+ {{-", " }}
95
+ {%- endif -%}
96
+ {%- endfor -%}
97
+ {{- "}" }}
98
+ {%- else -%}
99
+ {{- "object" }}
100
+ {%- endif -%}
101
+ {%- else -%}
102
+ {{- "any" }}
103
+ {%- endif -%}
104
+ {%- endmacro -%}
105
+ {%- macro render_tool_namespace(namespace_name, tools) -%}
106
+ {{- "## " + namespace_name + "\n\n" }}
107
+ {{- "namespace " + namespace_name + " {\n\n" }}
108
+ {%- for tool in tools %}
109
+ {%- set tool = tool.function %}
110
+ {{- "// " + tool.description + "\n" }}
111
+ {{- "type "+ tool.name + " = " }}
112
+ {%- if tool.parameters and tool.parameters.properties %}
113
+ {{- "(_: {\n" }}
114
+ {%- for param_name, param_spec in tool.parameters.properties.items() %}
115
+ {%- if param_spec.description %}
116
+ {{- "// " + param_spec.description + "\n" }}
117
+ {%- endif %}
118
+ {{- param_name }}
119
+ {%- if param_name not in (tool.parameters.required or []) -%}
120
+ {{- "?" }}
121
+ {%- endif -%}
122
+ {{- ": " }}
123
+ {{- render_typescript_type(param_spec, tool.parameters.required or []) }}
124
+ {%- if param_spec.default is defined -%}
125
+ {%- if param_spec.enum %}
126
+ {{- ", // default: " + param_spec.default }}
127
+ {%- elif param_spec.oneOf %}
128
+ {{- "// default: " + param_spec.default }}
129
+ {%- else %}
130
+ {{- ", // default: " + param_spec.default|tojson }}
131
+ {%- endif -%}
132
+ {%- endif -%}
133
+ {%- if not loop.last %}
134
+ {{- ",\n" }}
135
+ {%- else %}
136
+ {{- ",\n" }}
137
+ {%- endif -%}
138
+ {%- endfor %}
139
+ {{- "}) => any;\n\n" }}
140
+ {%- else -%}
141
+ {{- "() => any;\n\n" }}
142
+ {%- endif -%}
143
+ {%- endfor %}
144
+ {{- "} // namespace " + namespace_name }}
145
+ {%- endmacro -%}
146
+ {%- macro render_builtin_tools(browser_tool, python_tool) -%}
147
+ {%- if browser_tool %}
148
+ {{- "## browser\n\n" }}
149
+ {{- "// Tool for browsing.\n" }}
150
+ {{- "// The `cursor` appears in brackets before each browsing display: `[{cursor}]`.\n" }}
151
+ {{- "// Cite information from the tool using the following format:\n" }}
152
+ {{- "// `【{cursor}†L{line_start}(-L{line_end})?】`, for example: `【6†L9-L11】` or `【8†L3】`.\n" }}
153
+ {{- "// Do not quote more than 10 words directly from the tool output.\n" }}
154
+ {{- "// sources=web (default: web)\n" }}
155
+ {{- "namespace browser {\n\n" }}
156
+ {{- "// Searches for information related to `query` and displays `topn` results.\n" }}
157
+ {{- "type search = (_: {\n" }}
158
+ {{- "query: string,\n" }}
159
+ {{- "topn?: number, // default: 10\n" }}
160
+ {{- "source?: string,\n" }}
161
+ {{- "}) => any;\n\n" }}
162
+ {{- "// Opens the link `id` from the page indicated by `cursor` starting at line number `loc`, showing `num_lines` lines.\n" }}
163
+ {{- "// Valid link ids are displayed with the formatting: `【{id}†.*】`.\n" }}
164
+ {{- "// If `cursor` is not provided, the most recent page is implied.\n" }}
165
+ {{- "// If `id` is a string, it is treated as a fully qualified URL associated with `source`.\n" }}
166
+ {{- "// 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" }}
167
+ {{- "// Use this function without `id` to scroll to a new location of an opened page.\n" }}
168
+ {{- "type open = (_: {\n" }}
169
+ {{- "id?: number | string, // default: -1\n" }}
170
+ {{- "cursor?: number, // default: -1\n" }}
171
+ {{- "loc?: number, // default: -1\n" }}
172
+ {{- "num_lines?: number, // default: -1\n" }}
173
+ {{- "view_source?: boolean, // default: false\n" }}
174
+ {{- "source?: string,\n" }}
175
+ {{- "}) => any;\n\n" }}
176
+ {{- "// Finds exact matches of `pattern` in the current page, or the page given by `cursor`.\n" }}
177
+ {{- "type find = (_: {\n" }}
178
+ {{- "pattern: string,\n" }}
179
+ {{- "cursor?: number, // default: -1\n" }}
180
+ {{- "}) => any;\n\n" }}
181
+ {{- "} // namespace browser\n\n" }}
182
+ {%- endif -%}
183
+ {%- if python_tool %}
184
+ {{- "## python\n\n" }}
185
+ {{- "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" }}
186
+ {{- "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" }}
187
+ {%- endif -%}
188
+ {%- endmacro -%}
189
+ {#- System Message Construction ============================================ #}
190
+ {%- macro build_system_message() -%}
191
+ {%- if model_identity is not defined %}
192
+ {%- set model_identity = "You are ChatGPT, a large language model trained by OpenAI." %}
193
+ {%- endif %}
194
+ {{- model_identity + "\n" }}
195
+ {{- "Knowledge cutoff: 2024-06\n" }}
196
+ {{- "Current date: " + strftime_now("%Y-%m-%d") + "\n\n" }}
197
+ {%- if reasoning_effort is not defined %}
198
+ {%- set reasoning_effort = "high" %}
199
+ {%- endif %}
200
+ {{- "Reasoning: " + reasoning_effort + "\n\n" }}
201
+ {%- if builtin_tools %}
202
+ {{- "# Tools\n\n" }}
203
+ {%- set available_builtin_tools = namespace(browser=false, python=false) %}
204
+ {%- for tool in builtin_tools %}
205
+ {%- if tool == "browser" %}
206
+ {%- set available_builtin_tools.browser = true %}
207
+ {%- elif tool == "python" %}
208
+ {%- set available_builtin_tools.python = true %}
209
+ {%- endif %}
210
+ {%- endfor %}
211
+ {{- render_builtin_tools(available_builtin_tools.browser, available_builtin_tools.python) }}
212
+ {%- endif -%}
213
+ {{- "# Valid channels: analysis, commentary, final. Channel must be included for every message." }}
214
+ {%- if tools -%}
215
+ {{- "\nCalls to these tools must go to the commentary channel: 'functions'." }}
216
+ {%- endif -%}
217
+ {%- endmacro -%}
218
+ {#- Main Template Logic ================================================= #}
219
+ {#- Set defaults #}
220
+ {#- Render system message #}
221
+ {{- "<|start|>system<|message|>" }}
222
+ {{- build_system_message() }}
223
+ {{- "<|end|>" }}
224
+ {#- Extract developer message #}
225
+ {%- if messages[0].role == "developer" or messages[0].role == "system" %}
226
+ {%- set developer_message = messages[0].content %}
227
+ {%- set loop_messages = messages[1:] %}
228
+ {%- else %}
229
+ {%- set developer_message = "" %}
230
+ {%- set loop_messages = messages %}
231
+ {%- endif %}
232
+ {#- Render developer message #}
233
+ {%- if developer_message or tools %}
234
+ {{- "<|start|>developer<|message|>" }}
235
+ {%- if developer_message %}
236
+ {{- "# Instructions\n\n" }}
237
+ {{- developer_message }}
238
+ {{- "\n\n" }}
239
+ {%- endif %}
240
+ {%- if tools -%}
241
+ {{- "# Tools\n\n" }}
242
+ {{- render_tool_namespace("functions", tools) }}
243
+ {%- endif -%}
244
+ {{- "<|end|>" }}
245
+ {%- endif %}
246
+ {#- Render messages #}
247
+ {%- set last_tool_call = namespace(name=none) %}
248
+ {%- for message in loop_messages -%}
249
+ {#- At this point only assistant/user/tool messages should remain #}
250
+ {%- if message.role == 'assistant' -%}
251
+ {#- Checks to ensure the messages are being passed in the format we expect #}
252
+ {%- if "content" in message %}
253
+ {%- if "<|channel|>analysis<|message|>" in message.content or "<|channel|>final<|message|>" in message.content %}
254
+ {{- 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.") }}
255
+ {%- endif %}
256
+ {%- endif %}
257
+ {%- if "thinking" in message %}
258
+ {%- if "<|channel|>analysis<|message|>" in message.thinking or "<|channel|>final<|message|>" in message.thinking %}
259
+ {{- 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.") }}
260
+ {%- endif %}
261
+ {%- endif %}
262
+ {%- if "tool_calls" in message %}
263
+ {#- We need very careful handling here - we want to drop the tool call analysis message if the model #}
264
+ {#- has output a later <|final|> message, but otherwise we want to retain it. This is the only case #}
265
+ {#- when we render CoT/analysis messages in inference. #}
266
+ {%- set future_final_message = namespace(found=false) %}
267
+ {%- for future_message in loop_messages[loop.index:] %}
268
+ {%- if future_message.role == 'assistant' and "tool_calls" not in future_message %}
269
+ {%- set future_final_message.found = true %}
270
+ {%- endif %}
271
+ {%- endfor %}
272
+ {#- We assume max 1 tool call per message, and so we infer the tool call name #}
273
+ {#- in "tool" messages from the most recent assistant tool call name #}
274
+ {%- set tool_call = message.tool_calls[0] %}
275
+ {%- if tool_call.function %}
276
+ {%- set tool_call = tool_call.function %}
277
+ {%- endif %}
278
+ {%- if message.content and message.thinking %}
279
+ {{- 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.") }}
280
+ {%- elif message.content and not future_final_message.found %}
281
+ {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.content + "<|end|>" }}
282
+ {%- elif message.thinking and not future_final_message.found %}
283
+ {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
284
+ {%- endif %}
285
+ {{- "<|start|>assistant to=" }}
286
+ {{- "functions." + tool_call.name + "<|channel|>commentary " }}
287
+ {{- (tool_call.content_type if tool_call.content_type is defined else "json") + "<|message|>" }}
288
+ {{- tool_call.arguments|tojson }}
289
+ {{- "<|call|>" }}
290
+ {%- set last_tool_call.name = tool_call.name %}
291
+ {%- elif loop.last and not add_generation_prompt %}
292
+ {#- Only render the CoT if the final turn is an assistant turn and add_generation_prompt is false #}
293
+ {#- This is a situation that should only occur in training, never in inference. #}
294
+ {%- if "thinking" in message %}
295
+ {{- "<|start|>assistant<|channel|>analysis<|message|>" + message.thinking + "<|end|>" }}
296
+ {%- endif %}
297
+ {#- <|return|> indicates the end of generation, but <|end|> does not #}
298
+ {#- <|return|> should never be an input to the model, but we include it as the final token #}
299
+ {#- when training, so the model learns to emit it. #}
300
+ {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|return|>" }}
301
+ {%- else %}
302
+ {#- CoT is dropped during all previous turns, so we never render it for inference #}
303
+ {{- "<|start|>assistant<|channel|>final<|message|>" + message.content + "<|end|>" }}
304
+ {%- set last_tool_call.name = none %}
305
+ {%- endif %}
306
+ {%- elif message.role == 'tool' -%}
307
+ {%- if last_tool_call.name is none %}
308
+ {{- raise_exception("Message has tool role, but there was no previous assistant message with a tool call!") }}
309
+ {%- endif %}
310
+ {{- "<|start|>functions." + last_tool_call.name }}
311
+ {{- " to=assistant<|channel|>commentary<|message|>" + message.content|tojson + "<|end|>" }}
312
+ {%- elif message.role == 'user' -%}
313
+ {{- "<|start|>user<|message|>" + message.content + "<|end|>" }}
314
+ {%- endif -%}
315
+ {%- endfor -%}
316
+ {#- Generation prompt #}
317
+ {%- if add_generation_prompt -%}
318
+ <|start|>assistant
319
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 199999,
62
+ "quantization_config": {
63
+ "modules_to_not_convert": [
64
+ "model.layers.*.self_attn",
65
+ "model.layers.*.mlp.router",
66
+ "model.embed_tokens",
67
+ "lm_head"
68
+ ],
69
+ "quant_method": "mxfp4"
70
+ },
71
+ "rms_norm_eps": 1e-05,
72
+ "rope_scaling": {
73
+ "beta_fast": 32.0,
74
+ "beta_slow": 1.0,
75
+ "factor": 32.0,
76
+ "original_max_position_embeddings": 4096,
77
+ "rope_type": "yarn",
78
+ "truncate": false
79
+ },
80
+ "rope_theta": 150000,
81
+ "router_aux_loss_coef": 0.9,
82
+ "sliding_window": 128,
83
+ "swiglu_limit": 7.0,
84
+ "tie_word_embeddings": false,
85
+ "transformers_version": "4.55.0.dev0",
86
+ "use_cache": true,
87
+ "vocab_size": 201088,
88
+ "author": "Bibun55"
89
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 199998,
3
+ "do_sample": false,
4
+ "eos_token_id": [
5
+ 200002,
6
+ 199999,
7
+ 200012
8
+ ],
9
+ "pad_token_id": 199999,
10
+ "transformers_version": "4.55.0.dev0",
11
+ "author": "Bibun55"
12
+ }
model-00000-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dd5e5f791fe1acc70cf0d82d1b5aa1555f04966bb0facaf28286e5ec8a2a32c
3
+ size 4625017896
model-00001-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef773889c86102cb2cfae0f516cd9d24c44224e4e125c1e90465ac2fd27838b2
3
+ size 4115586736
model-00002-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0fbe6efc32812cd68384f8ca902fe2dcd473543be60e5aae7333854fe1b079c
3
+ size 4625017888
model-00003-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d68592ea8f7695e2bcc9b5d5c2edefb8d2f6c7fe549c5e4ce907ce83bf538abe
3
+ size 4115586752
model-00004-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36c65c351865d9c794706deec11ab9469dd333e358604c334c0551dfb92e7e18
3
+ size 4625017896
model-00005-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82b04cccbb7fb336390829125decfaed7dc0103305ee70f339bebb77594af433
3
+ size 4115586696
model-00006-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c6850e77005fbf6100b1c38beacea6afb691aed7c0d09a54614a432b188b855
3
+ size 4625017856
model-00007-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:455084f6f475b7db4bd9b33bdc6bdb3d85b58c205afb2e8a9fd01e4101f4b699
3
+ size 4060267176
model-00008-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af59a67542837fe9535e2fbf7e675ddc2b168cdcefaa62532af668ffb3024fe1
3
+ size 4625017896
model-00009-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f92cb10c2901bfa425940e53c06437ad9529f450a9d93e5c947c76bc0141323
3
+ size 4170906304
model-00010-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b22df6e84d3e3148f5ed24587346c1b93b933f0d831d61f3322e035cd1d8026
3
+ size 4625017896
model-00011-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64f86ce8622b3102b093c8ee547ac18fc93de4731f9686bb27248bc5171114a6
3
+ size 4115586752
model-00012-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f16b695a90a043779c6d1273e4c6ddf7b557751c1d7687f172d236ba4eae8de
3
+ size 4064660808
model-00013-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0bda85797e1bff304c0e5be289d8fb29e681919310280e1edb41d6518ebf363
3
+ size 4625017896
model-00014-of-00014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2727804c872b196044f2a7322edf38cf72dcdf3b4642a5e2e494c60f6d8fd54
3
+ size 4115586736
model.safetensors.index.json ADDED
@@ -0,0 +1,695 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 65248815744
4
+ },
5
+ "weight_map": {
6
+ "model.layers.25.mlp.experts.gate_up_proj_blocks": "model-00000-of-00014.safetensors",
7
+ "model.layers.25.mlp.experts.gate_up_proj_scales": "model-00000-of-00014.safetensors",
8
+ "model.layers.25.mlp.experts.down_proj_bias": "model-00000-of-00014.safetensors",
9
+ "model.layers.25.mlp.experts.down_proj_blocks": "model-00000-of-00014.safetensors",
10
+ "model.layers.25.mlp.experts.down_proj_scales": "model-00000-of-00014.safetensors",
11
+ "model.layers.25.post_attention_layernorm.weight": "model-00000-of-00014.safetensors",
12
+ "model.layers.26.input_layernorm.weight": "model-00000-of-00014.safetensors",
13
+ "model.layers.26.self_attn.o_proj.bias": "model-00000-of-00014.safetensors",
14
+ "model.layers.26.self_attn.o_proj.weight": "model-00000-of-00014.safetensors",
15
+ "model.layers.26.self_attn.q_proj.bias": "model-00000-of-00014.safetensors",
16
+ "model.layers.26.self_attn.k_proj.bias": "model-00000-of-00014.safetensors",
17
+ "model.layers.26.self_attn.v_proj.bias": "model-00000-of-00014.safetensors",
18
+ "model.layers.26.self_attn.q_proj.weight": "model-00000-of-00014.safetensors",
19
+ "model.layers.26.self_attn.k_proj.weight": "model-00000-of-00014.safetensors",
20
+ "model.layers.26.self_attn.v_proj.weight": "model-00000-of-00014.safetensors",
21
+ "model.layers.26.self_attn.sinks": "model-00000-of-00014.safetensors",
22
+ "model.layers.26.mlp.router.bias": "model-00000-of-00014.safetensors",
23
+ "model.layers.26.mlp.router.weight": "model-00000-of-00014.safetensors",
24
+ "model.layers.26.mlp.experts.gate_up_proj_bias": "model-00000-of-00014.safetensors",
25
+ "model.layers.26.mlp.experts.gate_up_proj_blocks": "model-00000-of-00014.safetensors",
26
+ "model.layers.26.mlp.experts.gate_up_proj_scales": "model-00000-of-00014.safetensors",
27
+ "model.layers.26.mlp.experts.down_proj_bias": "model-00000-of-00014.safetensors",
28
+ "model.layers.26.mlp.experts.down_proj_blocks": "model-00000-of-00014.safetensors",
29
+ "model.layers.26.mlp.experts.down_proj_scales": "model-00000-of-00014.safetensors",
30
+ "model.layers.26.post_attention_layernorm.weight": "model-00000-of-00014.safetensors",
31
+ "model.layers.27.input_layernorm.weight": "model-00000-of-00014.safetensors",
32
+ "model.layers.27.self_attn.o_proj.bias": "model-00000-of-00014.safetensors",
33
+ "model.layers.27.self_attn.o_proj.weight": "model-00000-of-00014.safetensors",
34
+ "model.layers.27.self_attn.q_proj.bias": "model-00000-of-00014.safetensors",
35
+ "model.layers.27.self_attn.k_proj.bias": "model-00000-of-00014.safetensors",
36
+ "model.layers.27.self_attn.v_proj.bias": "model-00000-of-00014.safetensors",
37
+ "model.layers.27.self_attn.q_proj.weight": "model-00000-of-00014.safetensors",
38
+ "model.layers.27.self_attn.k_proj.weight": "model-00000-of-00014.safetensors",
39
+ "model.layers.27.self_attn.v_proj.weight": "model-00000-of-00014.safetensors",
40
+ "model.layers.27.self_attn.sinks": "model-00000-of-00014.safetensors",
41
+ "model.layers.27.mlp.router.bias": "model-00000-of-00014.safetensors",
42
+ "model.layers.27.mlp.router.weight": "model-00000-of-00014.safetensors",
43
+ "model.layers.27.mlp.experts.gate_up_proj_bias": "model-00000-of-00014.safetensors",
44
+ "model.layers.27.mlp.experts.gate_up_proj_blocks": "model-00000-of-00014.safetensors",
45
+ "model.layers.27.mlp.experts.gate_up_proj_scales": "model-00000-of-00014.safetensors",
46
+ "model.layers.27.mlp.experts.down_proj_bias": "model-00000-of-00014.safetensors",
47
+ "model.layers.27.mlp.experts.down_proj_blocks": "model-00001-of-00014.safetensors",
48
+ "model.layers.27.mlp.experts.down_proj_scales": "model-00001-of-00014.safetensors",
49
+ "model.layers.27.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
50
+ "model.layers.28.input_layernorm.weight": "model-00001-of-00014.safetensors",
51
+ "model.layers.28.self_attn.o_proj.bias": "model-00001-of-00014.safetensors",
52
+ "model.layers.28.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
53
+ "model.layers.28.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
54
+ "model.layers.28.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
55
+ "model.layers.28.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
56
+ "model.layers.28.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
57
+ "model.layers.28.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
58
+ "model.layers.28.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
59
+ "model.layers.28.self_attn.sinks": "model-00001-of-00014.safetensors",
60
+ "model.layers.28.mlp.router.bias": "model-00001-of-00014.safetensors",
61
+ "model.layers.28.mlp.router.weight": "model-00001-of-00014.safetensors",
62
+ "model.layers.28.mlp.experts.gate_up_proj_bias": "model-00001-of-00014.safetensors",
63
+ "model.layers.28.mlp.experts.gate_up_proj_blocks": "model-00001-of-00014.safetensors",
64
+ "model.layers.28.mlp.experts.gate_up_proj_scales": "model-00001-of-00014.safetensors",
65
+ "model.layers.28.mlp.experts.down_proj_bias": "model-00001-of-00014.safetensors",
66
+ "model.layers.28.mlp.experts.down_proj_blocks": "model-00001-of-00014.safetensors",
67
+ "model.layers.28.mlp.experts.down_proj_scales": "model-00001-of-00014.safetensors",
68
+ "model.layers.28.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
69
+ "model.layers.29.input_layernorm.weight": "model-00001-of-00014.safetensors",
70
+ "model.layers.29.self_attn.o_proj.bias": "model-00001-of-00014.safetensors",
71
+ "model.layers.29.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
72
+ "model.layers.29.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
73
+ "model.layers.29.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
74
+ "model.layers.29.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
75
+ "model.layers.29.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
76
+ "model.layers.29.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
77
+ "model.layers.29.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
78
+ "model.layers.29.self_attn.sinks": "model-00001-of-00014.safetensors",
79
+ "model.layers.29.mlp.router.bias": "model-00001-of-00014.safetensors",
80
+ "model.layers.29.mlp.router.weight": "model-00001-of-00014.safetensors",
81
+ "model.layers.29.mlp.experts.gate_up_proj_bias": "model-00001-of-00014.safetensors",
82
+ "model.layers.29.mlp.experts.gate_up_proj_blocks": "model-00001-of-00014.safetensors",
83
+ "model.layers.29.mlp.experts.gate_up_proj_scales": "model-00001-of-00014.safetensors",
84
+ "model.layers.29.mlp.experts.down_proj_bias": "model-00001-of-00014.safetensors",
85
+ "model.layers.29.mlp.experts.down_proj_blocks": "model-00001-of-00014.safetensors",
86
+ "model.layers.29.mlp.experts.down_proj_scales": "model-00001-of-00014.safetensors",
87
+ "model.layers.29.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
88
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00014.safetensors",
89
+ "model.layers.3.self_attn.o_proj.bias": "model-00001-of-00014.safetensors",
90
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
91
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
92
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
93
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
94
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
95
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
96
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
97
+ "model.layers.3.self_attn.sinks": "model-00001-of-00014.safetensors",
98
+ "model.layers.3.mlp.router.bias": "model-00001-of-00014.safetensors",
99
+ "model.layers.3.mlp.router.weight": "model-00001-of-00014.safetensors",
100
+ "model.layers.3.mlp.experts.gate_up_proj_bias": "model-00001-of-00014.safetensors",
101
+ "model.layers.3.mlp.experts.gate_up_proj_blocks": "model-00002-of-00014.safetensors",
102
+ "model.layers.3.mlp.experts.gate_up_proj_scales": "model-00002-of-00014.safetensors",
103
+ "model.layers.3.mlp.experts.down_proj_bias": "model-00002-of-00014.safetensors",
104
+ "model.layers.3.mlp.experts.down_proj_blocks": "model-00002-of-00014.safetensors",
105
+ "model.layers.3.mlp.experts.down_proj_scales": "model-00002-of-00014.safetensors",
106
+ "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
107
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00014.safetensors",
108
+ "model.layers.30.self_attn.o_proj.bias": "model-00002-of-00014.safetensors",
109
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
110
+ "model.layers.30.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
111
+ "model.layers.30.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
112
+ "model.layers.30.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
113
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
114
+ "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
115
+ "model.layers.30.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
116
+ "model.layers.30.self_attn.sinks": "model-00002-of-00014.safetensors",
117
+ "model.layers.30.mlp.router.bias": "model-00002-of-00014.safetensors",
118
+ "model.layers.30.mlp.router.weight": "model-00002-of-00014.safetensors",
119
+ "model.layers.30.mlp.experts.gate_up_proj_bias": "model-00002-of-00014.safetensors",
120
+ "model.layers.2.mlp.experts.gate_up_proj_blocks": "model-00002-of-00014.safetensors",
121
+ "model.layers.2.mlp.experts.gate_up_proj_scales": "model-00002-of-00014.safetensors",
122
+ "model.layers.2.mlp.experts.down_proj_bias": "model-00002-of-00014.safetensors",
123
+ "model.layers.2.mlp.experts.down_proj_blocks": "model-00002-of-00014.safetensors",
124
+ "model.layers.2.mlp.experts.down_proj_scales": "model-00002-of-00014.safetensors",
125
+ "model.layers.2.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
126
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00014.safetensors",
127
+ "model.layers.20.self_attn.o_proj.bias": "model-00002-of-00014.safetensors",
128
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
129
+ "model.layers.20.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
130
+ "model.layers.20.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
131
+ "model.layers.20.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
132
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
133
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
134
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
135
+ "model.layers.20.self_attn.sinks": "model-00002-of-00014.safetensors",
136
+ "model.layers.20.mlp.router.bias": "model-00002-of-00014.safetensors",
137
+ "model.layers.20.mlp.router.weight": "model-00002-of-00014.safetensors",
138
+ "model.layers.20.mlp.experts.gate_up_proj_bias": "model-00002-of-00014.safetensors",
139
+ "model.layers.20.mlp.experts.gate_up_proj_blocks": "model-00002-of-00014.safetensors",
140
+ "model.layers.20.mlp.experts.gate_up_proj_scales": "model-00002-of-00014.safetensors",
141
+ "model.layers.20.mlp.experts.down_proj_bias": "model-00002-of-00014.safetensors",
142
+ "model.layers.20.mlp.experts.down_proj_blocks": "model-00003-of-00014.safetensors",
143
+ "model.layers.20.mlp.experts.down_proj_scales": "model-00003-of-00014.safetensors",
144
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
145
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00014.safetensors",
146
+ "model.layers.21.self_attn.o_proj.bias": "model-00003-of-00014.safetensors",
147
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
148
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
149
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
150
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
151
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
152
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
153
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
154
+ "model.layers.21.self_attn.sinks": "model-00003-of-00014.safetensors",
155
+ "model.layers.21.mlp.router.bias": "model-00003-of-00014.safetensors",
156
+ "model.layers.21.mlp.router.weight": "model-00003-of-00014.safetensors",
157
+ "model.layers.21.mlp.experts.gate_up_proj_bias": "model-00003-of-00014.safetensors",
158
+ "model.layers.21.mlp.experts.gate_up_proj_blocks": "model-00003-of-00014.safetensors",
159
+ "model.layers.21.mlp.experts.gate_up_proj_scales": "model-00003-of-00014.safetensors",
160
+ "model.layers.21.mlp.experts.down_proj_bias": "model-00003-of-00014.safetensors",
161
+ "model.layers.21.mlp.experts.down_proj_blocks": "model-00003-of-00014.safetensors",
162
+ "model.layers.21.mlp.experts.down_proj_scales": "model-00003-of-00014.safetensors",
163
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
164
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00014.safetensors",
165
+ "model.layers.22.self_attn.o_proj.bias": "model-00003-of-00014.safetensors",
166
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
167
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
168
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
169
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
170
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
171
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
172
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
173
+ "model.layers.22.self_attn.sinks": "model-00003-of-00014.safetensors",
174
+ "model.layers.22.mlp.router.bias": "model-00003-of-00014.safetensors",
175
+ "model.layers.22.mlp.router.weight": "model-00003-of-00014.safetensors",
176
+ "model.layers.22.mlp.experts.gate_up_proj_bias": "model-00003-of-00014.safetensors",
177
+ "model.layers.22.mlp.experts.gate_up_proj_blocks": "model-00003-of-00014.safetensors",
178
+ "model.layers.22.mlp.experts.gate_up_proj_scales": "model-00003-of-00014.safetensors",
179
+ "model.layers.22.mlp.experts.down_proj_bias": "model-00003-of-00014.safetensors",
180
+ "model.layers.22.mlp.experts.down_proj_blocks": "model-00003-of-00014.safetensors",
181
+ "model.layers.22.mlp.experts.down_proj_scales": "model-00003-of-00014.safetensors",
182
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
183
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00014.safetensors",
184
+ "model.layers.23.self_attn.o_proj.bias": "model-00003-of-00014.safetensors",
185
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
186
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
187
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
188
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
189
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
190
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
191
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
192
+ "model.layers.23.self_attn.sinks": "model-00003-of-00014.safetensors",
193
+ "model.layers.23.mlp.router.bias": "model-00003-of-00014.safetensors",
194
+ "model.layers.23.mlp.router.weight": "model-00003-of-00014.safetensors",
195
+ "model.layers.23.mlp.experts.gate_up_proj_bias": "model-00003-of-00014.safetensors",
196
+ "model.layers.23.mlp.experts.gate_up_proj_blocks": "model-00004-of-00014.safetensors",
197
+ "model.layers.23.mlp.experts.gate_up_proj_scales": "model-00004-of-00014.safetensors",
198
+ "model.layers.23.mlp.experts.down_proj_bias": "model-00004-of-00014.safetensors",
199
+ "model.layers.23.mlp.experts.down_proj_blocks": "model-00004-of-00014.safetensors",
200
+ "model.layers.23.mlp.experts.down_proj_scales": "model-00004-of-00014.safetensors",
201
+ "model.layers.23.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
202
+ "model.layers.24.input_layernorm.weight": "model-00004-of-00014.safetensors",
203
+ "model.layers.24.self_attn.o_proj.bias": "model-00004-of-00014.safetensors",
204
+ "model.layers.24.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
205
+ "model.layers.24.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
206
+ "model.layers.24.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
207
+ "model.layers.24.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
208
+ "model.layers.24.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
209
+ "model.layers.24.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
210
+ "model.layers.24.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
211
+ "model.layers.24.self_attn.sinks": "model-00004-of-00014.safetensors",
212
+ "model.layers.24.mlp.router.bias": "model-00004-of-00014.safetensors",
213
+ "model.layers.24.mlp.router.weight": "model-00004-of-00014.safetensors",
214
+ "model.layers.24.mlp.experts.gate_up_proj_bias": "model-00004-of-00014.safetensors",
215
+ "model.layers.24.mlp.experts.gate_up_proj_blocks": "model-00004-of-00014.safetensors",
216
+ "model.layers.24.mlp.experts.gate_up_proj_scales": "model-00004-of-00014.safetensors",
217
+ "model.layers.24.mlp.experts.down_proj_bias": "model-00004-of-00014.safetensors",
218
+ "model.layers.24.mlp.experts.down_proj_blocks": "model-00004-of-00014.safetensors",
219
+ "model.layers.24.mlp.experts.down_proj_scales": "model-00004-of-00014.safetensors",
220
+ "model.layers.24.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
221
+ "model.layers.25.input_layernorm.weight": "model-00004-of-00014.safetensors",
222
+ "model.layers.25.self_attn.o_proj.bias": "model-00004-of-00014.safetensors",
223
+ "model.layers.25.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
224
+ "model.layers.25.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
225
+ "model.layers.25.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
226
+ "model.layers.25.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
227
+ "model.layers.25.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
228
+ "model.layers.25.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
229
+ "model.layers.25.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
230
+ "model.layers.25.self_attn.sinks": "model-00004-of-00014.safetensors",
231
+ "model.layers.25.mlp.router.bias": "model-00004-of-00014.safetensors",
232
+ "model.layers.25.mlp.router.weight": "model-00004-of-00014.safetensors",
233
+ "model.layers.25.mlp.experts.gate_up_proj_bias": "model-00004-of-00014.safetensors",
234
+ "model.layers.4.mlp.experts.gate_up_proj_blocks": "model-00004-of-00014.safetensors",
235
+ "model.layers.4.mlp.experts.gate_up_proj_scales": "model-00004-of-00014.safetensors",
236
+ "model.layers.4.mlp.experts.down_proj_bias": "model-00004-of-00014.safetensors",
237
+ "model.layers.4.mlp.experts.down_proj_blocks": "model-00005-of-00014.safetensors",
238
+ "model.layers.4.mlp.experts.down_proj_scales": "model-00005-of-00014.safetensors",
239
+ "model.layers.4.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
240
+ "model.layers.5.input_layernorm.weight": "model-00005-of-00014.safetensors",
241
+ "model.layers.5.self_attn.o_proj.bias": "model-00005-of-00014.safetensors",
242
+ "model.layers.5.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
243
+ "model.layers.5.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
244
+ "model.layers.5.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
245
+ "model.layers.5.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
246
+ "model.layers.5.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
247
+ "model.layers.5.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
248
+ "model.layers.5.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
249
+ "model.layers.5.self_attn.sinks": "model-00005-of-00014.safetensors",
250
+ "model.layers.5.mlp.router.bias": "model-00005-of-00014.safetensors",
251
+ "model.layers.5.mlp.router.weight": "model-00005-of-00014.safetensors",
252
+ "model.layers.5.mlp.experts.gate_up_proj_bias": "model-00005-of-00014.safetensors",
253
+ "model.layers.5.mlp.experts.gate_up_proj_blocks": "model-00005-of-00014.safetensors",
254
+ "model.layers.5.mlp.experts.gate_up_proj_scales": "model-00005-of-00014.safetensors",
255
+ "model.layers.5.mlp.experts.down_proj_bias": "model-00005-of-00014.safetensors",
256
+ "model.layers.5.mlp.experts.down_proj_blocks": "model-00005-of-00014.safetensors",
257
+ "model.layers.5.mlp.experts.down_proj_scales": "model-00005-of-00014.safetensors",
258
+ "model.layers.5.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
259
+ "model.layers.6.input_layernorm.weight": "model-00005-of-00014.safetensors",
260
+ "model.layers.6.self_attn.o_proj.bias": "model-00005-of-00014.safetensors",
261
+ "model.layers.6.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
262
+ "model.layers.6.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
263
+ "model.layers.6.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
264
+ "model.layers.6.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
265
+ "model.layers.6.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
266
+ "model.layers.6.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
267
+ "model.layers.6.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
268
+ "model.layers.6.self_attn.sinks": "model-00005-of-00014.safetensors",
269
+ "model.layers.6.mlp.router.bias": "model-00005-of-00014.safetensors",
270
+ "model.layers.6.mlp.router.weight": "model-00005-of-00014.safetensors",
271
+ "model.layers.6.mlp.experts.gate_up_proj_bias": "model-00005-of-00014.safetensors",
272
+ "model.layers.6.mlp.experts.gate_up_proj_blocks": "model-00005-of-00014.safetensors",
273
+ "model.layers.6.mlp.experts.gate_up_proj_scales": "model-00005-of-00014.safetensors",
274
+ "model.layers.6.mlp.experts.down_proj_bias": "model-00005-of-00014.safetensors",
275
+ "model.layers.6.mlp.experts.down_proj_blocks": "model-00005-of-00014.safetensors",
276
+ "model.layers.6.mlp.experts.down_proj_scales": "model-00005-of-00014.safetensors",
277
+ "model.layers.6.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
278
+ "model.layers.7.input_layernorm.weight": "model-00005-of-00014.safetensors",
279
+ "model.layers.7.self_attn.o_proj.bias": "model-00005-of-00014.safetensors",
280
+ "model.layers.7.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
281
+ "model.layers.7.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
282
+ "model.layers.7.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
283
+ "model.layers.7.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
284
+ "model.layers.7.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
285
+ "model.layers.7.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
286
+ "model.layers.7.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
287
+ "model.layers.7.self_attn.sinks": "model-00005-of-00014.safetensors",
288
+ "model.layers.7.mlp.router.bias": "model-00005-of-00014.safetensors",
289
+ "model.layers.7.mlp.router.weight": "model-00005-of-00014.safetensors",
290
+ "model.layers.7.mlp.experts.gate_up_proj_bias": "model-00005-of-00014.safetensors",
291
+ "model.layers.7.mlp.experts.gate_up_proj_blocks": "model-00006-of-00014.safetensors",
292
+ "model.layers.7.mlp.experts.gate_up_proj_scales": "model-00006-of-00014.safetensors",
293
+ "model.layers.7.mlp.experts.down_proj_bias": "model-00006-of-00014.safetensors",
294
+ "model.layers.7.mlp.experts.down_proj_blocks": "model-00006-of-00014.safetensors",
295
+ "model.layers.7.mlp.experts.down_proj_scales": "model-00006-of-00014.safetensors",
296
+ "model.layers.7.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
297
+ "model.layers.8.input_layernorm.weight": "model-00006-of-00014.safetensors",
298
+ "model.layers.8.self_attn.o_proj.bias": "model-00006-of-00014.safetensors",
299
+ "model.layers.8.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
300
+ "model.layers.8.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
301
+ "model.layers.8.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
302
+ "model.layers.8.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
303
+ "model.layers.8.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
304
+ "model.layers.8.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
305
+ "model.layers.8.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
306
+ "model.layers.8.self_attn.sinks": "model-00006-of-00014.safetensors",
307
+ "model.layers.8.mlp.router.bias": "model-00006-of-00014.safetensors",
308
+ "model.layers.8.mlp.router.weight": "model-00006-of-00014.safetensors",
309
+ "model.layers.8.mlp.experts.gate_up_proj_bias": "model-00006-of-00014.safetensors",
310
+ "model.layers.8.mlp.experts.gate_up_proj_blocks": "model-00006-of-00014.safetensors",
311
+ "model.layers.8.mlp.experts.gate_up_proj_scales": "model-00006-of-00014.safetensors",
312
+ "model.layers.8.mlp.experts.down_proj_bias": "model-00006-of-00014.safetensors",
313
+ "model.layers.8.mlp.experts.down_proj_blocks": "model-00006-of-00014.safetensors",
314
+ "model.layers.8.mlp.experts.down_proj_scales": "model-00006-of-00014.safetensors",
315
+ "model.layers.8.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
316
+ "model.layers.9.input_layernorm.weight": "model-00006-of-00014.safetensors",
317
+ "model.layers.9.self_attn.o_proj.bias": "model-00006-of-00014.safetensors",
318
+ "model.layers.9.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
319
+ "model.layers.9.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
320
+ "model.layers.9.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
321
+ "model.layers.9.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
322
+ "model.layers.9.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
323
+ "model.layers.9.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
324
+ "model.layers.9.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
325
+ "model.layers.9.self_attn.sinks": "model-00006-of-00014.safetensors",
326
+ "model.layers.9.mlp.router.bias": "model-00006-of-00014.safetensors",
327
+ "model.layers.9.mlp.router.weight": "model-00006-of-00014.safetensors",
328
+ "model.layers.9.mlp.experts.gate_up_proj_bias": "model-00006-of-00014.safetensors",
329
+ "model.layers.9.mlp.experts.gate_up_proj_blocks": "model-00006-of-00014.safetensors",
330
+ "model.layers.9.mlp.experts.gate_up_proj_scales": "model-00006-of-00014.safetensors",
331
+ "model.layers.9.mlp.experts.down_proj_bias": "model-00006-of-00014.safetensors",
332
+ "model.layers.9.mlp.experts.down_proj_blocks": "model-00007-of-00014.safetensors",
333
+ "model.layers.9.mlp.experts.down_proj_scales": "model-00007-of-00014.safetensors",
334
+ "model.layers.9.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
335
+ "model.layers.14.mlp.experts.gate_up_proj_blocks": "model-00007-of-00014.safetensors",
336
+ "model.layers.14.mlp.experts.gate_up_proj_scales": "model-00007-of-00014.safetensors",
337
+ "model.layers.14.mlp.experts.down_proj_bias": "model-00007-of-00014.safetensors",
338
+ "model.layers.14.mlp.experts.down_proj_blocks": "model-00007-of-00014.safetensors",
339
+ "model.layers.14.mlp.experts.down_proj_scales": "model-00007-of-00014.safetensors",
340
+ "model.layers.14.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
341
+ "model.layers.15.input_layernorm.weight": "model-00007-of-00014.safetensors",
342
+ "model.layers.15.self_attn.o_proj.bias": "model-00007-of-00014.safetensors",
343
+ "model.layers.15.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
344
+ "model.layers.15.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
345
+ "model.layers.15.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
346
+ "model.layers.15.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
347
+ "model.layers.15.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
348
+ "model.layers.15.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
349
+ "model.layers.15.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
350
+ "model.layers.15.self_attn.sinks": "model-00007-of-00014.safetensors",
351
+ "model.layers.15.mlp.router.bias": "model-00007-of-00014.safetensors",
352
+ "model.layers.15.mlp.router.weight": "model-00007-of-00014.safetensors",
353
+ "model.layers.15.mlp.experts.gate_up_proj_bias": "model-00007-of-00014.safetensors",
354
+ "model.layers.15.mlp.experts.gate_up_proj_blocks": "model-00007-of-00014.safetensors",
355
+ "model.layers.15.mlp.experts.gate_up_proj_scales": "model-00007-of-00014.safetensors",
356
+ "model.layers.15.mlp.experts.down_proj_bias": "model-00007-of-00014.safetensors",
357
+ "model.layers.15.mlp.experts.down_proj_blocks": "model-00007-of-00014.safetensors",
358
+ "model.layers.15.mlp.experts.down_proj_scales": "model-00007-of-00014.safetensors",
359
+ "model.layers.15.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
360
+ "model.layers.16.input_layernorm.weight": "model-00007-of-00014.safetensors",
361
+ "model.layers.16.self_attn.o_proj.bias": "model-00007-of-00014.safetensors",
362
+ "model.layers.16.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
363
+ "model.layers.16.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
364
+ "model.layers.16.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
365
+ "model.layers.16.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
366
+ "model.layers.16.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
367
+ "model.layers.16.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
368
+ "model.layers.16.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
369
+ "model.layers.16.self_attn.sinks": "model-00007-of-00014.safetensors",
370
+ "model.layers.16.mlp.router.bias": "model-00007-of-00014.safetensors",
371
+ "model.layers.16.mlp.router.weight": "model-00007-of-00014.safetensors",
372
+ "model.layers.16.mlp.experts.gate_up_proj_bias": "model-00007-of-00014.safetensors",
373
+ "model.layers.16.mlp.experts.gate_up_proj_blocks": "model-00008-of-00014.safetensors",
374
+ "model.layers.16.mlp.experts.gate_up_proj_scales": "model-00008-of-00014.safetensors",
375
+ "model.layers.16.mlp.experts.down_proj_bias": "model-00008-of-00014.safetensors",
376
+ "model.layers.16.mlp.experts.down_proj_blocks": "model-00008-of-00014.safetensors",
377
+ "model.layers.16.mlp.experts.down_proj_scales": "model-00008-of-00014.safetensors",
378
+ "model.layers.16.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
379
+ "model.layers.17.input_layernorm.weight": "model-00008-of-00014.safetensors",
380
+ "model.layers.17.self_attn.o_proj.bias": "model-00008-of-00014.safetensors",
381
+ "model.layers.17.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
382
+ "model.layers.17.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
383
+ "model.layers.17.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
384
+ "model.layers.17.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
385
+ "model.layers.17.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
386
+ "model.layers.17.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
387
+ "model.layers.17.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
388
+ "model.layers.17.self_attn.sinks": "model-00008-of-00014.safetensors",
389
+ "model.layers.17.mlp.router.bias": "model-00008-of-00014.safetensors",
390
+ "model.layers.17.mlp.router.weight": "model-00008-of-00014.safetensors",
391
+ "model.layers.17.mlp.experts.gate_up_proj_bias": "model-00008-of-00014.safetensors",
392
+ "model.layers.17.mlp.experts.gate_up_proj_blocks": "model-00008-of-00014.safetensors",
393
+ "model.layers.17.mlp.experts.gate_up_proj_scales": "model-00008-of-00014.safetensors",
394
+ "model.layers.17.mlp.experts.down_proj_bias": "model-00008-of-00014.safetensors",
395
+ "model.layers.17.mlp.experts.down_proj_blocks": "model-00008-of-00014.safetensors",
396
+ "model.layers.17.mlp.experts.down_proj_scales": "model-00008-of-00014.safetensors",
397
+ "model.layers.17.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
398
+ "model.layers.18.input_layernorm.weight": "model-00008-of-00014.safetensors",
399
+ "model.layers.18.self_attn.o_proj.bias": "model-00008-of-00014.safetensors",
400
+ "model.layers.18.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
401
+ "model.layers.18.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
402
+ "model.layers.18.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
403
+ "model.layers.18.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
404
+ "model.layers.18.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
405
+ "model.layers.18.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
406
+ "model.layers.18.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
407
+ "model.layers.18.self_attn.sinks": "model-00008-of-00014.safetensors",
408
+ "model.layers.18.mlp.router.bias": "model-00008-of-00014.safetensors",
409
+ "model.layers.18.mlp.router.weight": "model-00008-of-00014.safetensors",
410
+ "model.layers.18.mlp.experts.gate_up_proj_bias": "model-00008-of-00014.safetensors",
411
+ "model.layers.18.mlp.experts.gate_up_proj_blocks": "model-00008-of-00014.safetensors",
412
+ "model.layers.18.mlp.experts.gate_up_proj_scales": "model-00008-of-00014.safetensors",
413
+ "model.layers.18.mlp.experts.down_proj_bias": "model-00008-of-00014.safetensors",
414
+ "model.layers.18.mlp.experts.down_proj_blocks": "model-00009-of-00014.safetensors",
415
+ "model.layers.18.mlp.experts.down_proj_scales": "model-00009-of-00014.safetensors",
416
+ "model.layers.18.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
417
+ "model.layers.19.input_layernorm.weight": "model-00009-of-00014.safetensors",
418
+ "model.layers.19.self_attn.o_proj.bias": "model-00009-of-00014.safetensors",
419
+ "model.layers.19.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
420
+ "model.layers.19.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
421
+ "model.layers.19.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
422
+ "model.layers.19.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
423
+ "model.layers.19.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
424
+ "model.layers.19.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
425
+ "model.layers.19.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
426
+ "model.layers.19.self_attn.sinks": "model-00009-of-00014.safetensors",
427
+ "model.layers.19.mlp.router.bias": "model-00009-of-00014.safetensors",
428
+ "model.layers.19.mlp.router.weight": "model-00009-of-00014.safetensors",
429
+ "model.layers.19.mlp.experts.gate_up_proj_bias": "model-00009-of-00014.safetensors",
430
+ "model.layers.19.mlp.experts.gate_up_proj_blocks": "model-00009-of-00014.safetensors",
431
+ "model.layers.19.mlp.experts.gate_up_proj_scales": "model-00009-of-00014.safetensors",
432
+ "model.layers.19.mlp.experts.down_proj_bias": "model-00009-of-00014.safetensors",
433
+ "model.layers.19.mlp.experts.down_proj_blocks": "model-00009-of-00014.safetensors",
434
+ "model.layers.19.mlp.experts.down_proj_scales": "model-00009-of-00014.safetensors",
435
+ "model.layers.19.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
436
+ "model.layers.2.input_layernorm.weight": "model-00009-of-00014.safetensors",
437
+ "model.layers.2.self_attn.o_proj.bias": "model-00009-of-00014.safetensors",
438
+ "model.layers.2.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
439
+ "model.layers.2.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
440
+ "model.layers.2.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
441
+ "model.layers.2.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
442
+ "model.layers.2.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
443
+ "model.layers.2.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
444
+ "model.layers.2.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
445
+ "model.layers.2.self_attn.sinks": "model-00009-of-00014.safetensors",
446
+ "model.layers.2.mlp.router.bias": "model-00009-of-00014.safetensors",
447
+ "model.layers.2.mlp.router.weight": "model-00009-of-00014.safetensors",
448
+ "model.layers.2.mlp.experts.gate_up_proj_bias": "model-00009-of-00014.safetensors",
449
+ "model.layers.0.input_layernorm.weight": "model-00009-of-00014.safetensors",
450
+ "model.layers.0.self_attn.o_proj.bias": "model-00009-of-00014.safetensors",
451
+ "model.layers.0.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
452
+ "model.layers.0.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
453
+ "model.layers.0.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
454
+ "model.layers.0.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
455
+ "model.layers.0.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
456
+ "model.layers.0.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
457
+ "model.layers.0.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
458
+ "model.layers.0.self_attn.sinks": "model-00009-of-00014.safetensors",
459
+ "model.layers.0.mlp.router.bias": "model-00009-of-00014.safetensors",
460
+ "model.layers.0.mlp.router.weight": "model-00009-of-00014.safetensors",
461
+ "model.layers.0.mlp.experts.gate_up_proj_bias": "model-00009-of-00014.safetensors",
462
+ "model.layers.0.mlp.experts.gate_up_proj_blocks": "model-00009-of-00014.safetensors",
463
+ "model.layers.0.mlp.experts.gate_up_proj_scales": "model-00009-of-00014.safetensors",
464
+ "model.layers.0.mlp.experts.down_proj_bias": "model-00009-of-00014.safetensors",
465
+ "model.layers.0.mlp.experts.down_proj_blocks": "model-00009-of-00014.safetensors",
466
+ "model.layers.0.mlp.experts.down_proj_scales": "model-00009-of-00014.safetensors",
467
+ "model.layers.0.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
468
+ "model.layers.1.input_layernorm.weight": "model-00009-of-00014.safetensors",
469
+ "model.layers.1.self_attn.o_proj.bias": "model-00009-of-00014.safetensors",
470
+ "model.layers.1.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
471
+ "model.layers.1.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
472
+ "model.layers.1.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
473
+ "model.layers.1.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
474
+ "model.layers.1.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
475
+ "model.layers.1.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
476
+ "model.layers.1.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
477
+ "model.layers.1.self_attn.sinks": "model-00009-of-00014.safetensors",
478
+ "model.layers.1.mlp.router.bias": "model-00009-of-00014.safetensors",
479
+ "model.layers.1.mlp.router.weight": "model-00009-of-00014.safetensors",
480
+ "model.layers.1.mlp.experts.gate_up_proj_bias": "model-00009-of-00014.safetensors",
481
+ "model.layers.1.mlp.experts.gate_up_proj_blocks": "model-00010-of-00014.safetensors",
482
+ "model.layers.1.mlp.experts.gate_up_proj_scales": "model-00010-of-00014.safetensors",
483
+ "model.layers.1.mlp.experts.down_proj_bias": "model-00010-of-00014.safetensors",
484
+ "model.layers.1.mlp.experts.down_proj_blocks": "model-00010-of-00014.safetensors",
485
+ "model.layers.1.mlp.experts.down_proj_scales": "model-00010-of-00014.safetensors",
486
+ "model.layers.1.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
487
+ "model.layers.10.input_layernorm.weight": "model-00010-of-00014.safetensors",
488
+ "model.layers.10.self_attn.o_proj.bias": "model-00010-of-00014.safetensors",
489
+ "model.layers.10.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
490
+ "model.layers.10.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
491
+ "model.layers.10.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
492
+ "model.layers.10.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
493
+ "model.layers.10.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
494
+ "model.layers.10.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
495
+ "model.layers.10.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
496
+ "model.layers.10.self_attn.sinks": "model-00010-of-00014.safetensors",
497
+ "model.layers.10.mlp.router.bias": "model-00010-of-00014.safetensors",
498
+ "model.layers.10.mlp.router.weight": "model-00010-of-00014.safetensors",
499
+ "model.layers.10.mlp.experts.gate_up_proj_bias": "model-00010-of-00014.safetensors",
500
+ "model.layers.10.mlp.experts.gate_up_proj_blocks": "model-00010-of-00014.safetensors",
501
+ "model.layers.10.mlp.experts.gate_up_proj_scales": "model-00010-of-00014.safetensors",
502
+ "model.layers.10.mlp.experts.down_proj_bias": "model-00010-of-00014.safetensors",
503
+ "model.layers.10.mlp.experts.down_proj_blocks": "model-00010-of-00014.safetensors",
504
+ "model.layers.10.mlp.experts.down_proj_scales": "model-00010-of-00014.safetensors",
505
+ "model.layers.10.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
506
+ "model.layers.11.input_layernorm.weight": "model-00010-of-00014.safetensors",
507
+ "model.layers.11.self_attn.o_proj.bias": "model-00010-of-00014.safetensors",
508
+ "model.layers.11.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
509
+ "model.layers.11.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
510
+ "model.layers.11.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
511
+ "model.layers.11.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
512
+ "model.layers.11.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
513
+ "model.layers.11.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
514
+ "model.layers.11.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
515
+ "model.layers.11.self_attn.sinks": "model-00010-of-00014.safetensors",
516
+ "model.layers.11.mlp.router.bias": "model-00010-of-00014.safetensors",
517
+ "model.layers.11.mlp.router.weight": "model-00010-of-00014.safetensors",
518
+ "model.layers.11.mlp.experts.gate_up_proj_bias": "model-00010-of-00014.safetensors",
519
+ "model.layers.11.mlp.experts.gate_up_proj_blocks": "model-00010-of-00014.safetensors",
520
+ "model.layers.11.mlp.experts.gate_up_proj_scales": "model-00010-of-00014.safetensors",
521
+ "model.layers.11.mlp.experts.down_proj_bias": "model-00010-of-00014.safetensors",
522
+ "model.layers.11.mlp.experts.down_proj_blocks": "model-00011-of-00014.safetensors",
523
+ "model.layers.11.mlp.experts.down_proj_scales": "model-00011-of-00014.safetensors",
524
+ "model.layers.11.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
525
+ "model.layers.12.input_layernorm.weight": "model-00011-of-00014.safetensors",
526
+ "model.layers.12.self_attn.o_proj.bias": "model-00011-of-00014.safetensors",
527
+ "model.layers.12.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
528
+ "model.layers.12.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
529
+ "model.layers.12.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
530
+ "model.layers.12.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
531
+ "model.layers.12.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
532
+ "model.layers.12.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
533
+ "model.layers.12.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
534
+ "model.layers.12.self_attn.sinks": "model-00011-of-00014.safetensors",
535
+ "model.layers.12.mlp.router.bias": "model-00011-of-00014.safetensors",
536
+ "model.layers.12.mlp.router.weight": "model-00011-of-00014.safetensors",
537
+ "model.layers.12.mlp.experts.gate_up_proj_bias": "model-00011-of-00014.safetensors",
538
+ "model.layers.12.mlp.experts.gate_up_proj_blocks": "model-00011-of-00014.safetensors",
539
+ "model.layers.12.mlp.experts.gate_up_proj_scales": "model-00011-of-00014.safetensors",
540
+ "model.layers.12.mlp.experts.down_proj_bias": "model-00011-of-00014.safetensors",
541
+ "model.layers.12.mlp.experts.down_proj_blocks": "model-00011-of-00014.safetensors",
542
+ "model.layers.12.mlp.experts.down_proj_scales": "model-00011-of-00014.safetensors",
543
+ "model.layers.12.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
544
+ "model.layers.13.input_layernorm.weight": "model-00011-of-00014.safetensors",
545
+ "model.layers.13.self_attn.o_proj.bias": "model-00011-of-00014.safetensors",
546
+ "model.layers.13.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
547
+ "model.layers.13.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
548
+ "model.layers.13.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
549
+ "model.layers.13.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
550
+ "model.layers.13.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
551
+ "model.layers.13.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
552
+ "model.layers.13.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
553
+ "model.layers.13.self_attn.sinks": "model-00011-of-00014.safetensors",
554
+ "model.layers.13.mlp.router.bias": "model-00011-of-00014.safetensors",
555
+ "model.layers.13.mlp.router.weight": "model-00011-of-00014.safetensors",
556
+ "model.layers.13.mlp.experts.gate_up_proj_bias": "model-00011-of-00014.safetensors",
557
+ "model.layers.13.mlp.experts.gate_up_proj_blocks": "model-00011-of-00014.safetensors",
558
+ "model.layers.13.mlp.experts.gate_up_proj_scales": "model-00011-of-00014.safetensors",
559
+ "model.layers.13.mlp.experts.down_proj_bias": "model-00011-of-00014.safetensors",
560
+ "model.layers.13.mlp.experts.down_proj_blocks": "model-00011-of-00014.safetensors",
561
+ "model.layers.13.mlp.experts.down_proj_scales": "model-00011-of-00014.safetensors",
562
+ "model.layers.13.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
563
+ "model.layers.14.input_layernorm.weight": "model-00011-of-00014.safetensors",
564
+ "model.layers.14.self_attn.o_proj.bias": "model-00011-of-00014.safetensors",
565
+ "model.layers.14.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
566
+ "model.layers.14.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
567
+ "model.layers.14.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
568
+ "model.layers.14.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
569
+ "model.layers.14.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
570
+ "model.layers.14.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
571
+ "model.layers.14.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
572
+ "model.layers.14.self_attn.sinks": "model-00011-of-00014.safetensors",
573
+ "model.layers.14.mlp.router.bias": "model-00011-of-00014.safetensors",
574
+ "model.layers.14.mlp.router.weight": "model-00011-of-00014.safetensors",
575
+ "model.layers.14.mlp.experts.gate_up_proj_bias": "model-00011-of-00014.safetensors",
576
+ "model.embed_tokens.weight": "model-00012-of-00014.safetensors",
577
+ "model.norm.weight": "model-00012-of-00014.safetensors",
578
+ "lm_head.weight": "model-00012-of-00014.safetensors",
579
+ "model.layers.30.mlp.experts.gate_up_proj_blocks": "model-00012-of-00014.safetensors",
580
+ "model.layers.30.mlp.experts.gate_up_proj_scales": "model-00012-of-00014.safetensors",
581
+ "model.layers.30.mlp.experts.down_proj_bias": "model-00012-of-00014.safetensors",
582
+ "model.layers.30.mlp.experts.down_proj_blocks": "model-00012-of-00014.safetensors",
583
+ "model.layers.30.mlp.experts.down_proj_scales": "model-00012-of-00014.safetensors",
584
+ "model.layers.30.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
585
+ "model.layers.31.input_layernorm.weight": "model-00012-of-00014.safetensors",
586
+ "model.layers.31.self_attn.o_proj.bias": "model-00012-of-00014.safetensors",
587
+ "model.layers.31.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
588
+ "model.layers.31.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
589
+ "model.layers.31.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
590
+ "model.layers.31.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
591
+ "model.layers.31.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
592
+ "model.layers.31.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
593
+ "model.layers.31.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
594
+ "model.layers.31.self_attn.sinks": "model-00012-of-00014.safetensors",
595
+ "model.layers.31.mlp.router.bias": "model-00012-of-00014.safetensors",
596
+ "model.layers.31.mlp.router.weight": "model-00012-of-00014.safetensors",
597
+ "model.layers.31.mlp.experts.gate_up_proj_bias": "model-00012-of-00014.safetensors",
598
+ "model.layers.31.mlp.experts.gate_up_proj_blocks": "model-00013-of-00014.safetensors",
599
+ "model.layers.31.mlp.experts.gate_up_proj_scales": "model-00013-of-00014.safetensors",
600
+ "model.layers.31.mlp.experts.down_proj_bias": "model-00013-of-00014.safetensors",
601
+ "model.layers.31.mlp.experts.down_proj_blocks": "model-00013-of-00014.safetensors",
602
+ "model.layers.31.mlp.experts.down_proj_scales": "model-00013-of-00014.safetensors",
603
+ "model.layers.31.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
604
+ "model.layers.32.input_layernorm.weight": "model-00013-of-00014.safetensors",
605
+ "model.layers.32.self_attn.o_proj.bias": "model-00013-of-00014.safetensors",
606
+ "model.layers.32.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
607
+ "model.layers.32.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
608
+ "model.layers.32.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
609
+ "model.layers.32.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
610
+ "model.layers.32.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
611
+ "model.layers.32.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
612
+ "model.layers.32.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
613
+ "model.layers.32.self_attn.sinks": "model-00013-of-00014.safetensors",
614
+ "model.layers.32.mlp.router.bias": "model-00013-of-00014.safetensors",
615
+ "model.layers.32.mlp.router.weight": "model-00013-of-00014.safetensors",
616
+ "model.layers.32.mlp.experts.gate_up_proj_bias": "model-00013-of-00014.safetensors",
617
+ "model.layers.32.mlp.experts.gate_up_proj_blocks": "model-00013-of-00014.safetensors",
618
+ "model.layers.32.mlp.experts.gate_up_proj_scales": "model-00013-of-00014.safetensors",
619
+ "model.layers.32.mlp.experts.down_proj_bias": "model-00013-of-00014.safetensors",
620
+ "model.layers.32.mlp.experts.down_proj_blocks": "model-00013-of-00014.safetensors",
621
+ "model.layers.32.mlp.experts.down_proj_scales": "model-00013-of-00014.safetensors",
622
+ "model.layers.32.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
623
+ "model.layers.33.input_layernorm.weight": "model-00013-of-00014.safetensors",
624
+ "model.layers.33.self_attn.o_proj.bias": "model-00013-of-00014.safetensors",
625
+ "model.layers.33.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
626
+ "model.layers.33.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
627
+ "model.layers.33.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
628
+ "model.layers.33.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
629
+ "model.layers.33.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
630
+ "model.layers.33.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
631
+ "model.layers.33.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
632
+ "model.layers.33.self_attn.sinks": "model-00013-of-00014.safetensors",
633
+ "model.layers.33.mlp.router.bias": "model-00013-of-00014.safetensors",
634
+ "model.layers.33.mlp.router.weight": "model-00013-of-00014.safetensors",
635
+ "model.layers.33.mlp.experts.gate_up_proj_bias": "model-00013-of-00014.safetensors",
636
+ "model.layers.33.mlp.experts.gate_up_proj_blocks": "model-00013-of-00014.safetensors",
637
+ "model.layers.33.mlp.experts.gate_up_proj_scales": "model-00013-of-00014.safetensors",
638
+ "model.layers.33.mlp.experts.down_proj_bias": "model-00013-of-00014.safetensors",
639
+ "model.layers.33.mlp.experts.down_proj_blocks": "model-00014-of-00014.safetensors",
640
+ "model.layers.33.mlp.experts.down_proj_scales": "model-00014-of-00014.safetensors",
641
+ "model.layers.33.post_attention_layernorm.weight": "model-00014-of-00014.safetensors",
642
+ "model.layers.34.input_layernorm.weight": "model-00014-of-00014.safetensors",
643
+ "model.layers.34.self_attn.o_proj.bias": "model-00014-of-00014.safetensors",
644
+ "model.layers.34.self_attn.o_proj.weight": "model-00014-of-00014.safetensors",
645
+ "model.layers.34.self_attn.q_proj.bias": "model-00014-of-00014.safetensors",
646
+ "model.layers.34.self_attn.k_proj.bias": "model-00014-of-00014.safetensors",
647
+ "model.layers.34.self_attn.v_proj.bias": "model-00014-of-00014.safetensors",
648
+ "model.layers.34.self_attn.q_proj.weight": "model-00014-of-00014.safetensors",
649
+ "model.layers.34.self_attn.k_proj.weight": "model-00014-of-00014.safetensors",
650
+ "model.layers.34.self_attn.v_proj.weight": "model-00014-of-00014.safetensors",
651
+ "model.layers.34.self_attn.sinks": "model-00014-of-00014.safetensors",
652
+ "model.layers.34.mlp.router.bias": "model-00014-of-00014.safetensors",
653
+ "model.layers.34.mlp.router.weight": "model-00014-of-00014.safetensors",
654
+ "model.layers.34.mlp.experts.gate_up_proj_bias": "model-00014-of-00014.safetensors",
655
+ "model.layers.34.mlp.experts.gate_up_proj_blocks": "model-00014-of-00014.safetensors",
656
+ "model.layers.34.mlp.experts.gate_up_proj_scales": "model-00014-of-00014.safetensors",
657
+ "model.layers.34.mlp.experts.down_proj_bias": "model-00014-of-00014.safetensors",
658
+ "model.layers.34.mlp.experts.down_proj_blocks": "model-00014-of-00014.safetensors",
659
+ "model.layers.34.mlp.experts.down_proj_scales": "model-00014-of-00014.safetensors",
660
+ "model.layers.34.post_attention_layernorm.weight": "model-00014-of-00014.safetensors",
661
+ "model.layers.35.input_layernorm.weight": "model-00014-of-00014.safetensors",
662
+ "model.layers.35.self_attn.o_proj.bias": "model-00014-of-00014.safetensors",
663
+ "model.layers.35.self_attn.o_proj.weight": "model-00014-of-00014.safetensors",
664
+ "model.layers.35.self_attn.q_proj.bias": "model-00014-of-00014.safetensors",
665
+ "model.layers.35.self_attn.k_proj.bias": "model-00014-of-00014.safetensors",
666
+ "model.layers.35.self_attn.v_proj.bias": "model-00014-of-00014.safetensors",
667
+ "model.layers.35.self_attn.q_proj.weight": "model-00014-of-00014.safetensors",
668
+ "model.layers.35.self_attn.k_proj.weight": "model-00014-of-00014.safetensors",
669
+ "model.layers.35.self_attn.v_proj.weight": "model-00014-of-00014.safetensors",
670
+ "model.layers.35.self_attn.sinks": "model-00014-of-00014.safetensors",
671
+ "model.layers.35.mlp.router.bias": "model-00014-of-00014.safetensors",
672
+ "model.layers.35.mlp.router.weight": "model-00014-of-00014.safetensors",
673
+ "model.layers.35.mlp.experts.gate_up_proj_bias": "model-00014-of-00014.safetensors",
674
+ "model.layers.35.mlp.experts.gate_up_proj_blocks": "model-00014-of-00014.safetensors",
675
+ "model.layers.35.mlp.experts.gate_up_proj_scales": "model-00014-of-00014.safetensors",
676
+ "model.layers.35.mlp.experts.down_proj_bias": "model-00014-of-00014.safetensors",
677
+ "model.layers.35.mlp.experts.down_proj_blocks": "model-00014-of-00014.safetensors",
678
+ "model.layers.35.mlp.experts.down_proj_scales": "model-00014-of-00014.safetensors",
679
+ "model.layers.35.post_attention_layernorm.weight": "model-00014-of-00014.safetensors",
680
+ "model.layers.4.input_layernorm.weight": "model-00014-of-00014.safetensors",
681
+ "model.layers.4.self_attn.o_proj.bias": "model-00014-of-00014.safetensors",
682
+ "model.layers.4.self_attn.o_proj.weight": "model-00014-of-00014.safetensors",
683
+ "model.layers.4.self_attn.q_proj.bias": "model-00014-of-00014.safetensors",
684
+ "model.layers.4.self_attn.k_proj.bias": "model-00014-of-00014.safetensors",
685
+ "model.layers.4.self_attn.v_proj.bias": "model-00014-of-00014.safetensors",
686
+ "model.layers.4.self_attn.q_proj.weight": "model-00014-of-00014.safetensors",
687
+ "model.layers.4.self_attn.k_proj.weight": "model-00014-of-00014.safetensors",
688
+ "model.layers.4.self_attn.v_proj.weight": "model-00014-of-00014.safetensors",
689
+ "model.layers.4.self_attn.sinks": "model-00014-of-00014.safetensors",
690
+ "model.layers.4.mlp.router.bias": "model-00014-of-00014.safetensors",
691
+ "model.layers.4.mlp.router.weight": "model-00014-of-00014.safetensors",
692
+ "model.layers.4.mlp.experts.gate_up_proj_bias": "model-00014-of-00014.safetensors"
693
+ },
694
+ "author": "Bibun55"
695
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|startoftext|>",
3
+ "eos_token": "<|return|>",
4
+ "pad_token": "<|endoftext|>",
5
+ "author": "Bibun55"
6
+ }
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,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "author": "Bibun55"
184
+ }