gabfssilva commited on
Commit
7fb4cd7
·
verified ·
1 Parent(s): 822d77a

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ license_link: https://huggingface.co/tencent/Hy3/blob/main/LICENSE
4
+ base_model: tencent/Hy3
5
+ base_model_relation: quantized
6
+ library_name: mlx
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - mlx
10
+ - oq
11
+ - oqe
12
+ - imatrix
13
+ - quantized
14
+ - moe
15
+ - hunyuan
16
+ ---
17
+ # Hy3 (MLX, oQ2e)
18
+
19
+ Calibrated 2-bit MLX quantization of [tencent/Hy3](https://huggingface.co/tencent/Hy3) (Hunyuan 3.0, 295B-A21B MoE), produced with **omlx** oQe at level 2 — **2.44 bits/weight effective, 90 GB on disk**. For Apple Silicon.
20
+
21
+ Same family as [mlx-community/Hy3-oQ2](https://huggingface.co/mlx-community/Hy3-oQ2), but **9 GB smaller** (90 GB vs 99 GB). Two changes get there:
22
+
23
+ - **`group_size=128` on the routed experts** instead of 64. Affine quantization stores an fp16 scale and bias per group, so the metadata costs `32 / group_size` bits per weight. Doubling the group halves that overhead: 0.50 → 0.25 bpw. The experts are 97.6% of the model (288B of 295B params), so this alone is the entire saving.
24
+ - **imatrix-weighted quantization (oQe)** to pay for it. A larger group means four quantization levels now have to cover 128 weights instead of 64 — one outlier stretches the scale for twice as many neighbours. oQe weights the error by a measured importance matrix, so within each group the bits land on the weights that actually matter.
25
+
26
+ Attention, embeddings and `lm_head` stay at **8-bit, group_size 64** — untouched from oQ2. The size reduction comes entirely from the expert FFN.
27
+
28
+ ## Regular oQ2 goes cuckoo at group_size=128
29
+
30
+ Without the imatrix, `group_size=128` at the same 90 GB is worse. Same prompt, same greedy decoding — plain gs=128 emits a dead statement and an off-by-one loop where this model (and oQ2) get it right:
31
+
32
+ ```python
33
+ # plain 2-bit gs=128, no imatrix — broken
34
+ if n == 1:
35
+ scalar = 1 # dead statement, no return
36
+ else:
37
+ a, b = 0, 1
38
+ for _ in range(2, n): # off-by-one: returns F(n-1)
39
+ a, b = b, a + b
40
+ return b
41
+ ```
42
+
43
+ The imatrix is what makes the larger group survivable.
44
+
45
+ ## Requirements
46
+
47
+ mlx-lm doesn't support the `hy_v3` architecture yet — there's an open PR: [mlx-lm#1211](https://github.com/ml-explore/mlx-lm/pull/1211). Until it lands, install mlx-lm from the PR branch, otherwise the model won't load:
48
+
49
+ ```bash
50
+ uv pip install "mlx-lm @ git+https://github.com/kernelpool/mlx-lm.git@add-hy3-preview"
51
+ ```
52
+
53
+ If you’re using `oMLX`, Hy3 is supported already.
54
+
55
+ ## How it was quantized
56
+
57
+ Hy3 is ~590 GB in BF16 — larger than RAM on a 128 GB machine — so neither of oQe's two calibration passes can load the source model. Both have to be routed around, and they fail differently.
58
+
59
+ 1. **Sensitivity** — pass an existing quant as `sensitivity_model_path` (I used oQ2). omlx's automatic fallback builds a uniform 4-bit proxy of a 295B model, which does not survive on this hardware.
60
+
61
+ 2. **imatrix** — the collection pass has the *same* problem, but `sensitivity_model_path` does not cover it: it is a separate code path with its own proxy builder. The way out is a cache hit, since a cached imatrix skips collection entirely. The cache key is the source checkpoint, the calibration set and the sample/sequence counts — **not** the bits or the group size, because per-column importance is orthogonal to how the weights are later grouped. So an imatrix collected once for oQ2e at `group_size=64` is valid, unchanged, for `group_size=128`.
62
+
63
+ One catch: Hy3 declares `num_nextn_predict_layers: 1`, and omlx force-recollects when a model declares MTP heads but the cache has no `mtp.*` entries — even on a signature match. With `preserve_mtp=False` the MTP tensors are stripped from the output anyway, so calibrating that head is work thrown away; skipping the recollect is the correct behaviour here, not a workaround.
64
+
65
+ With both passes served from cache, the quantization itself streams tensor-by-tensor and never holds the full model.
66
+
67
+ ## Memory and speed
68
+
69
+ Measured with the oMLX benchmark (Engine: Auto) on a **MacBook Pro M5 Max, 128 GB, 40-core GPU**. Generating 128 tokens, single request:
70
+
71
+ | context | TTFT | prompt | generation | peak memory |
72
+ |---|---|---|---|---|
73
+ | 1024 | 1.7 s | 618 tok/s | 29.7 tok/s | 84.7 GB |
74
+ | 4096 | 7.8 s | 523 tok/s | 25.2 tok/s | 86.2 GB |
75
+ | 8192 | 16.2 s | 504 tok/s | 23.0 tok/s | 87.9 GB |
76
+ | 16384 | 31.6 s | 519 tok/s | 19.8 tok/s | 89.6 GB |
77
+
78
+ The 1024 row is the mean of three runs; the longer contexts are single measurements.
79
+
80
+ Continuous batching at 1024-token prompts scales to **68 tok/s aggregate at 8 concurrent requests**:
81
+
82
+ | batch | generation | speedup |
83
+ |---|---|---|
84
+ | 1× | 29.7 tok/s | 1.00× |
85
+ | 2× | 42.2 tok/s | 1.44× |
86
+ | 4× | 54.6 tok/s | 1.83× |
87
+ | 8× | 67.6 tok/s | 2.28× |
88
+
89
+ The headroom is what the 9 GB bought. oQ2 peaks at 99 GB against the default Metal working-set cap of 107.5 GB on a 128 GB machine, so the KV cache runs out of room at long context; this one is still at 89.6 GB with a 16k prompt.
90
+
91
+ **TurboQuant KV did not pay off here** — it slowed down batched prompt processing, so these numbers are all without it. I don't have an explanation yet. With this much headroom you likely don't need it anyway.
92
+
93
+ ## Conversion check
94
+
95
+ Smoke-tested with `mlx_lm.generate`, greedy: an iterative Fibonacci function (correct, no corrupted tokens) and a backend-agnostic Keras 3 autoencoder (real bottleneck, `keras.ops` throughout, parses clean). oQ2 passes both as well; plain 2-bit `group_size=128` without the imatrix fails the first.
96
+
97
+ This is a smoke test, not a benchmark — **it does not establish parity with oQ2**. If you run an executable code benchmark on both, please post the numbers in a discussion.
98
+
99
+ ## Usage
100
+
101
+ ```bash
102
+ python -m mlx_lm generate --model mlx-community/Hy3-oQ2e --prompt "Explain Bayes' theorem in two sentences." --max-tokens 300
103
+ ```
104
+
105
+ ```python
106
+ from mlx_lm import load, generate
107
+ model, tokenizer = load("mlx-community/Hy3-oQ2e")
108
+ ```
109
+
110
+ ## License
111
+
112
+ [Apache-2.0](https://huggingface.co/tencent/Hy3/blob/main/LICENSE), inherited from the base model. Refer to the original model card for architecture, benchmarks, and intended use.
chat_template.jinja ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {#- ----------‑‑‑ special token variables ‑‑‑---------- -#}
2
+ {%- set HYTK = ':opensource' %}
3
+ {%- set eos_token = '<|hy_eos{}|>'.format(HYTK) %}
4
+ {%- set bos_token = '<|hy_begin_of_sentence{}|>'.format(HYTK) %}
5
+ {%- set pad_token = '<|hy_pad{}|>'.format(HYTK) %}
6
+ {%- set user_token = '<|hy_User{}|>'.format(HYTK) %}
7
+ {%- set assistant_token = '<|hy_Assistant{}|>'.format(HYTK) %}
8
+ {%- set think_begin_token = '<think{}>'.format(HYTK) %}
9
+ {%- set think_end_token = '</think{}>'.format(HYTK) %}
10
+ {%- set toolcalls_begin_token = '<tool_calls{}>'.format(HYTK) %}
11
+ {%- set toolcalls_end_token = '</tool_calls{}>'.format(HYTK) %}
12
+ {%- set toolcall_begin_token = '<tool_call{}>'.format(HYTK) %}
13
+ {%- set toolcall_end_token = '</tool_call{}>'.format(HYTK) %}
14
+ {%- set toolsep_token = '<tool_sep{}>'.format(HYTK) %}
15
+ {%- set argkey_begin_token = '<arg_key{}>'.format(HYTK) %}
16
+ {%- set argkey_end_token = '</arg_key{}>'.format(HYTK) %}
17
+ {%- set argvalue_begin_token = '<arg_value{}>'.format(HYTK) %}
18
+ {%- set argvalue_end_token = '</arg_value{}>'.format(HYTK) %}
19
+ {%- set toolresponses_begin_token = '<tool_responses{}>'.format(HYTK) %}
20
+ {%- set toolresponses_end_token = '</tool_responses{}>'.format(HYTK) %}
21
+ {%- set toolresponse_begin_token = '<tool_response{}>'.format(HYTK) %}
22
+ {%- set toolresponse_end_token = '</tool_response{}>'.format(HYTK) %}
23
+ {%- set reasoning_mode_token = '<|reasoning_mode{}|>'.format(HYTK) %}
24
+
25
+ {#- ----------‑‑‑ hyperparameters variables ‑‑‑---------- -#}
26
+ {%- if not add_generation_prompt is defined %}
27
+ {%- set add_generation_prompt = false %}
28
+ {%- endif %}
29
+ {%- if not preserved_thinking is defined %}
30
+ {%- if not tools %}
31
+ {%- set preserved_thinking = false %}
32
+ {%- else %}
33
+ {%- set preserved_thinking = true %}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- if not is_training is defined %}
37
+ {%- set is_training = false %}
38
+ {%- endif %}
39
+
40
+ {%- if not reasoning_effort is defined %}
41
+ {%- set reasoning_effort = 'no_think' %}
42
+ {%- elif reasoning_effort not in ['high', 'low', 'no_think'] %}
43
+ {%- if reasoning_effort is none %}
44
+ {{- raise_exception('reasoning_effort error : None, should be no_think/low/high') }}
45
+ {%- else %}
46
+ {{- raise_exception('reasoning_effort error : ' + reasoning_effort + ', should be no_think/low/high') }}
47
+ {%- endif %}
48
+ {%- endif %}
49
+
50
+ {%- if fallback_strategy is defined and fallback_strategy == 'reasoning_toolcall_retry' %}
51
+ {%- set reasoning_effort = 'high' %}
52
+ {%- set add_generation_prompt = false %}
53
+ {%- endif %}
54
+ {%- if not raw_last_assistant is defined %}
55
+ {%- set raw_last_assistant = false %}
56
+ {%- endif %}
57
+
58
+ {%- macro visible_text(content) -%}
59
+ {%- if content is string -%}
60
+ {{- content }}
61
+ {%- elif content is iterable and content is not mapping -%}
62
+ {%- for item in content -%}
63
+ {%- if item is mapping and item.type == 'text' -%}
64
+ {{- item.text }}
65
+ {%- elif item is string -%}
66
+ {{- item }}
67
+ {%- endif -%}
68
+ {%- endfor -%}
69
+ {%- elif content is none -%}
70
+ {{- '' }}
71
+ {%- else -%}
72
+ {{- content }}
73
+ {%- endif -%}
74
+ {%- endmacro -%}
75
+
76
+ {%- set ns = namespace(last_user_index=-1) %}
77
+ {%- set sp_ns = namespace(system_prompt='', is_first_sp=true) %}
78
+ {%- for message in messages %}
79
+ {%- if message['role'] == 'system' %}
80
+ {%- set sp_ns.system_prompt = sp_ns.system_prompt + visible_text(message['content']) %}
81
+ {%- endif %}
82
+ {%- if message['role'] == 'user' %}
83
+ {%- set ns.last_user_index = loop.index0 %}
84
+ {%- endif %}
85
+ {%- endfor %}
86
+ {%- if reasoning_effort is defined and reasoning_effort is string and reasoning_effort != '' and not tools %}
87
+ {%- set sp_ns.system_prompt = sp_ns.system_prompt + reasoning_mode_token + 'reasoning_effort:' + reasoning_effort %}
88
+ {%- endif %}
89
+ {{- bos_token }}
90
+ {{- sp_ns.system_prompt }}
91
+ {%- if tools %}
92
+ {%- if sp_ns.system_prompt != '' %}
93
+ {{- '\n\n# Tools\n\nYou may call one or more functions to assist with the user query.' }}
94
+ {%- else %}
95
+ {{- '# Tools\n\nYou may call one or more functions to assist with the user query.' }}
96
+ {%- endif %}
97
+ {{- '\n\nYou are provided with function signatures within <tools></tools> XML tags:' }}
98
+ {{- '\n<tools>\n' }}
99
+ {%- for tool in tools %}
100
+ {%- if loop.index0 > 0 %}
101
+ {{- '\n' }}
102
+ {%- endif %}
103
+ {{- tool | tojson }}
104
+ {%- endfor %}
105
+ {{- '\n</tools>\n\n' }}
106
+ {{- 'For function call returns, you should first print ' + toolcalls_begin_token + '\n' }}
107
+ {{- 'For each function call, you should return object like:\n' }}
108
+ {{- toolcall_begin_token + '{function-name}' + toolsep_token + '\n' }}
109
+ {{- argkey_begin_token + '{arg-key-1}' + argkey_end_token + '\n' }}
110
+ {{- argvalue_begin_token + '{arg-value-1}' + argvalue_end_token + '\n' }}
111
+ {{- argkey_begin_token + '{arg-key-2}' + argkey_end_token + '\n' }}
112
+ {{- argvalue_begin_token + '{arg-value-2}' + argvalue_end_token + '\n' }}
113
+ {{- '...\n' }}
114
+ {{- toolcall_end_token + '\n' }}
115
+ {%- if reasoning_effort is defined and reasoning_effort is string and reasoning_effort != '' %}
116
+ {{- 'At the end of function call returns, you should print ' + toolcalls_end_token + reasoning_mode_token + 'reasoning_effort:' + reasoning_effort }}
117
+ {%- else %}
118
+ {{- 'At the end of function call returns, you should print ' + toolcalls_end_token }}
119
+ {%- endif %}
120
+ {%- endif %}
121
+
122
+ {%- set prev_ns = namespace(is_tool=false, is_tool_first=true) %}
123
+ {%- set last_ns = namespace(last_is_assistant=false) %}
124
+ {%- for message in messages %}
125
+ {%- if message['role'] == 'user' %}
126
+ {%- if prev_ns.is_tool %}
127
+ {{- toolresponses_end_token }}
128
+ {%- endif %}
129
+ {{- user_token + visible_text(message['content']) }}
130
+ {%- set prev_ns.is_tool = false %}
131
+ {%- endif %}
132
+ {%- if message['role'] == 'assistant' %}
133
+ {%- if is_training %}
134
+ {%- if 'reasoning_content' in message and message['reasoning_content'] is string %}
135
+ {%- set rc = message['reasoning_content'] %}
136
+ {%- elif 'reasoning' in message and message['reasoning'] is string %}
137
+ {%- set rc = message['reasoning'] %}
138
+ {%- else %}
139
+ {%- set rc = none %}
140
+ {%- endif %}
141
+ {%- if rc is not none %}
142
+ {%- set content = think_begin_token + rc + think_end_token + visible_text(message['content']) %}
143
+ {%- else %}
144
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
145
+ {%- endif %}
146
+ {%- else %}
147
+ {%- if ((preserved_thinking is defined and preserved_thinking) or loop.index0 > ns.last_user_index) %}
148
+ {%- if 'reasoning_content' in message and message['reasoning_content'] is string %}
149
+ {%- set rc = message['reasoning_content'] %}
150
+ {%- elif 'reasoning' in message and message['reasoning'] is string %}
151
+ {%- set rc = message['reasoning'] %}
152
+ {%- else %}
153
+ {%- set rc = none %}
154
+ {%- endif %}
155
+ {%- if rc is not none %}
156
+ {%- set content = think_begin_token + rc + think_end_token + visible_text(message['content']) %}
157
+ {%- else %}
158
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
159
+ {%- endif %}
160
+ {%- else %}
161
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
162
+ {%- endif %}
163
+ {%- endif %}
164
+ {%- if prev_ns.is_tool %}
165
+ {{- toolresponses_end_token }}
166
+ {%- endif %}
167
+ {{- assistant_token }}
168
+ {%- if message['tool_calls'] is defined and message['tool_calls'] %}
169
+ {%- set prev_ns.is_tool_first = true %}
170
+ {{- content }}
171
+ {{- toolcalls_begin_token + '\n' }}
172
+ {%- for tool in message['tool_calls'] %}
173
+ {%- set arguments = tool['function']['arguments'] %}
174
+ {{- toolcall_begin_token + tool['function']['name'] + toolsep_token + '\n' }}
175
+ {%- for key, value in arguments.items() %}
176
+ {{- argkey_begin_token + key + argkey_end_token + '\n' }}
177
+ {%- if value is not string %}
178
+ {%- set value = value | tojson(ensure_ascii=False) %}
179
+ {%- endif %}
180
+ {{- argvalue_begin_token + value + argvalue_end_token + '\n' }}
181
+ {%- endfor %}
182
+ {{- toolcall_end_token + '\n' }}
183
+ {%- endfor %}
184
+ {{- toolcalls_end_token + eos_token }}
185
+ {%- else %}
186
+ {%- if loop.last and raw_last_assistant %}
187
+ {{- visible_text(message['content']) }}
188
+ {%- elif not loop.last or is_training %}
189
+ {{- content + eos_token }}
190
+ {%- else %}
191
+ {{- content }}
192
+ {%- endif %}
193
+ {%- endif %}
194
+ {%- set prev_ns.is_tool = false %}
195
+ {%- endif %}
196
+ {%- if message['role'] == 'tool' %}
197
+ {%- set prev_ns.is_tool = true %}
198
+ {%- if prev_ns.is_tool_first %}
199
+ {{- toolresponses_begin_token + '\n' }}
200
+ {%- set prev_ns.is_tool_first = false %}
201
+ {%- endif %}
202
+ {{- toolresponse_begin_token + '\n' + visible_text(message['content']) + '\n' + toolresponse_end_token + '\n' }}
203
+ {%- endif %}
204
+ {%- if loop.last and message['role'] == 'assistant' %}
205
+ {%- set last_ns.last_is_assistant = true %}
206
+ {%- endif %}
207
+
208
+ {%- endfor %}
209
+ {%- if prev_ns.is_tool %}
210
+ {{- toolresponses_end_token }}
211
+ {%- endif %}
212
+ {%- if add_generation_prompt %}
213
+ {%- if not last_ns.last_is_assistant %}
214
+ {%- if reasoning_effort is defined and reasoning_effort in ['low', 'high'] %}
215
+ {{- assistant_token + think_begin_token }}
216
+ {%- elif reasoning_effort is defined and reasoning_effort == 'no_think' %}
217
+ {{- assistant_token + think_begin_token + think_end_token }}
218
+ {%- else %}
219
+ {{- assistant_token }}
220
+ {%- endif %}
221
+ {%- endif %}
222
+ {%- endif %}
config.json ADDED
The diff for this file is too large to render. See raw diff
 
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 120000,
3
+ "do_sample": true,
4
+ "eos_token_id": 120025,
5
+ "pad_token_id": 120002,
6
+ "temperature": 0.9,
7
+ "top_k": -1,
8
+ "top_p": 1,
9
+ "transformers_version": "5.6.0"
10
+ }
model-00001-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53c5c237aa53ddb67108e39bde49be009f45ee823a701703cf1bfb6bb32208d9
3
+ size 5264213231
model-00002-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb394dc163a3b5088d1f8ee1074794c4306e77227284db619dff6e808b6c7e06
3
+ size 5006144011
model-00003-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3afec9110c5bff343d595fca0fb98635f211906c0e7ea037124f3b070896cd24
3
+ size 5083583062
model-00004-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:418ac6133b90617162e60298a60532282275382fd4a10e4f5c8b3ddfcbdc4dcd
3
+ size 5244027753
model-00005-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3de4f4e00f47a6453fcce0606a575bec11e53b50ec5a00cf2208da65f0047ac
3
+ size 5185446870
model-00006-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e8081df8ceda99341a0f39c7aa44e88ae4addaf24d26a428a17954a6d6be021
3
+ size 5265656705
model-00007-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c26ac73320c0b517533e53697c942cacb0fbc550cedcffb894772ebd06b8803e
3
+ size 5244027773
model-00008-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eebc90d7262b7cb798e4287734801114f7c4614dd180b0d314b85a28ed1345f
3
+ size 5185446872
model-00009-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1760cc0f11bb3bd609b0dc3f53f20d2be9a500536a2bf65ec72c07d7f7e50a6
3
+ size 5265656735
model-00010-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67824283951c8f4b6a015c8918c52241af5f1651c6babd2bed3f1b89c830a74e
3
+ size 5244027705
model-00011-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29122def5115f920e28b9c9422ec419652fcfdc14623583d14e5d76dc7ea5ca4
3
+ size 5185446880
model-00012-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11e1d5acc35ce1af71c2fd0ade932b50a60207d2e1d4ef19caf35b2657c8fd51
3
+ size 5265656717
model-00013-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1affa0deb282cb273add64909df5285a9a721a8bc73cd31781fe34b76e430a08
3
+ size 5244027757
model-00014-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:187b5f96ffaf993d2778813b3f18de1a62d53848a81953cfe3624a44bb38a4b7
3
+ size 5185446892
model-00015-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5bbd011a8e8bb3ac0a50974dd61a5c0d21cfcadbfd11918fb25cb5d15d302e1
3
+ size 5265656749
model-00016-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a743fbc48d19911479c81a4cd28ef9f2e831812fc0f695022c049f66bc975e3
3
+ size 5244027753
model-00017-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82968cf3cf155e0025c83eed76b3c0930086f41a4b9372556f08ff87cbd997e2
3
+ size 5185446836
model-00018-of-00018.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24ac1746ec4c5be0928035ea31f71545fb9ef4ad20f29db708f05c896565b843
3
+ size 1307211223
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
oq_imatrix_report.json ADDED
@@ -0,0 +1,897 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "enabled": true,
3
+ "cache_path": "/Users/gabfssilva/.cache/huggingface/hub/models--local--Hy3-mlx-oQ2e/snapshots/.oqe_imatrix/f25e17585fa97688711042f822a8bedf975fb80e-oQe-s128-l512.npz",
4
+ "cache_reused": true,
5
+ "entry_count": 876,
6
+ "calib_dataset": "oqe_code_multilingual",
7
+ "collection": {
8
+ "dataset": "oqe_code_multilingual",
9
+ "requested_samples": 128,
10
+ "seq_length": 512,
11
+ "adaptive": true,
12
+ "adaptive_step_samples": 128,
13
+ "adaptive_max_samples": 1024,
14
+ "available_samples": 1024,
15
+ "micro_batch_size": 12,
16
+ "micro_batches": 11,
17
+ "batch_plan": {
18
+ "micro_batch_size": 12,
19
+ "estimated_sample_bytes": 67108864,
20
+ "capture_budget_bytes": 805306368,
21
+ "system_available_bytes": 116966981632,
22
+ "metal_available_bytes": 115444302520,
23
+ "live_available_bytes": 115444302520,
24
+ "hidden_size": 4096,
25
+ "num_experts": 192,
26
+ "top_k": 8
27
+ },
28
+ "processed_samples": 128,
29
+ "installed_modules": 877,
30
+ "capture_module_classes": {
31
+ "Linear": 79,
32
+ "QuantizedLinear": 561,
33
+ "QuantizedSwitchLinear": 237
34
+ },
35
+ "switch_capture_modules": 237,
36
+ "requires_expert_counts": true,
37
+ "coverage_sufficient": true,
38
+ "collection_sufficient": true,
39
+ "coverage": {
40
+ "has_expert_counts": true,
41
+ "expert_modules": 237,
42
+ "total_experts": 45504,
43
+ "active_experts": 45504,
44
+ "zero_count_experts": 0,
45
+ "active_ratio": 1.0,
46
+ "min_count": 24,
47
+ "p05_count": 1045.0,
48
+ "p10_count": 1331.0,
49
+ "median_count": 2472.0,
50
+ "max_count": 24939,
51
+ "min_required_count": 16,
52
+ "required_percentile": 5
53
+ },
54
+ "rounds": [
55
+ {
56
+ "processed_samples": 128,
57
+ "coverage_sufficient": true,
58
+ "collection_sufficient": true,
59
+ "coverage": {
60
+ "has_expert_counts": true,
61
+ "expert_modules": 237,
62
+ "total_experts": 45504,
63
+ "active_experts": 45504,
64
+ "zero_count_experts": 0,
65
+ "active_ratio": 1.0,
66
+ "min_count": 24,
67
+ "p05_count": 1045.0,
68
+ "p10_count": 1331.0,
69
+ "median_count": 2472.0,
70
+ "max_count": 24939,
71
+ "min_required_count": 16,
72
+ "required_percentile": 5
73
+ }
74
+ }
75
+ ]
76
+ },
77
+ "expert_coverage": {
78
+ "has_expert_counts": true,
79
+ "expert_modules": 237,
80
+ "total_experts": 45504,
81
+ "active_experts": 45504,
82
+ "zero_count_experts": 0,
83
+ "active_ratio": 1.0,
84
+ "min_count": 24,
85
+ "p05_count": 1045.0,
86
+ "p10_count": 1331.0,
87
+ "median_count": 2472.0,
88
+ "max_count": 24939,
89
+ "min_required_count": 16,
90
+ "required_percentile": 5
91
+ },
92
+ "applied": [
93
+ "model.layers.0.mlp.down_proj",
94
+ "model.layers.0.mlp.gate_proj",
95
+ "model.layers.0.mlp.up_proj",
96
+ "model.layers.0.self_attn.k_proj",
97
+ "model.layers.0.self_attn.o_proj",
98
+ "model.layers.0.self_attn.q_proj",
99
+ "model.layers.0.self_attn.v_proj",
100
+ "model.layers.1.mlp.shared_mlp.down_proj",
101
+ "model.layers.1.mlp.shared_mlp.gate_proj",
102
+ "model.layers.1.mlp.shared_mlp.up_proj",
103
+ "model.layers.1.mlp.switch_mlp.down_proj",
104
+ "model.layers.1.mlp.switch_mlp.gate_proj",
105
+ "model.layers.1.mlp.switch_mlp.up_proj",
106
+ "model.layers.1.self_attn.k_proj",
107
+ "model.layers.1.self_attn.o_proj",
108
+ "model.layers.1.self_attn.q_proj",
109
+ "model.layers.1.self_attn.v_proj",
110
+ "model.layers.10.mlp.shared_mlp.down_proj",
111
+ "model.layers.10.mlp.shared_mlp.gate_proj",
112
+ "model.layers.10.mlp.shared_mlp.up_proj",
113
+ "model.layers.10.mlp.switch_mlp.down_proj",
114
+ "model.layers.10.mlp.switch_mlp.gate_proj",
115
+ "model.layers.10.mlp.switch_mlp.up_proj",
116
+ "model.layers.10.self_attn.k_proj",
117
+ "model.layers.10.self_attn.o_proj",
118
+ "model.layers.10.self_attn.q_proj",
119
+ "model.layers.10.self_attn.v_proj",
120
+ "model.layers.11.mlp.shared_mlp.down_proj",
121
+ "model.layers.11.mlp.shared_mlp.gate_proj",
122
+ "model.layers.11.mlp.shared_mlp.up_proj",
123
+ "model.layers.11.mlp.switch_mlp.down_proj",
124
+ "model.layers.11.mlp.switch_mlp.gate_proj",
125
+ "model.layers.11.mlp.switch_mlp.up_proj",
126
+ "model.layers.11.self_attn.k_proj",
127
+ "model.layers.11.self_attn.o_proj",
128
+ "model.layers.11.self_attn.q_proj",
129
+ "model.layers.11.self_attn.v_proj",
130
+ "model.layers.12.mlp.shared_mlp.down_proj",
131
+ "model.layers.12.mlp.shared_mlp.gate_proj",
132
+ "model.layers.12.mlp.shared_mlp.up_proj",
133
+ "model.layers.12.mlp.switch_mlp.down_proj",
134
+ "model.layers.12.mlp.switch_mlp.gate_proj",
135
+ "model.layers.12.mlp.switch_mlp.up_proj",
136
+ "model.layers.12.self_attn.k_proj",
137
+ "model.layers.12.self_attn.o_proj",
138
+ "model.layers.12.self_attn.q_proj",
139
+ "model.layers.12.self_attn.v_proj",
140
+ "model.layers.13.mlp.shared_mlp.down_proj",
141
+ "model.layers.13.mlp.shared_mlp.gate_proj",
142
+ "model.layers.13.mlp.shared_mlp.up_proj",
143
+ "model.layers.13.mlp.switch_mlp.down_proj",
144
+ "model.layers.13.mlp.switch_mlp.gate_proj",
145
+ "model.layers.13.mlp.switch_mlp.up_proj",
146
+ "model.layers.13.self_attn.k_proj",
147
+ "model.layers.13.self_attn.o_proj",
148
+ "model.layers.13.self_attn.q_proj",
149
+ "model.layers.13.self_attn.v_proj",
150
+ "model.layers.14.mlp.shared_mlp.down_proj",
151
+ "model.layers.14.mlp.shared_mlp.gate_proj",
152
+ "model.layers.14.mlp.shared_mlp.up_proj",
153
+ "model.layers.14.mlp.switch_mlp.down_proj",
154
+ "model.layers.14.mlp.switch_mlp.gate_proj",
155
+ "model.layers.14.mlp.switch_mlp.up_proj",
156
+ "model.layers.14.self_attn.k_proj",
157
+ "model.layers.14.self_attn.o_proj",
158
+ "model.layers.14.self_attn.q_proj",
159
+ "model.layers.14.self_attn.v_proj",
160
+ "model.layers.15.mlp.shared_mlp.down_proj",
161
+ "model.layers.15.mlp.shared_mlp.gate_proj",
162
+ "model.layers.15.mlp.shared_mlp.up_proj",
163
+ "model.layers.15.mlp.switch_mlp.down_proj",
164
+ "model.layers.15.mlp.switch_mlp.gate_proj",
165
+ "model.layers.15.mlp.switch_mlp.up_proj",
166
+ "model.layers.15.self_attn.k_proj",
167
+ "model.layers.15.self_attn.o_proj",
168
+ "model.layers.15.self_attn.q_proj",
169
+ "model.layers.15.self_attn.v_proj",
170
+ "model.layers.16.mlp.shared_mlp.down_proj",
171
+ "model.layers.16.mlp.shared_mlp.gate_proj",
172
+ "model.layers.16.mlp.shared_mlp.up_proj",
173
+ "model.layers.16.mlp.switch_mlp.down_proj",
174
+ "model.layers.16.mlp.switch_mlp.gate_proj",
175
+ "model.layers.16.mlp.switch_mlp.up_proj",
176
+ "model.layers.16.self_attn.k_proj",
177
+ "model.layers.16.self_attn.o_proj",
178
+ "model.layers.16.self_attn.q_proj",
179
+ "model.layers.16.self_attn.v_proj",
180
+ "model.layers.17.mlp.shared_mlp.down_proj",
181
+ "model.layers.17.mlp.shared_mlp.gate_proj",
182
+ "model.layers.17.mlp.shared_mlp.up_proj",
183
+ "model.layers.17.mlp.switch_mlp.down_proj",
184
+ "model.layers.17.mlp.switch_mlp.gate_proj",
185
+ "model.layers.17.mlp.switch_mlp.up_proj",
186
+ "model.layers.17.self_attn.k_proj",
187
+ "model.layers.17.self_attn.o_proj",
188
+ "model.layers.17.self_attn.q_proj",
189
+ "model.layers.17.self_attn.v_proj",
190
+ "model.layers.18.mlp.shared_mlp.down_proj",
191
+ "model.layers.18.mlp.shared_mlp.gate_proj",
192
+ "model.layers.18.mlp.shared_mlp.up_proj",
193
+ "model.layers.18.mlp.switch_mlp.down_proj",
194
+ "model.layers.18.mlp.switch_mlp.gate_proj",
195
+ "model.layers.18.mlp.switch_mlp.up_proj",
196
+ "model.layers.18.self_attn.k_proj",
197
+ "model.layers.18.self_attn.o_proj",
198
+ "model.layers.18.self_attn.q_proj",
199
+ "model.layers.18.self_attn.v_proj",
200
+ "model.layers.19.mlp.shared_mlp.down_proj",
201
+ "model.layers.19.mlp.shared_mlp.gate_proj",
202
+ "model.layers.19.mlp.shared_mlp.up_proj",
203
+ "model.layers.19.mlp.switch_mlp.down_proj",
204
+ "model.layers.19.mlp.switch_mlp.gate_proj",
205
+ "model.layers.19.mlp.switch_mlp.up_proj",
206
+ "model.layers.19.self_attn.k_proj",
207
+ "model.layers.19.self_attn.o_proj",
208
+ "model.layers.19.self_attn.q_proj",
209
+ "model.layers.19.self_attn.v_proj",
210
+ "model.layers.2.mlp.shared_mlp.down_proj",
211
+ "model.layers.2.mlp.shared_mlp.gate_proj",
212
+ "model.layers.2.mlp.shared_mlp.up_proj",
213
+ "model.layers.2.mlp.switch_mlp.down_proj",
214
+ "model.layers.2.mlp.switch_mlp.gate_proj",
215
+ "model.layers.2.mlp.switch_mlp.up_proj",
216
+ "model.layers.2.self_attn.k_proj",
217
+ "model.layers.2.self_attn.o_proj",
218
+ "model.layers.2.self_attn.q_proj",
219
+ "model.layers.2.self_attn.v_proj",
220
+ "model.layers.20.mlp.shared_mlp.down_proj",
221
+ "model.layers.20.mlp.shared_mlp.gate_proj",
222
+ "model.layers.20.mlp.shared_mlp.up_proj",
223
+ "model.layers.20.mlp.switch_mlp.down_proj",
224
+ "model.layers.20.mlp.switch_mlp.gate_proj",
225
+ "model.layers.20.mlp.switch_mlp.up_proj",
226
+ "model.layers.20.self_attn.k_proj",
227
+ "model.layers.20.self_attn.o_proj",
228
+ "model.layers.20.self_attn.q_proj",
229
+ "model.layers.20.self_attn.v_proj",
230
+ "model.layers.21.mlp.shared_mlp.down_proj",
231
+ "model.layers.21.mlp.shared_mlp.gate_proj",
232
+ "model.layers.21.mlp.shared_mlp.up_proj",
233
+ "model.layers.21.mlp.switch_mlp.down_proj",
234
+ "model.layers.21.mlp.switch_mlp.gate_proj",
235
+ "model.layers.21.mlp.switch_mlp.up_proj",
236
+ "model.layers.21.self_attn.k_proj",
237
+ "model.layers.21.self_attn.o_proj",
238
+ "model.layers.21.self_attn.q_proj",
239
+ "model.layers.21.self_attn.v_proj",
240
+ "model.layers.22.mlp.shared_mlp.down_proj",
241
+ "model.layers.22.mlp.shared_mlp.gate_proj",
242
+ "model.layers.22.mlp.shared_mlp.up_proj",
243
+ "model.layers.22.mlp.switch_mlp.down_proj",
244
+ "model.layers.22.mlp.switch_mlp.gate_proj",
245
+ "model.layers.22.mlp.switch_mlp.up_proj",
246
+ "model.layers.22.self_attn.k_proj",
247
+ "model.layers.22.self_attn.o_proj",
248
+ "model.layers.22.self_attn.q_proj",
249
+ "model.layers.22.self_attn.v_proj",
250
+ "model.layers.23.mlp.shared_mlp.down_proj",
251
+ "model.layers.23.mlp.shared_mlp.gate_proj",
252
+ "model.layers.23.mlp.shared_mlp.up_proj",
253
+ "model.layers.23.mlp.switch_mlp.down_proj",
254
+ "model.layers.23.mlp.switch_mlp.gate_proj",
255
+ "model.layers.23.mlp.switch_mlp.up_proj",
256
+ "model.layers.23.self_attn.k_proj",
257
+ "model.layers.23.self_attn.o_proj",
258
+ "model.layers.23.self_attn.q_proj",
259
+ "model.layers.23.self_attn.v_proj",
260
+ "model.layers.24.mlp.shared_mlp.down_proj",
261
+ "model.layers.24.mlp.shared_mlp.gate_proj",
262
+ "model.layers.24.mlp.shared_mlp.up_proj",
263
+ "model.layers.24.mlp.switch_mlp.down_proj",
264
+ "model.layers.24.mlp.switch_mlp.gate_proj",
265
+ "model.layers.24.mlp.switch_mlp.up_proj",
266
+ "model.layers.24.self_attn.k_proj",
267
+ "model.layers.24.self_attn.o_proj",
268
+ "model.layers.24.self_attn.q_proj",
269
+ "model.layers.24.self_attn.v_proj",
270
+ "model.layers.25.mlp.shared_mlp.down_proj",
271
+ "model.layers.25.mlp.shared_mlp.gate_proj",
272
+ "model.layers.25.mlp.shared_mlp.up_proj",
273
+ "model.layers.25.mlp.switch_mlp.down_proj",
274
+ "model.layers.25.mlp.switch_mlp.gate_proj",
275
+ "model.layers.25.mlp.switch_mlp.up_proj",
276
+ "model.layers.25.self_attn.k_proj",
277
+ "model.layers.25.self_attn.o_proj",
278
+ "model.layers.25.self_attn.q_proj",
279
+ "model.layers.25.self_attn.v_proj",
280
+ "model.layers.26.mlp.shared_mlp.down_proj",
281
+ "model.layers.26.mlp.shared_mlp.gate_proj",
282
+ "model.layers.26.mlp.shared_mlp.up_proj",
283
+ "model.layers.26.mlp.switch_mlp.down_proj",
284
+ "model.layers.26.mlp.switch_mlp.gate_proj",
285
+ "model.layers.26.mlp.switch_mlp.up_proj",
286
+ "model.layers.26.self_attn.k_proj",
287
+ "model.layers.26.self_attn.o_proj",
288
+ "model.layers.26.self_attn.q_proj",
289
+ "model.layers.26.self_attn.v_proj",
290
+ "model.layers.27.mlp.shared_mlp.down_proj",
291
+ "model.layers.27.mlp.shared_mlp.gate_proj",
292
+ "model.layers.27.mlp.shared_mlp.up_proj",
293
+ "model.layers.27.mlp.switch_mlp.down_proj",
294
+ "model.layers.27.mlp.switch_mlp.gate_proj",
295
+ "model.layers.27.mlp.switch_mlp.up_proj",
296
+ "model.layers.27.self_attn.k_proj",
297
+ "model.layers.27.self_attn.o_proj",
298
+ "model.layers.27.self_attn.q_proj",
299
+ "model.layers.27.self_attn.v_proj",
300
+ "model.layers.28.mlp.shared_mlp.down_proj",
301
+ "model.layers.28.mlp.shared_mlp.gate_proj",
302
+ "model.layers.28.mlp.shared_mlp.up_proj",
303
+ "model.layers.28.mlp.switch_mlp.down_proj",
304
+ "model.layers.28.mlp.switch_mlp.gate_proj",
305
+ "model.layers.28.mlp.switch_mlp.up_proj",
306
+ "model.layers.28.self_attn.k_proj",
307
+ "model.layers.28.self_attn.o_proj",
308
+ "model.layers.28.self_attn.q_proj",
309
+ "model.layers.28.self_attn.v_proj",
310
+ "model.layers.29.mlp.shared_mlp.down_proj",
311
+ "model.layers.29.mlp.shared_mlp.gate_proj",
312
+ "model.layers.29.mlp.shared_mlp.up_proj",
313
+ "model.layers.29.mlp.switch_mlp.down_proj",
314
+ "model.layers.29.mlp.switch_mlp.gate_proj",
315
+ "model.layers.29.mlp.switch_mlp.up_proj",
316
+ "model.layers.29.self_attn.k_proj",
317
+ "model.layers.29.self_attn.o_proj",
318
+ "model.layers.29.self_attn.q_proj",
319
+ "model.layers.29.self_attn.v_proj",
320
+ "model.layers.3.mlp.shared_mlp.down_proj",
321
+ "model.layers.3.mlp.shared_mlp.gate_proj",
322
+ "model.layers.3.mlp.shared_mlp.up_proj",
323
+ "model.layers.3.mlp.switch_mlp.down_proj",
324
+ "model.layers.3.mlp.switch_mlp.gate_proj",
325
+ "model.layers.3.mlp.switch_mlp.up_proj",
326
+ "model.layers.3.self_attn.k_proj",
327
+ "model.layers.3.self_attn.o_proj",
328
+ "model.layers.3.self_attn.q_proj",
329
+ "model.layers.3.self_attn.v_proj",
330
+ "model.layers.30.mlp.shared_mlp.down_proj",
331
+ "model.layers.30.mlp.shared_mlp.gate_proj",
332
+ "model.layers.30.mlp.shared_mlp.up_proj",
333
+ "model.layers.30.mlp.switch_mlp.down_proj",
334
+ "model.layers.30.mlp.switch_mlp.gate_proj",
335
+ "model.layers.30.mlp.switch_mlp.up_proj",
336
+ "model.layers.30.self_attn.k_proj",
337
+ "model.layers.30.self_attn.o_proj",
338
+ "model.layers.30.self_attn.q_proj",
339
+ "model.layers.30.self_attn.v_proj",
340
+ "model.layers.31.mlp.shared_mlp.down_proj",
341
+ "model.layers.31.mlp.shared_mlp.gate_proj",
342
+ "model.layers.31.mlp.shared_mlp.up_proj",
343
+ "model.layers.31.mlp.switch_mlp.down_proj",
344
+ "model.layers.31.mlp.switch_mlp.gate_proj",
345
+ "model.layers.31.mlp.switch_mlp.up_proj",
346
+ "model.layers.31.self_attn.k_proj",
347
+ "model.layers.31.self_attn.o_proj",
348
+ "model.layers.31.self_attn.q_proj",
349
+ "model.layers.31.self_attn.v_proj",
350
+ "model.layers.32.mlp.shared_mlp.down_proj",
351
+ "model.layers.32.mlp.shared_mlp.gate_proj",
352
+ "model.layers.32.mlp.shared_mlp.up_proj",
353
+ "model.layers.32.mlp.switch_mlp.down_proj",
354
+ "model.layers.32.mlp.switch_mlp.gate_proj",
355
+ "model.layers.32.mlp.switch_mlp.up_proj",
356
+ "model.layers.32.self_attn.k_proj",
357
+ "model.layers.32.self_attn.o_proj",
358
+ "model.layers.32.self_attn.q_proj",
359
+ "model.layers.32.self_attn.v_proj",
360
+ "model.layers.33.mlp.shared_mlp.down_proj",
361
+ "model.layers.33.mlp.shared_mlp.gate_proj",
362
+ "model.layers.33.mlp.shared_mlp.up_proj",
363
+ "model.layers.33.mlp.switch_mlp.down_proj",
364
+ "model.layers.33.mlp.switch_mlp.gate_proj",
365
+ "model.layers.33.mlp.switch_mlp.up_proj",
366
+ "model.layers.33.self_attn.k_proj",
367
+ "model.layers.33.self_attn.o_proj",
368
+ "model.layers.33.self_attn.q_proj",
369
+ "model.layers.33.self_attn.v_proj",
370
+ "model.layers.34.mlp.shared_mlp.down_proj",
371
+ "model.layers.34.mlp.shared_mlp.gate_proj",
372
+ "model.layers.34.mlp.shared_mlp.up_proj",
373
+ "model.layers.34.mlp.switch_mlp.down_proj",
374
+ "model.layers.34.mlp.switch_mlp.gate_proj",
375
+ "model.layers.34.mlp.switch_mlp.up_proj",
376
+ "model.layers.34.self_attn.k_proj",
377
+ "model.layers.34.self_attn.o_proj",
378
+ "model.layers.34.self_attn.q_proj",
379
+ "model.layers.34.self_attn.v_proj",
380
+ "model.layers.35.mlp.shared_mlp.down_proj",
381
+ "model.layers.35.mlp.shared_mlp.gate_proj",
382
+ "model.layers.35.mlp.shared_mlp.up_proj",
383
+ "model.layers.35.mlp.switch_mlp.down_proj",
384
+ "model.layers.35.mlp.switch_mlp.gate_proj",
385
+ "model.layers.35.mlp.switch_mlp.up_proj",
386
+ "model.layers.35.self_attn.k_proj",
387
+ "model.layers.35.self_attn.o_proj",
388
+ "model.layers.35.self_attn.q_proj",
389
+ "model.layers.35.self_attn.v_proj",
390
+ "model.layers.36.mlp.shared_mlp.down_proj",
391
+ "model.layers.36.mlp.shared_mlp.gate_proj",
392
+ "model.layers.36.mlp.shared_mlp.up_proj",
393
+ "model.layers.36.mlp.switch_mlp.down_proj",
394
+ "model.layers.36.mlp.switch_mlp.gate_proj",
395
+ "model.layers.36.mlp.switch_mlp.up_proj",
396
+ "model.layers.36.self_attn.k_proj",
397
+ "model.layers.36.self_attn.o_proj",
398
+ "model.layers.36.self_attn.q_proj",
399
+ "model.layers.36.self_attn.v_proj",
400
+ "model.layers.37.mlp.shared_mlp.down_proj",
401
+ "model.layers.37.mlp.shared_mlp.gate_proj",
402
+ "model.layers.37.mlp.shared_mlp.up_proj",
403
+ "model.layers.37.mlp.switch_mlp.down_proj",
404
+ "model.layers.37.mlp.switch_mlp.gate_proj",
405
+ "model.layers.37.mlp.switch_mlp.up_proj",
406
+ "model.layers.37.self_attn.k_proj",
407
+ "model.layers.37.self_attn.o_proj",
408
+ "model.layers.37.self_attn.q_proj",
409
+ "model.layers.37.self_attn.v_proj",
410
+ "model.layers.38.mlp.shared_mlp.down_proj",
411
+ "model.layers.38.mlp.shared_mlp.gate_proj",
412
+ "model.layers.38.mlp.shared_mlp.up_proj",
413
+ "model.layers.38.mlp.switch_mlp.down_proj",
414
+ "model.layers.38.mlp.switch_mlp.gate_proj",
415
+ "model.layers.38.mlp.switch_mlp.up_proj",
416
+ "model.layers.38.self_attn.k_proj",
417
+ "model.layers.38.self_attn.o_proj",
418
+ "model.layers.38.self_attn.q_proj",
419
+ "model.layers.38.self_attn.v_proj",
420
+ "model.layers.39.mlp.shared_mlp.down_proj",
421
+ "model.layers.39.mlp.shared_mlp.gate_proj",
422
+ "model.layers.39.mlp.shared_mlp.up_proj",
423
+ "model.layers.39.mlp.switch_mlp.down_proj",
424
+ "model.layers.39.mlp.switch_mlp.gate_proj",
425
+ "model.layers.39.mlp.switch_mlp.up_proj",
426
+ "model.layers.39.self_attn.k_proj",
427
+ "model.layers.39.self_attn.o_proj",
428
+ "model.layers.39.self_attn.q_proj",
429
+ "model.layers.39.self_attn.v_proj",
430
+ "model.layers.4.mlp.shared_mlp.down_proj",
431
+ "model.layers.4.mlp.shared_mlp.gate_proj",
432
+ "model.layers.4.mlp.shared_mlp.up_proj",
433
+ "model.layers.4.mlp.switch_mlp.down_proj",
434
+ "model.layers.4.mlp.switch_mlp.gate_proj",
435
+ "model.layers.4.mlp.switch_mlp.up_proj",
436
+ "model.layers.4.self_attn.k_proj",
437
+ "model.layers.4.self_attn.o_proj",
438
+ "model.layers.4.self_attn.q_proj",
439
+ "model.layers.4.self_attn.v_proj",
440
+ "model.layers.40.mlp.shared_mlp.down_proj",
441
+ "model.layers.40.mlp.shared_mlp.gate_proj",
442
+ "model.layers.40.mlp.shared_mlp.up_proj",
443
+ "model.layers.40.mlp.switch_mlp.down_proj",
444
+ "model.layers.40.mlp.switch_mlp.gate_proj",
445
+ "model.layers.40.mlp.switch_mlp.up_proj",
446
+ "model.layers.40.self_attn.k_proj",
447
+ "model.layers.40.self_attn.o_proj",
448
+ "model.layers.40.self_attn.q_proj",
449
+ "model.layers.40.self_attn.v_proj",
450
+ "model.layers.41.mlp.shared_mlp.down_proj",
451
+ "model.layers.41.mlp.shared_mlp.gate_proj",
452
+ "model.layers.41.mlp.shared_mlp.up_proj",
453
+ "model.layers.41.mlp.switch_mlp.down_proj",
454
+ "model.layers.41.mlp.switch_mlp.gate_proj",
455
+ "model.layers.41.mlp.switch_mlp.up_proj",
456
+ "model.layers.41.self_attn.k_proj",
457
+ "model.layers.41.self_attn.o_proj",
458
+ "model.layers.41.self_attn.q_proj",
459
+ "model.layers.41.self_attn.v_proj",
460
+ "model.layers.42.mlp.shared_mlp.down_proj",
461
+ "model.layers.42.mlp.shared_mlp.gate_proj",
462
+ "model.layers.42.mlp.shared_mlp.up_proj",
463
+ "model.layers.42.mlp.switch_mlp.down_proj",
464
+ "model.layers.42.mlp.switch_mlp.gate_proj",
465
+ "model.layers.42.mlp.switch_mlp.up_proj",
466
+ "model.layers.42.self_attn.k_proj",
467
+ "model.layers.42.self_attn.o_proj",
468
+ "model.layers.42.self_attn.q_proj",
469
+ "model.layers.42.self_attn.v_proj",
470
+ "model.layers.43.mlp.shared_mlp.down_proj",
471
+ "model.layers.43.mlp.shared_mlp.gate_proj",
472
+ "model.layers.43.mlp.shared_mlp.up_proj",
473
+ "model.layers.43.mlp.switch_mlp.down_proj",
474
+ "model.layers.43.mlp.switch_mlp.gate_proj",
475
+ "model.layers.43.mlp.switch_mlp.up_proj",
476
+ "model.layers.43.self_attn.k_proj",
477
+ "model.layers.43.self_attn.o_proj",
478
+ "model.layers.43.self_attn.q_proj",
479
+ "model.layers.43.self_attn.v_proj",
480
+ "model.layers.44.mlp.shared_mlp.down_proj",
481
+ "model.layers.44.mlp.shared_mlp.gate_proj",
482
+ "model.layers.44.mlp.shared_mlp.up_proj",
483
+ "model.layers.44.mlp.switch_mlp.down_proj",
484
+ "model.layers.44.mlp.switch_mlp.gate_proj",
485
+ "model.layers.44.mlp.switch_mlp.up_proj",
486
+ "model.layers.44.self_attn.k_proj",
487
+ "model.layers.44.self_attn.o_proj",
488
+ "model.layers.44.self_attn.q_proj",
489
+ "model.layers.44.self_attn.v_proj",
490
+ "model.layers.45.mlp.shared_mlp.down_proj",
491
+ "model.layers.45.mlp.shared_mlp.gate_proj",
492
+ "model.layers.45.mlp.shared_mlp.up_proj",
493
+ "model.layers.45.mlp.switch_mlp.down_proj",
494
+ "model.layers.45.mlp.switch_mlp.gate_proj",
495
+ "model.layers.45.mlp.switch_mlp.up_proj",
496
+ "model.layers.45.self_attn.k_proj",
497
+ "model.layers.45.self_attn.o_proj",
498
+ "model.layers.45.self_attn.q_proj",
499
+ "model.layers.45.self_attn.v_proj",
500
+ "model.layers.46.mlp.shared_mlp.down_proj",
501
+ "model.layers.46.mlp.shared_mlp.gate_proj",
502
+ "model.layers.46.mlp.shared_mlp.up_proj",
503
+ "model.layers.46.mlp.switch_mlp.down_proj",
504
+ "model.layers.46.mlp.switch_mlp.gate_proj",
505
+ "model.layers.46.mlp.switch_mlp.up_proj",
506
+ "model.layers.46.self_attn.k_proj",
507
+ "model.layers.46.self_attn.o_proj",
508
+ "model.layers.46.self_attn.q_proj",
509
+ "model.layers.46.self_attn.v_proj",
510
+ "model.layers.47.mlp.shared_mlp.down_proj",
511
+ "model.layers.47.mlp.shared_mlp.gate_proj",
512
+ "model.layers.47.mlp.shared_mlp.up_proj",
513
+ "model.layers.47.mlp.switch_mlp.down_proj",
514
+ "model.layers.47.mlp.switch_mlp.gate_proj",
515
+ "model.layers.47.mlp.switch_mlp.up_proj",
516
+ "model.layers.47.self_attn.k_proj",
517
+ "model.layers.47.self_attn.o_proj",
518
+ "model.layers.47.self_attn.q_proj",
519
+ "model.layers.47.self_attn.v_proj",
520
+ "model.layers.48.mlp.shared_mlp.down_proj",
521
+ "model.layers.48.mlp.shared_mlp.gate_proj",
522
+ "model.layers.48.mlp.shared_mlp.up_proj",
523
+ "model.layers.48.mlp.switch_mlp.down_proj",
524
+ "model.layers.48.mlp.switch_mlp.gate_proj",
525
+ "model.layers.48.mlp.switch_mlp.up_proj",
526
+ "model.layers.48.self_attn.k_proj",
527
+ "model.layers.48.self_attn.o_proj",
528
+ "model.layers.48.self_attn.q_proj",
529
+ "model.layers.48.self_attn.v_proj",
530
+ "model.layers.49.mlp.shared_mlp.down_proj",
531
+ "model.layers.49.mlp.shared_mlp.gate_proj",
532
+ "model.layers.49.mlp.shared_mlp.up_proj",
533
+ "model.layers.49.mlp.switch_mlp.down_proj",
534
+ "model.layers.49.mlp.switch_mlp.gate_proj",
535
+ "model.layers.49.mlp.switch_mlp.up_proj",
536
+ "model.layers.49.self_attn.k_proj",
537
+ "model.layers.49.self_attn.o_proj",
538
+ "model.layers.49.self_attn.q_proj",
539
+ "model.layers.49.self_attn.v_proj",
540
+ "model.layers.5.mlp.shared_mlp.down_proj",
541
+ "model.layers.5.mlp.shared_mlp.gate_proj",
542
+ "model.layers.5.mlp.shared_mlp.up_proj",
543
+ "model.layers.5.mlp.switch_mlp.down_proj",
544
+ "model.layers.5.mlp.switch_mlp.gate_proj",
545
+ "model.layers.5.mlp.switch_mlp.up_proj",
546
+ "model.layers.5.self_attn.k_proj",
547
+ "model.layers.5.self_attn.o_proj",
548
+ "model.layers.5.self_attn.q_proj",
549
+ "model.layers.5.self_attn.v_proj",
550
+ "model.layers.50.mlp.shared_mlp.down_proj",
551
+ "model.layers.50.mlp.shared_mlp.gate_proj",
552
+ "model.layers.50.mlp.shared_mlp.up_proj",
553
+ "model.layers.50.mlp.switch_mlp.down_proj",
554
+ "model.layers.50.mlp.switch_mlp.gate_proj",
555
+ "model.layers.50.mlp.switch_mlp.up_proj",
556
+ "model.layers.50.self_attn.k_proj",
557
+ "model.layers.50.self_attn.o_proj",
558
+ "model.layers.50.self_attn.q_proj",
559
+ "model.layers.50.self_attn.v_proj",
560
+ "model.layers.51.mlp.shared_mlp.down_proj",
561
+ "model.layers.51.mlp.shared_mlp.gate_proj",
562
+ "model.layers.51.mlp.shared_mlp.up_proj",
563
+ "model.layers.51.mlp.switch_mlp.down_proj",
564
+ "model.layers.51.mlp.switch_mlp.gate_proj",
565
+ "model.layers.51.mlp.switch_mlp.up_proj",
566
+ "model.layers.51.self_attn.k_proj",
567
+ "model.layers.51.self_attn.o_proj",
568
+ "model.layers.51.self_attn.q_proj",
569
+ "model.layers.51.self_attn.v_proj",
570
+ "model.layers.52.mlp.shared_mlp.down_proj",
571
+ "model.layers.52.mlp.shared_mlp.gate_proj",
572
+ "model.layers.52.mlp.shared_mlp.up_proj",
573
+ "model.layers.52.mlp.switch_mlp.down_proj",
574
+ "model.layers.52.mlp.switch_mlp.gate_proj",
575
+ "model.layers.52.mlp.switch_mlp.up_proj",
576
+ "model.layers.52.self_attn.k_proj",
577
+ "model.layers.52.self_attn.o_proj",
578
+ "model.layers.52.self_attn.q_proj",
579
+ "model.layers.52.self_attn.v_proj",
580
+ "model.layers.53.mlp.shared_mlp.down_proj",
581
+ "model.layers.53.mlp.shared_mlp.gate_proj",
582
+ "model.layers.53.mlp.shared_mlp.up_proj",
583
+ "model.layers.53.mlp.switch_mlp.down_proj",
584
+ "model.layers.53.mlp.switch_mlp.gate_proj",
585
+ "model.layers.53.mlp.switch_mlp.up_proj",
586
+ "model.layers.53.self_attn.k_proj",
587
+ "model.layers.53.self_attn.o_proj",
588
+ "model.layers.53.self_attn.q_proj",
589
+ "model.layers.53.self_attn.v_proj",
590
+ "model.layers.54.mlp.shared_mlp.down_proj",
591
+ "model.layers.54.mlp.shared_mlp.gate_proj",
592
+ "model.layers.54.mlp.shared_mlp.up_proj",
593
+ "model.layers.54.mlp.switch_mlp.down_proj",
594
+ "model.layers.54.mlp.switch_mlp.gate_proj",
595
+ "model.layers.54.mlp.switch_mlp.up_proj",
596
+ "model.layers.54.self_attn.k_proj",
597
+ "model.layers.54.self_attn.o_proj",
598
+ "model.layers.54.self_attn.q_proj",
599
+ "model.layers.54.self_attn.v_proj",
600
+ "model.layers.55.mlp.shared_mlp.down_proj",
601
+ "model.layers.55.mlp.shared_mlp.gate_proj",
602
+ "model.layers.55.mlp.shared_mlp.up_proj",
603
+ "model.layers.55.mlp.switch_mlp.down_proj",
604
+ "model.layers.55.mlp.switch_mlp.gate_proj",
605
+ "model.layers.55.mlp.switch_mlp.up_proj",
606
+ "model.layers.55.self_attn.k_proj",
607
+ "model.layers.55.self_attn.o_proj",
608
+ "model.layers.55.self_attn.q_proj",
609
+ "model.layers.55.self_attn.v_proj",
610
+ "model.layers.56.mlp.shared_mlp.down_proj",
611
+ "model.layers.56.mlp.shared_mlp.gate_proj",
612
+ "model.layers.56.mlp.shared_mlp.up_proj",
613
+ "model.layers.56.mlp.switch_mlp.down_proj",
614
+ "model.layers.56.mlp.switch_mlp.gate_proj",
615
+ "model.layers.56.mlp.switch_mlp.up_proj",
616
+ "model.layers.56.self_attn.k_proj",
617
+ "model.layers.56.self_attn.o_proj",
618
+ "model.layers.56.self_attn.q_proj",
619
+ "model.layers.56.self_attn.v_proj",
620
+ "model.layers.57.mlp.shared_mlp.down_proj",
621
+ "model.layers.57.mlp.shared_mlp.gate_proj",
622
+ "model.layers.57.mlp.shared_mlp.up_proj",
623
+ "model.layers.57.mlp.switch_mlp.down_proj",
624
+ "model.layers.57.mlp.switch_mlp.gate_proj",
625
+ "model.layers.57.mlp.switch_mlp.up_proj",
626
+ "model.layers.57.self_attn.k_proj",
627
+ "model.layers.57.self_attn.o_proj",
628
+ "model.layers.57.self_attn.q_proj",
629
+ "model.layers.57.self_attn.v_proj",
630
+ "model.layers.58.mlp.shared_mlp.down_proj",
631
+ "model.layers.58.mlp.shared_mlp.gate_proj",
632
+ "model.layers.58.mlp.shared_mlp.up_proj",
633
+ "model.layers.58.mlp.switch_mlp.down_proj",
634
+ "model.layers.58.mlp.switch_mlp.gate_proj",
635
+ "model.layers.58.mlp.switch_mlp.up_proj",
636
+ "model.layers.58.self_attn.k_proj",
637
+ "model.layers.58.self_attn.o_proj",
638
+ "model.layers.58.self_attn.q_proj",
639
+ "model.layers.58.self_attn.v_proj",
640
+ "model.layers.59.mlp.shared_mlp.down_proj",
641
+ "model.layers.59.mlp.shared_mlp.gate_proj",
642
+ "model.layers.59.mlp.shared_mlp.up_proj",
643
+ "model.layers.59.mlp.switch_mlp.down_proj",
644
+ "model.layers.59.mlp.switch_mlp.gate_proj",
645
+ "model.layers.59.mlp.switch_mlp.up_proj",
646
+ "model.layers.59.self_attn.k_proj",
647
+ "model.layers.59.self_attn.o_proj",
648
+ "model.layers.59.self_attn.q_proj",
649
+ "model.layers.59.self_attn.v_proj",
650
+ "model.layers.6.mlp.shared_mlp.down_proj",
651
+ "model.layers.6.mlp.shared_mlp.gate_proj",
652
+ "model.layers.6.mlp.shared_mlp.up_proj",
653
+ "model.layers.6.mlp.switch_mlp.down_proj",
654
+ "model.layers.6.mlp.switch_mlp.gate_proj",
655
+ "model.layers.6.mlp.switch_mlp.up_proj",
656
+ "model.layers.6.self_attn.k_proj",
657
+ "model.layers.6.self_attn.o_proj",
658
+ "model.layers.6.self_attn.q_proj",
659
+ "model.layers.6.self_attn.v_proj",
660
+ "model.layers.60.mlp.shared_mlp.down_proj",
661
+ "model.layers.60.mlp.shared_mlp.gate_proj",
662
+ "model.layers.60.mlp.shared_mlp.up_proj",
663
+ "model.layers.60.mlp.switch_mlp.down_proj",
664
+ "model.layers.60.mlp.switch_mlp.gate_proj",
665
+ "model.layers.60.mlp.switch_mlp.up_proj",
666
+ "model.layers.60.self_attn.k_proj",
667
+ "model.layers.60.self_attn.o_proj",
668
+ "model.layers.60.self_attn.q_proj",
669
+ "model.layers.60.self_attn.v_proj",
670
+ "model.layers.61.mlp.shared_mlp.down_proj",
671
+ "model.layers.61.mlp.shared_mlp.gate_proj",
672
+ "model.layers.61.mlp.shared_mlp.up_proj",
673
+ "model.layers.61.mlp.switch_mlp.down_proj",
674
+ "model.layers.61.mlp.switch_mlp.gate_proj",
675
+ "model.layers.61.mlp.switch_mlp.up_proj",
676
+ "model.layers.61.self_attn.k_proj",
677
+ "model.layers.61.self_attn.o_proj",
678
+ "model.layers.61.self_attn.q_proj",
679
+ "model.layers.61.self_attn.v_proj",
680
+ "model.layers.62.mlp.shared_mlp.down_proj",
681
+ "model.layers.62.mlp.shared_mlp.gate_proj",
682
+ "model.layers.62.mlp.shared_mlp.up_proj",
683
+ "model.layers.62.mlp.switch_mlp.down_proj",
684
+ "model.layers.62.mlp.switch_mlp.gate_proj",
685
+ "model.layers.62.mlp.switch_mlp.up_proj",
686
+ "model.layers.62.self_attn.k_proj",
687
+ "model.layers.62.self_attn.o_proj",
688
+ "model.layers.62.self_attn.q_proj",
689
+ "model.layers.62.self_attn.v_proj",
690
+ "model.layers.63.mlp.shared_mlp.down_proj",
691
+ "model.layers.63.mlp.shared_mlp.gate_proj",
692
+ "model.layers.63.mlp.shared_mlp.up_proj",
693
+ "model.layers.63.mlp.switch_mlp.down_proj",
694
+ "model.layers.63.mlp.switch_mlp.gate_proj",
695
+ "model.layers.63.mlp.switch_mlp.up_proj",
696
+ "model.layers.63.self_attn.k_proj",
697
+ "model.layers.63.self_attn.o_proj",
698
+ "model.layers.63.self_attn.q_proj",
699
+ "model.layers.63.self_attn.v_proj",
700
+ "model.layers.64.mlp.shared_mlp.down_proj",
701
+ "model.layers.64.mlp.shared_mlp.gate_proj",
702
+ "model.layers.64.mlp.shared_mlp.up_proj",
703
+ "model.layers.64.mlp.switch_mlp.down_proj",
704
+ "model.layers.64.mlp.switch_mlp.gate_proj",
705
+ "model.layers.64.mlp.switch_mlp.up_proj",
706
+ "model.layers.64.self_attn.k_proj",
707
+ "model.layers.64.self_attn.o_proj",
708
+ "model.layers.64.self_attn.q_proj",
709
+ "model.layers.64.self_attn.v_proj",
710
+ "model.layers.65.mlp.shared_mlp.down_proj",
711
+ "model.layers.65.mlp.shared_mlp.gate_proj",
712
+ "model.layers.65.mlp.shared_mlp.up_proj",
713
+ "model.layers.65.mlp.switch_mlp.down_proj",
714
+ "model.layers.65.mlp.switch_mlp.gate_proj",
715
+ "model.layers.65.mlp.switch_mlp.up_proj",
716
+ "model.layers.65.self_attn.k_proj",
717
+ "model.layers.65.self_attn.o_proj",
718
+ "model.layers.65.self_attn.q_proj",
719
+ "model.layers.65.self_attn.v_proj",
720
+ "model.layers.66.mlp.shared_mlp.down_proj",
721
+ "model.layers.66.mlp.shared_mlp.gate_proj",
722
+ "model.layers.66.mlp.shared_mlp.up_proj",
723
+ "model.layers.66.mlp.switch_mlp.down_proj",
724
+ "model.layers.66.mlp.switch_mlp.gate_proj",
725
+ "model.layers.66.mlp.switch_mlp.up_proj",
726
+ "model.layers.66.self_attn.k_proj",
727
+ "model.layers.66.self_attn.o_proj",
728
+ "model.layers.66.self_attn.q_proj",
729
+ "model.layers.66.self_attn.v_proj",
730
+ "model.layers.67.mlp.shared_mlp.down_proj",
731
+ "model.layers.67.mlp.shared_mlp.gate_proj",
732
+ "model.layers.67.mlp.shared_mlp.up_proj",
733
+ "model.layers.67.mlp.switch_mlp.down_proj",
734
+ "model.layers.67.mlp.switch_mlp.gate_proj",
735
+ "model.layers.67.mlp.switch_mlp.up_proj",
736
+ "model.layers.67.self_attn.k_proj",
737
+ "model.layers.67.self_attn.o_proj",
738
+ "model.layers.67.self_attn.q_proj",
739
+ "model.layers.67.self_attn.v_proj",
740
+ "model.layers.68.mlp.shared_mlp.down_proj",
741
+ "model.layers.68.mlp.shared_mlp.gate_proj",
742
+ "model.layers.68.mlp.shared_mlp.up_proj",
743
+ "model.layers.68.mlp.switch_mlp.down_proj",
744
+ "model.layers.68.mlp.switch_mlp.gate_proj",
745
+ "model.layers.68.mlp.switch_mlp.up_proj",
746
+ "model.layers.68.self_attn.k_proj",
747
+ "model.layers.68.self_attn.o_proj",
748
+ "model.layers.68.self_attn.q_proj",
749
+ "model.layers.68.self_attn.v_proj",
750
+ "model.layers.69.mlp.shared_mlp.down_proj",
751
+ "model.layers.69.mlp.shared_mlp.gate_proj",
752
+ "model.layers.69.mlp.shared_mlp.up_proj",
753
+ "model.layers.69.mlp.switch_mlp.down_proj",
754
+ "model.layers.69.mlp.switch_mlp.gate_proj",
755
+ "model.layers.69.mlp.switch_mlp.up_proj",
756
+ "model.layers.69.self_attn.k_proj",
757
+ "model.layers.69.self_attn.o_proj",
758
+ "model.layers.69.self_attn.q_proj",
759
+ "model.layers.69.self_attn.v_proj",
760
+ "model.layers.7.mlp.shared_mlp.down_proj",
761
+ "model.layers.7.mlp.shared_mlp.gate_proj",
762
+ "model.layers.7.mlp.shared_mlp.up_proj",
763
+ "model.layers.7.mlp.switch_mlp.down_proj",
764
+ "model.layers.7.mlp.switch_mlp.gate_proj",
765
+ "model.layers.7.mlp.switch_mlp.up_proj",
766
+ "model.layers.7.self_attn.k_proj",
767
+ "model.layers.7.self_attn.o_proj",
768
+ "model.layers.7.self_attn.q_proj",
769
+ "model.layers.7.self_attn.v_proj",
770
+ "model.layers.70.mlp.shared_mlp.down_proj",
771
+ "model.layers.70.mlp.shared_mlp.gate_proj",
772
+ "model.layers.70.mlp.shared_mlp.up_proj",
773
+ "model.layers.70.mlp.switch_mlp.down_proj",
774
+ "model.layers.70.mlp.switch_mlp.gate_proj",
775
+ "model.layers.70.mlp.switch_mlp.up_proj",
776
+ "model.layers.70.self_attn.k_proj",
777
+ "model.layers.70.self_attn.o_proj",
778
+ "model.layers.70.self_attn.q_proj",
779
+ "model.layers.70.self_attn.v_proj",
780
+ "model.layers.71.mlp.shared_mlp.down_proj",
781
+ "model.layers.71.mlp.shared_mlp.gate_proj",
782
+ "model.layers.71.mlp.shared_mlp.up_proj",
783
+ "model.layers.71.mlp.switch_mlp.down_proj",
784
+ "model.layers.71.mlp.switch_mlp.gate_proj",
785
+ "model.layers.71.mlp.switch_mlp.up_proj",
786
+ "model.layers.71.self_attn.k_proj",
787
+ "model.layers.71.self_attn.o_proj",
788
+ "model.layers.71.self_attn.q_proj",
789
+ "model.layers.71.self_attn.v_proj",
790
+ "model.layers.72.mlp.shared_mlp.down_proj",
791
+ "model.layers.72.mlp.shared_mlp.gate_proj",
792
+ "model.layers.72.mlp.shared_mlp.up_proj",
793
+ "model.layers.72.mlp.switch_mlp.down_proj",
794
+ "model.layers.72.mlp.switch_mlp.gate_proj",
795
+ "model.layers.72.mlp.switch_mlp.up_proj",
796
+ "model.layers.72.self_attn.k_proj",
797
+ "model.layers.72.self_attn.o_proj",
798
+ "model.layers.72.self_attn.q_proj",
799
+ "model.layers.72.self_attn.v_proj",
800
+ "model.layers.73.mlp.shared_mlp.down_proj",
801
+ "model.layers.73.mlp.shared_mlp.gate_proj",
802
+ "model.layers.73.mlp.shared_mlp.up_proj",
803
+ "model.layers.73.mlp.switch_mlp.down_proj",
804
+ "model.layers.73.mlp.switch_mlp.gate_proj",
805
+ "model.layers.73.mlp.switch_mlp.up_proj",
806
+ "model.layers.73.self_attn.k_proj",
807
+ "model.layers.73.self_attn.o_proj",
808
+ "model.layers.73.self_attn.q_proj",
809
+ "model.layers.73.self_attn.v_proj",
810
+ "model.layers.74.mlp.shared_mlp.down_proj",
811
+ "model.layers.74.mlp.shared_mlp.gate_proj",
812
+ "model.layers.74.mlp.shared_mlp.up_proj",
813
+ "model.layers.74.mlp.switch_mlp.down_proj",
814
+ "model.layers.74.mlp.switch_mlp.gate_proj",
815
+ "model.layers.74.mlp.switch_mlp.up_proj",
816
+ "model.layers.74.self_attn.k_proj",
817
+ "model.layers.74.self_attn.o_proj",
818
+ "model.layers.74.self_attn.q_proj",
819
+ "model.layers.74.self_attn.v_proj",
820
+ "model.layers.75.mlp.shared_mlp.down_proj",
821
+ "model.layers.75.mlp.shared_mlp.gate_proj",
822
+ "model.layers.75.mlp.shared_mlp.up_proj",
823
+ "model.layers.75.mlp.switch_mlp.down_proj",
824
+ "model.layers.75.mlp.switch_mlp.gate_proj",
825
+ "model.layers.75.mlp.switch_mlp.up_proj",
826
+ "model.layers.75.self_attn.k_proj",
827
+ "model.layers.75.self_attn.o_proj",
828
+ "model.layers.75.self_attn.q_proj",
829
+ "model.layers.75.self_attn.v_proj",
830
+ "model.layers.76.mlp.shared_mlp.down_proj",
831
+ "model.layers.76.mlp.shared_mlp.gate_proj",
832
+ "model.layers.76.mlp.shared_mlp.up_proj",
833
+ "model.layers.76.mlp.switch_mlp.down_proj",
834
+ "model.layers.76.mlp.switch_mlp.gate_proj",
835
+ "model.layers.76.mlp.switch_mlp.up_proj",
836
+ "model.layers.76.self_attn.k_proj",
837
+ "model.layers.76.self_attn.o_proj",
838
+ "model.layers.76.self_attn.q_proj",
839
+ "model.layers.76.self_attn.v_proj",
840
+ "model.layers.77.mlp.shared_mlp.down_proj",
841
+ "model.layers.77.mlp.shared_mlp.gate_proj",
842
+ "model.layers.77.mlp.shared_mlp.up_proj",
843
+ "model.layers.77.mlp.switch_mlp.down_proj",
844
+ "model.layers.77.mlp.switch_mlp.gate_proj",
845
+ "model.layers.77.mlp.switch_mlp.up_proj",
846
+ "model.layers.77.self_attn.k_proj",
847
+ "model.layers.77.self_attn.o_proj",
848
+ "model.layers.77.self_attn.q_proj",
849
+ "model.layers.77.self_attn.v_proj",
850
+ "model.layers.78.mlp.shared_mlp.down_proj",
851
+ "model.layers.78.mlp.shared_mlp.gate_proj",
852
+ "model.layers.78.mlp.shared_mlp.up_proj",
853
+ "model.layers.78.mlp.switch_mlp.down_proj",
854
+ "model.layers.78.mlp.switch_mlp.gate_proj",
855
+ "model.layers.78.mlp.switch_mlp.up_proj",
856
+ "model.layers.78.self_attn.k_proj",
857
+ "model.layers.78.self_attn.o_proj",
858
+ "model.layers.78.self_attn.q_proj",
859
+ "model.layers.78.self_attn.v_proj",
860
+ "model.layers.79.mlp.shared_mlp.down_proj",
861
+ "model.layers.79.mlp.shared_mlp.gate_proj",
862
+ "model.layers.79.mlp.shared_mlp.up_proj",
863
+ "model.layers.79.mlp.switch_mlp.down_proj",
864
+ "model.layers.79.mlp.switch_mlp.gate_proj",
865
+ "model.layers.79.mlp.switch_mlp.up_proj",
866
+ "model.layers.79.self_attn.k_proj",
867
+ "model.layers.79.self_attn.o_proj",
868
+ "model.layers.79.self_attn.q_proj",
869
+ "model.layers.79.self_attn.v_proj",
870
+ "model.layers.8.mlp.shared_mlp.down_proj",
871
+ "model.layers.8.mlp.shared_mlp.gate_proj",
872
+ "model.layers.8.mlp.shared_mlp.up_proj",
873
+ "model.layers.8.mlp.switch_mlp.down_proj",
874
+ "model.layers.8.mlp.switch_mlp.gate_proj",
875
+ "model.layers.8.mlp.switch_mlp.up_proj",
876
+ "model.layers.8.self_attn.k_proj",
877
+ "model.layers.8.self_attn.o_proj",
878
+ "model.layers.8.self_attn.q_proj",
879
+ "model.layers.8.self_attn.v_proj",
880
+ "model.layers.9.mlp.shared_mlp.down_proj",
881
+ "model.layers.9.mlp.shared_mlp.gate_proj",
882
+ "model.layers.9.mlp.shared_mlp.up_proj",
883
+ "model.layers.9.mlp.switch_mlp.down_proj",
884
+ "model.layers.9.mlp.switch_mlp.gate_proj",
885
+ "model.layers.9.mlp.switch_mlp.up_proj",
886
+ "model.layers.9.self_attn.k_proj",
887
+ "model.layers.9.self_attn.o_proj",
888
+ "model.layers.9.self_attn.q_proj",
889
+ "model.layers.9.self_attn.v_proj"
890
+ ],
891
+ "missing": [
892
+ "lm_head",
893
+ "model.embed_tokens"
894
+ ],
895
+ "mismatched": [],
896
+ "zero_count_experts": 0
897
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|hy_begin_of_sentence:opensource|>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "<|hy_eos:opensource|>",
6
+ "is_local": true,
7
+ "local_files_only": true,
8
+ "model_max_length": 1000000000000000019884624838656,
9
+ "pad_token": "<|hy_pad:opensource|>",
10
+ "token_suffix": ":opensource",
11
+ "tokenizer_class": "TokenizersBackend",
12
+ "tool_parser_type": "hy_v3_opensource"
13
+ }