anneketh-vij commited on
Commit
d9bfce6
·
verified ·
1 Parent(s): 6d863e4

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. chat_template.jinja +65 -0
  3. config.json +499 -0
  4. configuration_afmoe.py +133 -0
  5. generation_config.json +7 -0
  6. model-00001-of-00043.safetensors +3 -0
  7. model-00002-of-00043.safetensors +3 -0
  8. model-00003-of-00043.safetensors +3 -0
  9. model-00004-of-00043.safetensors +3 -0
  10. model-00005-of-00043.safetensors +3 -0
  11. model-00006-of-00043.safetensors +3 -0
  12. model-00007-of-00043.safetensors +3 -0
  13. model-00008-of-00043.safetensors +3 -0
  14. model-00009-of-00043.safetensors +3 -0
  15. model-00010-of-00043.safetensors +3 -0
  16. model-00011-of-00043.safetensors +3 -0
  17. model-00012-of-00043.safetensors +3 -0
  18. model-00013-of-00043.safetensors +3 -0
  19. model-00014-of-00043.safetensors +3 -0
  20. model-00015-of-00043.safetensors +3 -0
  21. model-00016-of-00043.safetensors +3 -0
  22. model-00017-of-00043.safetensors +3 -0
  23. model-00018-of-00043.safetensors +3 -0
  24. model-00019-of-00043.safetensors +3 -0
  25. model-00020-of-00043.safetensors +3 -0
  26. model-00021-of-00043.safetensors +3 -0
  27. model-00022-of-00043.safetensors +3 -0
  28. model-00023-of-00043.safetensors +3 -0
  29. model-00024-of-00043.safetensors +3 -0
  30. model-00025-of-00043.safetensors +3 -0
  31. model-00026-of-00043.safetensors +3 -0
  32. model-00027-of-00043.safetensors +3 -0
  33. model-00028-of-00043.safetensors +3 -0
  34. model-00029-of-00043.safetensors +3 -0
  35. model-00030-of-00043.safetensors +3 -0
  36. model-00031-of-00043.safetensors +3 -0
  37. model-00032-of-00043.safetensors +3 -0
  38. model-00033-of-00043.safetensors +3 -0
  39. model-00034-of-00043.safetensors +3 -0
  40. model-00035-of-00043.safetensors +3 -0
  41. model-00036-of-00043.safetensors +3 -0
  42. model-00037-of-00043.safetensors +3 -0
  43. model-00038-of-00043.safetensors +3 -0
  44. model-00039-of-00043.safetensors +3 -0
  45. model-00040-of-00043.safetensors +3 -0
  46. model-00041-of-00043.safetensors +3 -0
  47. model-00042-of-00043.safetensors +3 -0
  48. model-00043-of-00043.safetensors +3 -0
  49. model.safetensors.index.json +3 -0
  50. modeling_afmoe.py +680 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
+ model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}{%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- for message in messages %}
18
+ {%- if message.content is string %}
19
+ {%- set content = message.content %}
20
+ {%- else %}
21
+ {%- set content = '' %}
22
+ {%- endif %}
23
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
24
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
25
+ {%- elif message.role == "assistant" %}
26
+ {{- '<|im_start|>' + message.role + '\n' }}
27
+ {% generation %}
28
+ {{- content}}
29
+ {%- if message.tool_calls %}
30
+ {%- for tool_call in message.tool_calls %}
31
+ {%- if (loop.first and content) or (not loop.first) %}
32
+ {{- '\n' }}
33
+ {%- endif %}
34
+ {%- if tool_call.function %}
35
+ {%- set tool_call = tool_call.function %}
36
+ {%- endif %}
37
+ {{- '<tool_call>\n{"name": "' }}
38
+ {{- tool_call.name }}
39
+ {{- '", "arguments": ' }}
40
+ {%- if tool_call.arguments is string %}
41
+ {{- tool_call.arguments }}
42
+ {%- else %}
43
+ {{- tool_call.arguments | tojson }}
44
+ {%- endif %}
45
+ {{- '}\n</tool_call>' }}
46
+ {%- endfor %}
47
+ {%- endif %}
48
+ {{- '<|im_end|>' }}
49
+ {% endgeneration%}
50
+ {{- '\n' }}
51
+ {%- elif message.role == "tool" %}
52
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
53
+ {{- '<|im_start|>user' }}
54
+ {%- endif %}
55
+ {{- '\n<tool_response>\n' }}
56
+ {{- content }}
57
+ {{- '\n</tool_response>' }}
58
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
59
+ {{- '<|im_end|>\n' }}
60
+ {%- endif %}
61
+ {%- endif %}
62
+ {%- endfor %}
63
+ {%- if add_generation_prompt %}
64
+ {{- '<|im_start|>assistant\n' }}
65
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,499 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "AfmoeForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_afmoe.AfmoeConfig",
8
+ "AutoModel": "modeling_afmoe.AfmoeModel",
9
+ "AutoModelForCausalLM": "modeling_afmoe.AfmoeForCausalLM"
10
+ },
11
+ "dtype": "bfloat16",
12
+ "global_attn_every_n_layers": 4,
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 3072,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 12288,
18
+ "layer_types": [
19
+ "sliding_attention",
20
+ "sliding_attention",
21
+ "sliding_attention",
22
+ "full_attention",
23
+ "sliding_attention",
24
+ "sliding_attention",
25
+ "sliding_attention",
26
+ "full_attention",
27
+ "sliding_attention",
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "full_attention",
31
+ "sliding_attention",
32
+ "sliding_attention",
33
+ "sliding_attention",
34
+ "full_attention",
35
+ "sliding_attention",
36
+ "sliding_attention",
37
+ "sliding_attention",
38
+ "full_attention",
39
+ "sliding_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "full_attention",
43
+ "sliding_attention",
44
+ "sliding_attention",
45
+ "sliding_attention",
46
+ "full_attention",
47
+ "sliding_attention",
48
+ "sliding_attention",
49
+ "sliding_attention",
50
+ "full_attention",
51
+ "sliding_attention",
52
+ "sliding_attention",
53
+ "sliding_attention",
54
+ "full_attention",
55
+ "sliding_attention",
56
+ "sliding_attention",
57
+ "sliding_attention",
58
+ "full_attention",
59
+ "sliding_attention",
60
+ "sliding_attention",
61
+ "sliding_attention",
62
+ "full_attention",
63
+ "sliding_attention",
64
+ "sliding_attention",
65
+ "sliding_attention",
66
+ "full_attention",
67
+ "sliding_attention",
68
+ "sliding_attention",
69
+ "sliding_attention",
70
+ "full_attention",
71
+ "sliding_attention",
72
+ "sliding_attention",
73
+ "sliding_attention",
74
+ "full_attention",
75
+ "sliding_attention",
76
+ "sliding_attention",
77
+ "sliding_attention",
78
+ "full_attention"
79
+ ],
80
+ "load_balance_coeff": 5e-05,
81
+ "max_position_embeddings": 262144,
82
+ "model_type": "afmoe",
83
+ "moe_intermediate_size": 3072,
84
+ "mup_enabled": true,
85
+ "n_group": 1,
86
+ "num_attention_heads": 48,
87
+ "num_dense_layers": 6,
88
+ "num_expert_groups": 1,
89
+ "num_experts": 256,
90
+ "num_experts_per_tok": 4,
91
+ "num_hidden_layers": 60,
92
+ "num_key_value_heads": 8,
93
+ "num_limited_groups": 1,
94
+ "num_shared_experts": 1,
95
+ "quantization_config": {
96
+ "config_groups": {
97
+ "group_0": {
98
+ "format": "pack-quantized",
99
+ "input_activations": null,
100
+ "output_activations": null,
101
+ "targets": [
102
+ "Linear"
103
+ ],
104
+ "weights": {
105
+ "actorder": null,
106
+ "block_structure": null,
107
+ "dynamic": false,
108
+ "group_size": 128,
109
+ "num_bits": 4,
110
+ "observer": "memoryless_minmax",
111
+ "observer_kwargs": {},
112
+ "scale_dtype": null,
113
+ "strategy": "group",
114
+ "symmetric": true,
115
+ "type": "int",
116
+ "zp_dtype": null
117
+ }
118
+ }
119
+ },
120
+ "format": "pack-quantized",
121
+ "global_compression_ratio": null,
122
+ "ignore": [
123
+ "model.layers.0.self_attn.q_proj",
124
+ "model.layers.0.self_attn.k_proj",
125
+ "model.layers.0.self_attn.v_proj",
126
+ "model.layers.0.self_attn.o_proj",
127
+ "model.layers.0.self_attn.gate_proj",
128
+ "model.layers.1.self_attn.q_proj",
129
+ "model.layers.1.self_attn.k_proj",
130
+ "model.layers.1.self_attn.v_proj",
131
+ "model.layers.1.self_attn.o_proj",
132
+ "model.layers.1.self_attn.gate_proj",
133
+ "model.layers.2.self_attn.q_proj",
134
+ "model.layers.2.self_attn.k_proj",
135
+ "model.layers.2.self_attn.v_proj",
136
+ "model.layers.2.self_attn.o_proj",
137
+ "model.layers.2.self_attn.gate_proj",
138
+ "model.layers.3.self_attn.q_proj",
139
+ "model.layers.3.self_attn.k_proj",
140
+ "model.layers.3.self_attn.v_proj",
141
+ "model.layers.3.self_attn.o_proj",
142
+ "model.layers.3.self_attn.gate_proj",
143
+ "model.layers.4.self_attn.q_proj",
144
+ "model.layers.4.self_attn.k_proj",
145
+ "model.layers.4.self_attn.v_proj",
146
+ "model.layers.4.self_attn.o_proj",
147
+ "model.layers.4.self_attn.gate_proj",
148
+ "model.layers.5.self_attn.q_proj",
149
+ "model.layers.5.self_attn.k_proj",
150
+ "model.layers.5.self_attn.v_proj",
151
+ "model.layers.5.self_attn.o_proj",
152
+ "model.layers.5.self_attn.gate_proj",
153
+ "model.layers.6.self_attn.q_proj",
154
+ "model.layers.6.self_attn.k_proj",
155
+ "model.layers.6.self_attn.v_proj",
156
+ "model.layers.6.self_attn.o_proj",
157
+ "model.layers.6.self_attn.gate_proj",
158
+ "model.layers.6.mlp.router.gate",
159
+ "model.layers.7.self_attn.q_proj",
160
+ "model.layers.7.self_attn.k_proj",
161
+ "model.layers.7.self_attn.v_proj",
162
+ "model.layers.7.self_attn.o_proj",
163
+ "model.layers.7.self_attn.gate_proj",
164
+ "model.layers.7.mlp.router.gate",
165
+ "model.layers.8.self_attn.q_proj",
166
+ "model.layers.8.self_attn.k_proj",
167
+ "model.layers.8.self_attn.v_proj",
168
+ "model.layers.8.self_attn.o_proj",
169
+ "model.layers.8.self_attn.gate_proj",
170
+ "model.layers.8.mlp.router.gate",
171
+ "model.layers.9.self_attn.q_proj",
172
+ "model.layers.9.self_attn.k_proj",
173
+ "model.layers.9.self_attn.v_proj",
174
+ "model.layers.9.self_attn.o_proj",
175
+ "model.layers.9.self_attn.gate_proj",
176
+ "model.layers.9.mlp.router.gate",
177
+ "model.layers.10.self_attn.q_proj",
178
+ "model.layers.10.self_attn.k_proj",
179
+ "model.layers.10.self_attn.v_proj",
180
+ "model.layers.10.self_attn.o_proj",
181
+ "model.layers.10.self_attn.gate_proj",
182
+ "model.layers.10.mlp.router.gate",
183
+ "model.layers.11.self_attn.q_proj",
184
+ "model.layers.11.self_attn.k_proj",
185
+ "model.layers.11.self_attn.v_proj",
186
+ "model.layers.11.self_attn.o_proj",
187
+ "model.layers.11.self_attn.gate_proj",
188
+ "model.layers.11.mlp.router.gate",
189
+ "model.layers.12.self_attn.q_proj",
190
+ "model.layers.12.self_attn.k_proj",
191
+ "model.layers.12.self_attn.v_proj",
192
+ "model.layers.12.self_attn.o_proj",
193
+ "model.layers.12.self_attn.gate_proj",
194
+ "model.layers.12.mlp.router.gate",
195
+ "model.layers.13.self_attn.q_proj",
196
+ "model.layers.13.self_attn.k_proj",
197
+ "model.layers.13.self_attn.v_proj",
198
+ "model.layers.13.self_attn.o_proj",
199
+ "model.layers.13.self_attn.gate_proj",
200
+ "model.layers.13.mlp.router.gate",
201
+ "model.layers.14.self_attn.q_proj",
202
+ "model.layers.14.self_attn.k_proj",
203
+ "model.layers.14.self_attn.v_proj",
204
+ "model.layers.14.self_attn.o_proj",
205
+ "model.layers.14.self_attn.gate_proj",
206
+ "model.layers.14.mlp.router.gate",
207
+ "model.layers.15.self_attn.q_proj",
208
+ "model.layers.15.self_attn.k_proj",
209
+ "model.layers.15.self_attn.v_proj",
210
+ "model.layers.15.self_attn.o_proj",
211
+ "model.layers.15.self_attn.gate_proj",
212
+ "model.layers.15.mlp.router.gate",
213
+ "model.layers.16.self_attn.q_proj",
214
+ "model.layers.16.self_attn.k_proj",
215
+ "model.layers.16.self_attn.v_proj",
216
+ "model.layers.16.self_attn.o_proj",
217
+ "model.layers.16.self_attn.gate_proj",
218
+ "model.layers.16.mlp.router.gate",
219
+ "model.layers.17.self_attn.q_proj",
220
+ "model.layers.17.self_attn.k_proj",
221
+ "model.layers.17.self_attn.v_proj",
222
+ "model.layers.17.self_attn.o_proj",
223
+ "model.layers.17.self_attn.gate_proj",
224
+ "model.layers.17.mlp.router.gate",
225
+ "model.layers.18.self_attn.q_proj",
226
+ "model.layers.18.self_attn.k_proj",
227
+ "model.layers.18.self_attn.v_proj",
228
+ "model.layers.18.self_attn.o_proj",
229
+ "model.layers.18.self_attn.gate_proj",
230
+ "model.layers.18.mlp.router.gate",
231
+ "model.layers.19.self_attn.q_proj",
232
+ "model.layers.19.self_attn.k_proj",
233
+ "model.layers.19.self_attn.v_proj",
234
+ "model.layers.19.self_attn.o_proj",
235
+ "model.layers.19.self_attn.gate_proj",
236
+ "model.layers.19.mlp.router.gate",
237
+ "model.layers.20.self_attn.q_proj",
238
+ "model.layers.20.self_attn.k_proj",
239
+ "model.layers.20.self_attn.v_proj",
240
+ "model.layers.20.self_attn.o_proj",
241
+ "model.layers.20.self_attn.gate_proj",
242
+ "model.layers.20.mlp.router.gate",
243
+ "model.layers.21.self_attn.q_proj",
244
+ "model.layers.21.self_attn.k_proj",
245
+ "model.layers.21.self_attn.v_proj",
246
+ "model.layers.21.self_attn.o_proj",
247
+ "model.layers.21.self_attn.gate_proj",
248
+ "model.layers.21.mlp.router.gate",
249
+ "model.layers.22.self_attn.q_proj",
250
+ "model.layers.22.self_attn.k_proj",
251
+ "model.layers.22.self_attn.v_proj",
252
+ "model.layers.22.self_attn.o_proj",
253
+ "model.layers.22.self_attn.gate_proj",
254
+ "model.layers.22.mlp.router.gate",
255
+ "model.layers.23.self_attn.q_proj",
256
+ "model.layers.23.self_attn.k_proj",
257
+ "model.layers.23.self_attn.v_proj",
258
+ "model.layers.23.self_attn.o_proj",
259
+ "model.layers.23.self_attn.gate_proj",
260
+ "model.layers.23.mlp.router.gate",
261
+ "model.layers.24.self_attn.q_proj",
262
+ "model.layers.24.self_attn.k_proj",
263
+ "model.layers.24.self_attn.v_proj",
264
+ "model.layers.24.self_attn.o_proj",
265
+ "model.layers.24.self_attn.gate_proj",
266
+ "model.layers.24.mlp.router.gate",
267
+ "model.layers.25.self_attn.q_proj",
268
+ "model.layers.25.self_attn.k_proj",
269
+ "model.layers.25.self_attn.v_proj",
270
+ "model.layers.25.self_attn.o_proj",
271
+ "model.layers.25.self_attn.gate_proj",
272
+ "model.layers.25.mlp.router.gate",
273
+ "model.layers.26.self_attn.q_proj",
274
+ "model.layers.26.self_attn.k_proj",
275
+ "model.layers.26.self_attn.v_proj",
276
+ "model.layers.26.self_attn.o_proj",
277
+ "model.layers.26.self_attn.gate_proj",
278
+ "model.layers.26.mlp.router.gate",
279
+ "model.layers.27.self_attn.q_proj",
280
+ "model.layers.27.self_attn.k_proj",
281
+ "model.layers.27.self_attn.v_proj",
282
+ "model.layers.27.self_attn.o_proj",
283
+ "model.layers.27.self_attn.gate_proj",
284
+ "model.layers.27.mlp.router.gate",
285
+ "model.layers.28.self_attn.q_proj",
286
+ "model.layers.28.self_attn.k_proj",
287
+ "model.layers.28.self_attn.v_proj",
288
+ "model.layers.28.self_attn.o_proj",
289
+ "model.layers.28.self_attn.gate_proj",
290
+ "model.layers.28.mlp.router.gate",
291
+ "model.layers.29.self_attn.q_proj",
292
+ "model.layers.29.self_attn.k_proj",
293
+ "model.layers.29.self_attn.v_proj",
294
+ "model.layers.29.self_attn.o_proj",
295
+ "model.layers.29.self_attn.gate_proj",
296
+ "model.layers.29.mlp.router.gate",
297
+ "model.layers.30.self_attn.q_proj",
298
+ "model.layers.30.self_attn.k_proj",
299
+ "model.layers.30.self_attn.v_proj",
300
+ "model.layers.30.self_attn.o_proj",
301
+ "model.layers.30.self_attn.gate_proj",
302
+ "model.layers.30.mlp.router.gate",
303
+ "model.layers.31.self_attn.q_proj",
304
+ "model.layers.31.self_attn.k_proj",
305
+ "model.layers.31.self_attn.v_proj",
306
+ "model.layers.31.self_attn.o_proj",
307
+ "model.layers.31.self_attn.gate_proj",
308
+ "model.layers.31.mlp.router.gate",
309
+ "model.layers.32.self_attn.q_proj",
310
+ "model.layers.32.self_attn.k_proj",
311
+ "model.layers.32.self_attn.v_proj",
312
+ "model.layers.32.self_attn.o_proj",
313
+ "model.layers.32.self_attn.gate_proj",
314
+ "model.layers.32.mlp.router.gate",
315
+ "model.layers.33.self_attn.q_proj",
316
+ "model.layers.33.self_attn.k_proj",
317
+ "model.layers.33.self_attn.v_proj",
318
+ "model.layers.33.self_attn.o_proj",
319
+ "model.layers.33.self_attn.gate_proj",
320
+ "model.layers.33.mlp.router.gate",
321
+ "model.layers.34.self_attn.q_proj",
322
+ "model.layers.34.self_attn.k_proj",
323
+ "model.layers.34.self_attn.v_proj",
324
+ "model.layers.34.self_attn.o_proj",
325
+ "model.layers.34.self_attn.gate_proj",
326
+ "model.layers.34.mlp.router.gate",
327
+ "model.layers.35.self_attn.q_proj",
328
+ "model.layers.35.self_attn.k_proj",
329
+ "model.layers.35.self_attn.v_proj",
330
+ "model.layers.35.self_attn.o_proj",
331
+ "model.layers.35.self_attn.gate_proj",
332
+ "model.layers.35.mlp.router.gate",
333
+ "model.layers.36.self_attn.q_proj",
334
+ "model.layers.36.self_attn.k_proj",
335
+ "model.layers.36.self_attn.v_proj",
336
+ "model.layers.36.self_attn.o_proj",
337
+ "model.layers.36.self_attn.gate_proj",
338
+ "model.layers.36.mlp.router.gate",
339
+ "model.layers.37.self_attn.q_proj",
340
+ "model.layers.37.self_attn.k_proj",
341
+ "model.layers.37.self_attn.v_proj",
342
+ "model.layers.37.self_attn.o_proj",
343
+ "model.layers.37.self_attn.gate_proj",
344
+ "model.layers.37.mlp.router.gate",
345
+ "model.layers.38.self_attn.q_proj",
346
+ "model.layers.38.self_attn.k_proj",
347
+ "model.layers.38.self_attn.v_proj",
348
+ "model.layers.38.self_attn.o_proj",
349
+ "model.layers.38.self_attn.gate_proj",
350
+ "model.layers.38.mlp.router.gate",
351
+ "model.layers.39.self_attn.q_proj",
352
+ "model.layers.39.self_attn.k_proj",
353
+ "model.layers.39.self_attn.v_proj",
354
+ "model.layers.39.self_attn.o_proj",
355
+ "model.layers.39.self_attn.gate_proj",
356
+ "model.layers.39.mlp.router.gate",
357
+ "model.layers.40.self_attn.q_proj",
358
+ "model.layers.40.self_attn.k_proj",
359
+ "model.layers.40.self_attn.v_proj",
360
+ "model.layers.40.self_attn.o_proj",
361
+ "model.layers.40.self_attn.gate_proj",
362
+ "model.layers.40.mlp.router.gate",
363
+ "model.layers.41.self_attn.q_proj",
364
+ "model.layers.41.self_attn.k_proj",
365
+ "model.layers.41.self_attn.v_proj",
366
+ "model.layers.41.self_attn.o_proj",
367
+ "model.layers.41.self_attn.gate_proj",
368
+ "model.layers.41.mlp.router.gate",
369
+ "model.layers.42.self_attn.q_proj",
370
+ "model.layers.42.self_attn.k_proj",
371
+ "model.layers.42.self_attn.v_proj",
372
+ "model.layers.42.self_attn.o_proj",
373
+ "model.layers.42.self_attn.gate_proj",
374
+ "model.layers.42.mlp.router.gate",
375
+ "model.layers.43.self_attn.q_proj",
376
+ "model.layers.43.self_attn.k_proj",
377
+ "model.layers.43.self_attn.v_proj",
378
+ "model.layers.43.self_attn.o_proj",
379
+ "model.layers.43.self_attn.gate_proj",
380
+ "model.layers.43.mlp.router.gate",
381
+ "model.layers.44.self_attn.q_proj",
382
+ "model.layers.44.self_attn.k_proj",
383
+ "model.layers.44.self_attn.v_proj",
384
+ "model.layers.44.self_attn.o_proj",
385
+ "model.layers.44.self_attn.gate_proj",
386
+ "model.layers.44.mlp.router.gate",
387
+ "model.layers.45.self_attn.q_proj",
388
+ "model.layers.45.self_attn.k_proj",
389
+ "model.layers.45.self_attn.v_proj",
390
+ "model.layers.45.self_attn.o_proj",
391
+ "model.layers.45.self_attn.gate_proj",
392
+ "model.layers.45.mlp.router.gate",
393
+ "model.layers.46.self_attn.q_proj",
394
+ "model.layers.46.self_attn.k_proj",
395
+ "model.layers.46.self_attn.v_proj",
396
+ "model.layers.46.self_attn.o_proj",
397
+ "model.layers.46.self_attn.gate_proj",
398
+ "model.layers.46.mlp.router.gate",
399
+ "model.layers.47.self_attn.q_proj",
400
+ "model.layers.47.self_attn.k_proj",
401
+ "model.layers.47.self_attn.v_proj",
402
+ "model.layers.47.self_attn.o_proj",
403
+ "model.layers.47.self_attn.gate_proj",
404
+ "model.layers.47.mlp.router.gate",
405
+ "model.layers.48.self_attn.q_proj",
406
+ "model.layers.48.self_attn.k_proj",
407
+ "model.layers.48.self_attn.v_proj",
408
+ "model.layers.48.self_attn.o_proj",
409
+ "model.layers.48.self_attn.gate_proj",
410
+ "model.layers.48.mlp.router.gate",
411
+ "model.layers.49.self_attn.q_proj",
412
+ "model.layers.49.self_attn.k_proj",
413
+ "model.layers.49.self_attn.v_proj",
414
+ "model.layers.49.self_attn.o_proj",
415
+ "model.layers.49.self_attn.gate_proj",
416
+ "model.layers.49.mlp.router.gate",
417
+ "model.layers.50.self_attn.q_proj",
418
+ "model.layers.50.self_attn.k_proj",
419
+ "model.layers.50.self_attn.v_proj",
420
+ "model.layers.50.self_attn.o_proj",
421
+ "model.layers.50.self_attn.gate_proj",
422
+ "model.layers.50.mlp.router.gate",
423
+ "model.layers.51.self_attn.q_proj",
424
+ "model.layers.51.self_attn.k_proj",
425
+ "model.layers.51.self_attn.v_proj",
426
+ "model.layers.51.self_attn.o_proj",
427
+ "model.layers.51.self_attn.gate_proj",
428
+ "model.layers.51.mlp.router.gate",
429
+ "model.layers.52.self_attn.q_proj",
430
+ "model.layers.52.self_attn.k_proj",
431
+ "model.layers.52.self_attn.v_proj",
432
+ "model.layers.52.self_attn.o_proj",
433
+ "model.layers.52.self_attn.gate_proj",
434
+ "model.layers.52.mlp.router.gate",
435
+ "model.layers.53.self_attn.q_proj",
436
+ "model.layers.53.self_attn.k_proj",
437
+ "model.layers.53.self_attn.v_proj",
438
+ "model.layers.53.self_attn.o_proj",
439
+ "model.layers.53.self_attn.gate_proj",
440
+ "model.layers.53.mlp.router.gate",
441
+ "model.layers.54.self_attn.q_proj",
442
+ "model.layers.54.self_attn.k_proj",
443
+ "model.layers.54.self_attn.v_proj",
444
+ "model.layers.54.self_attn.o_proj",
445
+ "model.layers.54.self_attn.gate_proj",
446
+ "model.layers.54.mlp.router.gate",
447
+ "model.layers.55.self_attn.q_proj",
448
+ "model.layers.55.self_attn.k_proj",
449
+ "model.layers.55.self_attn.v_proj",
450
+ "model.layers.55.self_attn.o_proj",
451
+ "model.layers.55.self_attn.gate_proj",
452
+ "model.layers.55.mlp.router.gate",
453
+ "model.layers.56.self_attn.q_proj",
454
+ "model.layers.56.self_attn.k_proj",
455
+ "model.layers.56.self_attn.v_proj",
456
+ "model.layers.56.self_attn.o_proj",
457
+ "model.layers.56.self_attn.gate_proj",
458
+ "model.layers.56.mlp.router.gate",
459
+ "model.layers.57.self_attn.q_proj",
460
+ "model.layers.57.self_attn.k_proj",
461
+ "model.layers.57.self_attn.v_proj",
462
+ "model.layers.57.self_attn.o_proj",
463
+ "model.layers.57.self_attn.gate_proj",
464
+ "model.layers.57.mlp.router.gate",
465
+ "model.layers.58.self_attn.q_proj",
466
+ "model.layers.58.self_attn.k_proj",
467
+ "model.layers.58.self_attn.v_proj",
468
+ "model.layers.58.self_attn.o_proj",
469
+ "model.layers.58.self_attn.gate_proj",
470
+ "model.layers.58.mlp.router.gate",
471
+ "model.layers.59.self_attn.q_proj",
472
+ "model.layers.59.self_attn.k_proj",
473
+ "model.layers.59.self_attn.v_proj",
474
+ "model.layers.59.self_attn.o_proj",
475
+ "model.layers.59.self_attn.gate_proj",
476
+ "model.layers.59.mlp.router.gate",
477
+ "lm_head"
478
+ ],
479
+ "kv_cache_scheme": null,
480
+ "quant_method": "compressed-tensors",
481
+ "quantization_status": "compressed",
482
+ "sparsity_config": {},
483
+ "transform_config": {},
484
+ "version": "0.13.1.a20260205"
485
+ },
486
+ "rms_norm_eps": 1e-05,
487
+ "rope_scaling": null,
488
+ "rope_theta": 10000,
489
+ "route_norm": true,
490
+ "route_scale": 2.448,
491
+ "score_func": "sigmoid",
492
+ "sliding_window": 4096,
493
+ "tie_word_embeddings": false,
494
+ "topk_group": 1,
495
+ "transformers_version": "4.57.6",
496
+ "use_cache": true,
497
+ "use_grouped_mm": true,
498
+ "vocab_size": 200192
499
+ }
configuration_afmoe.py ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ from transformers.configuration_utils import PretrainedConfig
16
+ from transformers.modeling_rope_utils import rope_config_validation
17
+ from transformers.configuration_utils import layer_type_validation
18
+ from transformers.utils import logging
19
+
20
+ logger = logging.get_logger(__name__)
21
+
22
+ class AfmoeConfig(PretrainedConfig):
23
+ """
24
+ n_group (`int`, *optional*, defaults to 1):
25
+ Number of groups for routed experts.
26
+ topk_group (`int`, *optional*, defaults to 1):
27
+ Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
28
+ """
29
+ model_type = "afmoe"
30
+ base_model_pp_plan = {
31
+ "embed_tokens": (["input_ids"], ["inputs_embeds"]),
32
+ "layers": (["hidden_states", "attention_mask"], ["hidden_states"]),
33
+ "norm": (["hidden_states"], ["hidden_states"]),
34
+ }
35
+
36
+ def __init__(
37
+ self,
38
+ num_hidden_layers: int = 32,
39
+ vocab_size: int = 200192,
40
+ hidden_size: int = 2048,
41
+ intermediate_size: int = 6144,
42
+ moe_intermediate_size=1408,
43
+ num_dense_layers=1,
44
+ num_attention_heads=16,
45
+ num_key_value_heads=None,
46
+ head_dim=128,
47
+ hidden_act="silu",
48
+ max_position_embeddings=16384,
49
+ initializer_range=0.02,
50
+ rms_norm_eps=1e-5,
51
+ use_cache=True,
52
+ tie_word_embeddings=False,
53
+ rope_theta=10000.0,
54
+ rope_scaling=None,
55
+ num_experts=64,
56
+ num_experts_per_tok=6,
57
+ num_shared_experts=2,
58
+ num_expert_groups=1,
59
+ num_limited_groups=1,
60
+ score_func="sigmoid",
61
+ route_norm=True,
62
+ route_scale=1.0,
63
+ global_attn_every_n_layers=4,
64
+ sliding_window=1024,
65
+ mup_enabled=False,
66
+ layer_types=None,
67
+ attention_dropout: float = 0.0,
68
+ n_group: int = 1,
69
+ topk_group: int = 1,
70
+ **kwargs,
71
+ ):
72
+ self.vocab_size = vocab_size
73
+ self.max_position_embeddings = max_position_embeddings
74
+ self.hidden_size = hidden_size
75
+ self.intermediate_size = intermediate_size
76
+ self.num_hidden_layers = num_hidden_layers
77
+ self.num_dense_layers = num_dense_layers
78
+ self.num_attention_heads = num_attention_heads
79
+ self.head_dim = head_dim
80
+ self.hidden_act = hidden_act
81
+ self.initializer_range = initializer_range
82
+ self.rms_norm_eps = rms_norm_eps
83
+ self.use_cache = use_cache
84
+ self.rope_theta = rope_theta
85
+ self.rope_scaling = rope_scaling
86
+
87
+
88
+ # MoE specific
89
+ self.moe_intermediate_size = moe_intermediate_size
90
+ self.num_experts_per_tok = num_experts_per_tok
91
+ self.n_group = n_group
92
+ self.topk_group = topk_group
93
+ self.num_experts = num_experts
94
+ self.num_shared_experts = num_shared_experts
95
+ self.num_expert_groups = num_expert_groups
96
+ self.num_limited_groups = num_limited_groups
97
+ self.score_func = score_func
98
+ self.route_norm = route_norm
99
+ self.route_scale = route_scale
100
+
101
+
102
+ # Attention specific
103
+ self.attention_dropout = attention_dropout
104
+ self.global_attn_every_n_layers = global_attn_every_n_layers
105
+ self.sliding_window = sliding_window
106
+ self.layer_types = layer_types
107
+ if self.layer_types is None:
108
+ self.layer_types = [
109
+ "sliding_attention" if bool((i + 1) % global_attn_every_n_layers) else "full_attention" for i in range(self.num_hidden_layers)
110
+ ]
111
+ layer_type_validation(self.layer_types)
112
+
113
+ # muP specific
114
+ self.mup_enabled = mup_enabled
115
+
116
+ if num_key_value_heads is None:
117
+ num_key_value_heads = num_attention_heads
118
+
119
+ self.num_key_value_heads = num_key_value_heads
120
+
121
+
122
+ # Validate rope configs
123
+ if self.rope_scaling is not None and "type" in self.rope_scaling:
124
+ self.rope_scaling["rope_type"] = self.rope_scaling["type"]
125
+ rope_config_validation(self)
126
+
127
+ super().__init__(
128
+ tie_word_embeddings=tie_word_embeddings,
129
+ **kwargs,
130
+ )
131
+
132
+
133
+ __all__ = ["AfmoeConfig"]
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 3,
5
+ "pad_token_id": 12,
6
+ "transformers_version": "4.57.6"
7
+ }
model-00001-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:693a701a7007e8ad7341b9914b046765e83bd80f540f96c908746f5813321c0c
3
+ size 4998314816
model-00002-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fecf9dbf12d82551ae335bfddf3206ca36270e6b922364b9c1b46362daa9bc60
3
+ size 4998729232
model-00003-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de053a01d5876fa1d944cbbaf25846543acb9699868ec53589c3b5291c96b697
3
+ size 4999630856
model-00004-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40959bba5afb11710c4f40e2c16e0ab14393dc27d90a69cfe63c56ee81359dff
3
+ size 4998730128
model-00005-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92e4a10d1786b12a8ab2fbe05a66cf88234002169a2257f19090c873757a8eec
3
+ size 4998732240
model-00006-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:801ff854fcd03a97609f2c2a724b5556ebcb8cbf2dc5833a37b87138d366a946
3
+ size 4999634128
model-00007-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9a5fdaf87026a7dc6d7e4a58a0a3a69035c054563c4edd0775384bf9645f289
3
+ size 4998731568
model-00008-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b6c3c744cc56a2eef15f17e746294329b90c88492b7bf78e38a30531a395242
3
+ size 4998732240
model-00009-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35d070c7a5bbe3afd3c082738c1e4e5ef5751620165995bffd56d0b1a710f69b
3
+ size 4998732240
model-00010-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df441508111e55bab83cf3dba5ce22cbd024c4410df730b63340fad7eb1170eb
3
+ size 4999633760
model-00011-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35ea938eacc58159454a79b75ec0cfc61bfc6ffb1ab951e4156259833853a5ee
3
+ size 4998731936
model-00012-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7126093dad24a8d6f563c4635abedf8f6bafa7f9936ce3998d266bf395ac4197
3
+ size 4998732240
model-00013-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea65d8470b2cdb61696772cefec5719fb80232cb8f9a70e722c03ff901201961
3
+ size 4999634080
model-00014-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e147904632210fb188d8655611137a3d433e6b34d6777f3ec12f06a2e63635a
3
+ size 4998731608
model-00015-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dc84acd99c3c823e04960b59449f23574c3d34c2fd4e6815b3e6c9d416b456f
3
+ size 4998732248
model-00016-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c74252abfcb076f3279dee574789390f63223c467298766b6e99303813c778df
3
+ size 4990666848
model-00017-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c51bcd53e5386578486ffb2de89fcbd399d0f81bcf36c601710183a1e7bb9960
3
+ size 4997966232
model-00018-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e60debb067b7ea39b4b215e3c7f6174aba96bbbf8601450031a1db66266b6111
3
+ size 4998731976
model-00019-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dd482db83aa143e23e3b2b767d7f4dcc27290c1caef360843704c2d23edb388
3
+ size 4998732240
model-00020-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:987efff9321824fae81eb59376469c5ccd12b46d84ae5ce1370657cae2be354d
3
+ size 4999634040
model-00021-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ecd92aba56224baf14cec2f813b68ccedb55f565fe5a6b39ed1d67c46e4f345
3
+ size 4998731656
model-00022-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d95cedd1d652544aeb1f15e35426aa8991cb9ddce295e1370523d2b949ab7d44
3
+ size 4998732240
model-00023-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d85320860244112f7728e3511b7ee1282a50ff155f96205d6459e5fd7339ab75
3
+ size 4999634416
model-00024-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:930c786845bf08b66f9c23e14f5c554a76aa34009c1910c16b6cd07fa65c2b47
3
+ size 4998731496
model-00025-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd59cf5371aa47f5c37038c763120c7a183ca9230db1f6d8fbb77db857f03973
3
+ size 4998732024
model-00026-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ea762ae4584844dd0375bc7d266028973da65f53af6cabf1bdb3ab60b0a036
3
+ size 4998732240
model-00027-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c07cddea6255daf250d813485d25c7f633ffcefd3f68d2b605fd8768c2985401
3
+ size 4999633992
model-00028-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9277029f22df1007a05e2db4318a5287b24ad8d4176d4f3a799bb943ff93627
3
+ size 4998731704
model-00029-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b7588f284bd6a49eb10bc064f5e3d3aad9d431a372ab89364ea5738af8ccba5
3
+ size 4998732248
model-00030-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d755bf79a36a34a4c224a6feb0c4a7f7f8613c7313011fdc8a813cdbc2bdbab6
3
+ size 4999634360
model-00031-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b205db46a0b147621b586e8ca62551250da4badb3d86ace6fda5aa6d4274b164
3
+ size 4998731504
model-00032-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68a00944a880628bfd8cb1d699908ec0507b5e46e917e15bc834e4864b78bc4d
3
+ size 4998732072
model-00033-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fb54c2131ede6db0934cfd452a22407e598632950909f464edb91427fb14651
3
+ size 4998732248
model-00034-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:942a6d5f32ee5f6810bde270856b7df7ced21913f3a0f027788d67f8573ecdb6
3
+ size 4999633944
model-00035-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d80c093d413f50b9b0c1a315af6749ae9ea19382db6ac40b1b8ed83421bc107
3
+ size 4998731752
model-00036-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63f599cd93b3629d261d9e3fe7af966da37e1785e6c7e88ff535be127fbfc3a8
3
+ size 4998732240
model-00037-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d65e88ba24358e195f2df190e78e2e8d6506f03684094926a0b2d1e9a7490c27
3
+ size 4999634264
model-00038-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2f111aef160e913926f6503302631f8fbeb2cba41885d4ced5b8577a983da3a
3
+ size 4998731552
model-00039-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2146a723260dcef461de0bb8bf6087a57da9b1661624e1d14040330f61395310
3
+ size 4998732120
model-00040-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f31628df84bd2b701ed6a5a6e1a3b6ffc7cfc82343b8f3e83ecd3b9a817985fa
3
+ size 4998732240
model-00041-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6967c177261c2180738f56e6b82603254d5e6cee360c91a156c768f5f43f5960
3
+ size 4999633896
model-00042-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:459878198b0d05c3a0048194fa378bd2bbcc7d6eb5f596327fee408f0dee22bb
3
+ size 4998731800
model-00043-of-00043.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:328cd5141cf89ab93c824dc499e7e235b01da0336c3c95f86a7230d5d2762068
3
+ size 3108429960
model.safetensors.index.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46a188bac954c4aa299e6749c6d41ffa4788235cdedb25ea57388795ace26db6
3
+ size 12206302
modeling_afmoe.py ADDED
@@ -0,0 +1,680 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Callable, Optional, Tuple, Union
2
+
3
+ import torch
4
+ import torch.nn.functional as F
5
+ from torch import nn
6
+
7
+ from transformers.activations import ACT2FN
8
+ from transformers.generation import GenerationMixin
9
+ from transformers.modeling_outputs import (
10
+ MoeCausalLMOutputWithPast,
11
+ MoeModelOutputWithPast,
12
+ )
13
+ from transformers.modeling_utils import PreTrainedModel, ALL_ATTENTION_FUNCTIONS
14
+ from transformers.modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update
15
+ from transformers.masking_utils import (
16
+ create_causal_mask,
17
+ create_sliding_window_causal_mask,
18
+ )
19
+ from transformers.modeling_layers import GradientCheckpointingLayer
20
+ from transformers.processing_utils import Unpack
21
+ from transformers.utils import TransformersKwargs
22
+ from transformers.cache_utils import Cache, DynamicCache
23
+ from transformers.integrations import use_kernel_forward_from_hub
24
+
25
+
26
+ try:
27
+ from .configuration_afmoe import AfmoeConfig
28
+ except:
29
+ from configuration_afmoe import AfmoeConfig
30
+
31
+ class AfmoeRotaryEmbedding(nn.Module):
32
+
33
+ def __init__(self, config: AfmoeConfig, device=None):
34
+ super().__init__()
35
+ # BC: "rope_type" was originally "type"
36
+ if hasattr(config, "rope_scaling") and config.rope_scaling is not None:
37
+ self.rope_type = config.rope_scaling.get("rope_type", config.rope_scaling.get("type"))
38
+ else:
39
+ self.rope_type = "default"
40
+ self.max_seq_len_cached = config.max_position_embeddings
41
+ self.original_max_seq_len = config.max_position_embeddings
42
+
43
+ self.config = config
44
+ self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
45
+
46
+ inv_freq, self.attention_scaling = self.rope_init_fn(self.config, device)
47
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
48
+ self.original_inv_freq = self.inv_freq
49
+
50
+ def _dynamic_frequency_update(self, position_ids, device):
51
+ """
52
+ dynamic RoPE layers should recompute `inv_freq` in the following situations:
53
+ 1 - growing beyond the cached sequence length (allow scaling)
54
+ 2 - the current sequence length is in the original scale (avoid losing precision with small sequences)
55
+ """
56
+ seq_len = torch.max(position_ids) + 1
57
+ if seq_len > self.max_seq_len_cached: # growth
58
+ inv_freq, self.attention_scaling = self.rope_init_fn(self.config, device, seq_len=seq_len)
59
+ self.register_buffer("inv_freq", inv_freq, persistent=False) # TODO joao: may break with compilation
60
+ self.max_seq_len_cached = seq_len
61
+
62
+ if seq_len < self.original_max_seq_len and self.max_seq_len_cached > self.original_max_seq_len: # reset
63
+ # This .to() is needed if the model has been moved to a device after being initialized (because
64
+ # the buffer is automatically moved, but not the original copy)
65
+ self.original_inv_freq = self.original_inv_freq.to(device)
66
+ self.register_buffer("inv_freq", self.original_inv_freq, persistent=False)
67
+ self.max_seq_len_cached = self.original_max_seq_len
68
+
69
+ @torch.no_grad()
70
+ def forward(self, x, position_ids):
71
+ if "dynamic" in self.rope_type:
72
+ self._dynamic_frequency_update(position_ids, device=x.device)
73
+
74
+ # Core RoPE block
75
+ inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
76
+ position_ids_expanded = position_ids[:, None, :].float()
77
+ # Force float32 (see https://github.com/huggingface/transformers/pull/29285)
78
+ device_type = x.device.type
79
+ device_type = device_type if isinstance(device_type, str) and device_type != "mps" else "cpu"
80
+ with torch.autocast(device_type=device_type, enabled=False):
81
+ freqs = (inv_freq_expanded.float().to(x.device) @ position_ids_expanded.float()).transpose(1, 2)
82
+ emb = torch.cat((freqs, freqs), dim=-1)
83
+ cos = emb.cos()
84
+ sin = emb.sin()
85
+
86
+ # Advanced RoPE types (e.g. yarn) apply a post-processing scaling factor, equivalent to scaling attention
87
+ cos = cos * self.attention_scaling
88
+ sin = sin * self.attention_scaling
89
+
90
+ return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
91
+
92
+
93
+ def rotate_half(x):
94
+ """Rotates half the hidden dims of the input."""
95
+ x1 = x[..., : x.shape[-1] // 2]
96
+ x2 = x[..., x.shape[-1] // 2 :]
97
+ return torch.cat((-x2, x1), dim=-1)
98
+
99
+
100
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
101
+ """Applies Rotary Position Embedding to the query and key tensors.
102
+
103
+ Args:
104
+ q (`torch.Tensor`): The query tensor.
105
+ k (`torch.Tensor`): The key tensor.
106
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
107
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
108
+ position_ids (`torch.Tensor`, *optional*):
109
+ Deprecated and unused.
110
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
111
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
112
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
113
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
114
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
115
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
116
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
117
+ Returns:
118
+ `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
119
+ """
120
+ cos = cos.unsqueeze(unsqueeze_dim)
121
+ sin = sin.unsqueeze(unsqueeze_dim)
122
+ q_embed = (q * cos) + (rotate_half(q) * sin)
123
+ k_embed = (k * cos) + (rotate_half(k) * sin)
124
+ return q_embed, k_embed
125
+
126
+
127
+ def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
128
+ """
129
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
130
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
131
+ """
132
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
133
+ if n_rep == 1:
134
+ return hidden_states
135
+ hidden_states = hidden_states[:, :, None, :, :].expand(
136
+ batch, num_key_value_heads, n_rep, slen, head_dim
137
+ )
138
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
139
+
140
+ @use_kernel_forward_from_hub("RMSNorm")
141
+ class AfmoeRMSNorm(nn.Module):
142
+ def __init__(self, hidden_size: int, eps: float):
143
+ """
144
+ AfmoeRMSNorm is equivalent to T5LayerNorm
145
+ """
146
+ super().__init__()
147
+ self.weight = nn.Parameter(torch.ones(hidden_size))
148
+ self.variance_epsilon = eps
149
+
150
+ def forward(self, hidden_states):
151
+ input_dtype = hidden_states.dtype
152
+ hidden_states = hidden_states.to(torch.float32)
153
+ variance = hidden_states.pow(2).mean(-1, keepdim=True)
154
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
155
+ return self.weight * hidden_states.to(input_dtype)
156
+
157
+ def extra_repr(self):
158
+ return f"{tuple(self.weight.shape)}, eps={self.variance_epsilon}"
159
+
160
+
161
+
162
+ def eager_attention_forward(
163
+ module: nn.Module,
164
+ query: torch.Tensor,
165
+ key: torch.Tensor,
166
+ value: torch.Tensor,
167
+ attention_mask: Optional[torch.Tensor],
168
+ scaling: float,
169
+ dropout: float = 0.0,
170
+ **kwargs,
171
+ ):
172
+ key_states = repeat_kv(key, module.num_key_value_groups)
173
+ value_states = repeat_kv(value, module.num_key_value_groups)
174
+
175
+ attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling
176
+ if attention_mask is not None:
177
+ causal_mask = attention_mask[:, :, :, : key_states.shape[-2]]
178
+ attn_weights = attn_weights + causal_mask
179
+
180
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(
181
+ query.dtype
182
+ )
183
+ attn_weights = nn.functional.dropout(
184
+ attn_weights, p=dropout, training=module.training
185
+ )
186
+ attn_output = torch.matmul(attn_weights, value_states)
187
+ attn_output = attn_output.transpose(1, 2).contiguous()
188
+
189
+ return attn_output, attn_weights
190
+
191
+
192
+ class AfmoeMLP(nn.Module):
193
+ def __init__(self, config, intermediate_size=None):
194
+ super().__init__()
195
+ self.config = config
196
+ self.hidden_size = config.hidden_size
197
+ self.intermediate_size = intermediate_size or config.intermediate_size
198
+ self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
199
+ self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
200
+ self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
201
+ self.act_fn = ACT2FN[config.hidden_act]
202
+
203
+ def forward(self, x):
204
+ return self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
205
+
206
+
207
+ class AfmoeTokenChoiceRouter(nn.Module):
208
+ """Token-choice top-K router for MoE routing."""
209
+
210
+ def __init__(self, config):
211
+ super().__init__()
212
+ self.config = config
213
+ self.top_k = config.num_experts_per_tok
214
+ self.num_experts = config.num_experts
215
+ self.score_func = config.score_func
216
+ self.route_norm = config.route_norm
217
+ self.route_scale = config.route_scale
218
+ self.gate = nn.Linear(config.hidden_size, config.num_experts, bias=False)
219
+
220
+ def forward(self, hidden_states, expert_bias: torch.Tensor | None):
221
+ _, _, hidden_dim = hidden_states.shape
222
+ hidden_states = hidden_states.view(-1, hidden_dim)
223
+
224
+ scores = self.gate(hidden_states)
225
+
226
+ # Apply scoring function in float32 for stability
227
+ if self.score_func == "sigmoid":
228
+ scores = torch.sigmoid(scores.to(torch.float32))
229
+ else:
230
+ scores = F.softmax(scores.to(torch.float32), dim=-1)
231
+
232
+ if expert_bias is not None:
233
+ _, selected_experts = torch.topk(scores + expert_bias, k=self.top_k, dim=1)
234
+ top_scores = scores.gather(dim=1, index=selected_experts)
235
+ else:
236
+ top_scores, selected_experts = torch.topk(scores, k=self.top_k, dim=1)
237
+
238
+ # Normalize weights if using sigmoid
239
+ if self.score_func == "sigmoid" and self.route_norm:
240
+ denominator = top_scores.sum(dim=-1, keepdim=True) + 1e-20
241
+ top_scores = top_scores / denominator
242
+
243
+ top_scores = top_scores * self.route_scale
244
+ return top_scores, selected_experts
245
+
246
+ class AfmoeMoE(nn.Module):
247
+ def __init__(self, config):
248
+ super().__init__()
249
+ self.config = config
250
+ self.router = AfmoeTokenChoiceRouter(config)
251
+
252
+ self.shared_experts = None
253
+ if config.num_shared_experts > 0:
254
+ self.shared_experts = AfmoeMLP(
255
+ config, config.moe_intermediate_size * config.num_shared_experts
256
+ )
257
+ self.experts = nn.ModuleList(
258
+ [AfmoeMLP(
259
+ config, intermediate_size=config.moe_intermediate_size
260
+ ) for _ in range(config.num_experts)]
261
+ )
262
+ self.expert_bias = nn.Parameter(torch.zeros(config.num_experts, dtype=torch.float32), requires_grad=False)
263
+
264
+
265
+ def forward(self, hidden_states):
266
+ batch_size, seq_len, hidden_dim = hidden_states.shape
267
+ hidden_states_flat = hidden_states.view(-1, hidden_dim)
268
+
269
+ # Get routing decisions
270
+ top_scores, selected_experts = self.router(hidden_states, self.expert_bias)
271
+
272
+ # Process through shared experts
273
+ if self.shared_experts is not None:
274
+ shared_output = self.shared_experts(hidden_states_flat)
275
+ else:
276
+ shared_output = torch.zeros_like(hidden_states_flat)
277
+
278
+ # Reorder tokens by expert for efficient processing
279
+ token_indices_sorted = torch.argsort(selected_experts.view(-1), stable=True)
280
+ top_scores_sorted = top_scores.view(-1)[token_indices_sorted]
281
+ token_to_expert = selected_experts.view(-1)[token_indices_sorted]
282
+ token_indices_sorted = token_indices_sorted // self.config.num_experts_per_tok
283
+
284
+ # Gather input tokens
285
+ token_indices_expanded = token_indices_sorted.unsqueeze(-1).expand(
286
+ -1, hidden_dim
287
+ )
288
+ routed_input = torch.gather(
289
+ hidden_states_flat, dim=0, index=token_indices_expanded
290
+ )
291
+
292
+ routed_output = torch.zeros_like(routed_input)
293
+ for expert_id in range(self.config.num_experts):
294
+ mask = token_to_expert == expert_id
295
+ if mask.any():
296
+ expert_input = routed_input[mask]
297
+ expert_out = self.experts[expert_id](expert_input)
298
+ routed_output[mask] = expert_out
299
+
300
+ routed_output = (
301
+ routed_output.to(torch.float32) * top_scores_sorted.unsqueeze(-1)
302
+ ).to(hidden_states.dtype)
303
+
304
+ # Scatter back to original positions
305
+ output = shared_output.scatter_add(
306
+ dim=0, index=token_indices_expanded, src=routed_output
307
+ )
308
+
309
+ return output.view(batch_size, seq_len, hidden_dim)
310
+
311
+
312
+ class AfmoeAttention(nn.Module):
313
+ """Multi-headed attention with local/global pattern and gating."""
314
+
315
+ def __init__(self, config: AfmoeConfig, layer_idx: int):
316
+ super().__init__()
317
+ self.config = config
318
+ self.layer_idx = layer_idx
319
+ self.head_dim = getattr(config, "head_dim", config.hidden_size // config.num_attention_heads)
320
+ self.num_heads = config.num_attention_heads
321
+ self.num_key_value_heads = config.num_key_value_heads
322
+ self.num_key_value_groups = self.num_heads // self.num_key_value_heads
323
+
324
+ self.scaling = self.head_dim**-0.5
325
+ self.attention_dropout = config.attention_dropout
326
+ self.is_local_attention = config.layer_types[layer_idx] == "sliding_attention"
327
+ self.sliding_window = config.sliding_window if self.is_local_attention else None
328
+
329
+ self.q_proj = nn.Linear(
330
+ config.hidden_size, self.num_heads * self.head_dim, bias=False
331
+ )
332
+ self.k_proj = nn.Linear(
333
+ config.hidden_size, self.num_key_value_heads * self.head_dim, bias=False
334
+ )
335
+ self.v_proj = nn.Linear(
336
+ config.hidden_size, self.num_key_value_heads * self.head_dim, bias=False
337
+ )
338
+ self.o_proj = nn.Linear(
339
+ self.num_heads * self.head_dim, config.hidden_size, bias=False
340
+ )
341
+
342
+ self.q_norm = AfmoeRMSNorm(self.head_dim, eps=config.rms_norm_eps)
343
+ self.k_norm = AfmoeRMSNorm(self.head_dim, eps=config.rms_norm_eps)
344
+
345
+ self.gate_proj = nn.Linear(
346
+ config.hidden_size, self.num_heads * self.head_dim, bias=False
347
+ )
348
+
349
+ def forward(
350
+ self,
351
+ hidden_states: torch.Tensor,
352
+ position_embeddings: tuple[torch.Tensor, torch.Tensor],
353
+ attention_mask: Optional[torch.Tensor],
354
+ past_key_value: Optional[Cache] = None,
355
+ cache_position: Optional[torch.LongTensor] = None,
356
+ **kwargs: Unpack[TransformersKwargs],
357
+ ) -> torch.Tensor:
358
+
359
+ input_shape = hidden_states.shape[:-1]
360
+ hidden_shape = (*input_shape, -1, self.head_dim)
361
+
362
+ query_states = self.q_proj(hidden_states).view(hidden_shape)
363
+ key_states = self.k_proj(hidden_states).view(hidden_shape)
364
+ value_states = self.v_proj(hidden_states).view(hidden_shape)
365
+ gate_states = self.gate_proj(hidden_states)
366
+
367
+ query_states = self.q_norm(query_states)
368
+ key_states = self.k_norm(key_states)
369
+
370
+ query_states = query_states.transpose(1, 2)
371
+ key_states = key_states.transpose(1, 2)
372
+ value_states = value_states.transpose(1, 2)
373
+
374
+ if self.is_local_attention:
375
+ cos, sin = position_embeddings
376
+ query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin)
377
+
378
+ if past_key_value is not None:
379
+ cache_kwargs = {"cache_position": cache_position}
380
+ key_states, value_states = past_key_value.update(key_states, value_states, self.layer_idx, cache_kwargs)
381
+
382
+ attention_interface: Callable = eager_attention_forward
383
+ if self.config._attn_implementation != "eager":
384
+ attention_interface = ALL_ATTENTION_FUNCTIONS[
385
+ self.config._attn_implementation
386
+ ]
387
+
388
+ output, _ = attention_interface(
389
+ self,
390
+ query_states,
391
+ key_states,
392
+ value_states,
393
+ attention_mask=attention_mask,
394
+ dropout=0.0 if not self.training else self.attention_dropout,
395
+ scaling=self.scaling,
396
+ sliding_window=self.sliding_window,
397
+ **kwargs,
398
+ )
399
+
400
+ output = output.view(*input_shape, -1).contiguous()
401
+ output = output * F.sigmoid(gate_states)
402
+ return self.o_proj(output)
403
+
404
+
405
+ class AfmoeDecoderLayer(GradientCheckpointingLayer):
406
+ def __init__(self, config: AfmoeConfig, layer_idx: int):
407
+ super().__init__()
408
+ self.hidden_size = config.hidden_size
409
+ self.layer_idx = layer_idx
410
+
411
+ self.self_attn = AfmoeAttention(config=config, layer_idx=layer_idx)
412
+ self.attention_type = config.layer_types[layer_idx]
413
+
414
+ # Dual normalization for attention
415
+ self.input_layernorm = AfmoeRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
416
+ self.post_attention_layernorm = AfmoeRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
417
+
418
+ # Dual normalization for FFN
419
+ self.pre_mlp_layernorm = AfmoeRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
420
+ self.post_mlp_layernorm = AfmoeRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
421
+
422
+ # MoE or dense FFN
423
+ self.moe_enabled = layer_idx >= config.num_dense_layers
424
+ if self.moe_enabled:
425
+ self.mlp = AfmoeMoE(config)
426
+ else:
427
+ self.mlp = AfmoeMLP(config)
428
+
429
+ def forward(
430
+ self,
431
+ hidden_states: torch.Tensor,
432
+ attention_mask: Optional[torch.Tensor] = None,
433
+ position_ids: Optional[torch.LongTensor] = None,
434
+ past_key_value: Optional[Cache] = None,
435
+ use_cache: Optional[bool] = None,
436
+ cache_position: Optional[torch.LongTensor] = None,
437
+ position_embeddings: Optional[tuple[torch.Tensor, torch.Tensor]] = None,
438
+ **kwargs: Unpack[TransformersKwargs],
439
+ ) -> torch.FloatTensor:
440
+ residual = hidden_states
441
+
442
+ # Self Attention with dual normalization
443
+ hidden_states = self.input_layernorm(hidden_states)
444
+ hidden_states = self.self_attn(
445
+ hidden_states=hidden_states,
446
+ attention_mask=attention_mask,
447
+ position_ids=position_ids,
448
+ past_key_value=past_key_value,
449
+ use_cache=use_cache,
450
+ cache_position=cache_position,
451
+ position_embeddings=position_embeddings,
452
+ **kwargs,
453
+ )
454
+ hidden_states = self.post_attention_layernorm(hidden_states)
455
+ hidden_states = residual + hidden_states
456
+
457
+ # FFN with dual normalization
458
+ residual = hidden_states
459
+ hidden_states = self.pre_mlp_layernorm(hidden_states)
460
+
461
+ if self.moe_enabled:
462
+ hidden_states = self.mlp(hidden_states)
463
+ else:
464
+ hidden_states = self.mlp(hidden_states)
465
+
466
+ hidden_states = self.post_mlp_layernorm(hidden_states)
467
+ hidden_states = residual + hidden_states
468
+ return hidden_states
469
+
470
+
471
+ class AfmoePreTrainedModel(PreTrainedModel):
472
+ config_class = AfmoeConfig
473
+ base_model_prefix = "model"
474
+ _no_split_modules = ["AfmoeDecoderLayer"]
475
+ _skip_keys_device_placement = ["past_key_values"]
476
+ _keep_in_fp32_modules = [
477
+ "input_layernorm",
478
+ "post_attention_layernorm",
479
+ "pre_mlp_layernorm",
480
+ "post_mlp_layernorm",
481
+ "q_norm",
482
+ "k_norm",
483
+ "norm",
484
+ ]
485
+ _supports_sdpa = True
486
+ _supports_attention_backend = True
487
+ supports_gradient_checkpointing = True
488
+
489
+
490
+ class AfmoeModel(AfmoePreTrainedModel):
491
+ _no_split_modules = ["AfmoeDecoderLayer"]
492
+
493
+ def __init__(self, config: AfmoeConfig):
494
+ super().__init__(config)
495
+ self.padding_idx = config.pad_token_id
496
+ self.vocab_size = config.vocab_size
497
+
498
+ self.embed_tokens = nn.Embedding(
499
+ config.vocab_size, config.hidden_size, self.padding_idx
500
+ )
501
+ self.layers = nn.ModuleList(
502
+ [
503
+ AfmoeDecoderLayer(config, layer_idx)
504
+ for layer_idx in range(config.num_hidden_layers)
505
+ ]
506
+ )
507
+ self.norm = AfmoeRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
508
+ self.rotary_emb = AfmoeRotaryEmbedding(config=config)
509
+ self.gradient_checkpointing = False
510
+
511
+ self.post_init()
512
+
513
+ def get_input_embeddings(self):
514
+ return self.embed_tokens
515
+
516
+ def set_input_embeddings(self, value):
517
+ self.embed_tokens = value
518
+
519
+
520
+ def forward(
521
+ self,
522
+ input_ids: torch.LongTensor,
523
+ attention_mask: Optional[torch.Tensor] = None,
524
+ position_ids: Optional[torch.LongTensor] = None,
525
+ past_key_values: Optional[list[torch.FloatTensor]] = None,
526
+ inputs_embeds: Optional[torch.FloatTensor] = None,
527
+ use_cache: Optional[bool] = None,
528
+ cache_position: Optional[torch.LongTensor] = None,
529
+ **kwargs: Unpack[TransformersKwargs],
530
+ ) -> MoeModelOutputWithPast:
531
+ if (input_ids is None) ^ (inputs_embeds is not None):
532
+ raise ValueError(
533
+ "You must specify exactly one of input_ids or inputs_embeds"
534
+ )
535
+
536
+ if use_cache and past_key_values is None:
537
+ past_key_values = DynamicCache()
538
+
539
+ if inputs_embeds is None:
540
+ inputs_embeds = self.embed_tokens(input_ids)
541
+
542
+ if cache_position is None:
543
+ past_seen_tokens = (
544
+ past_key_values.get_seq_length() if past_key_values is not None else 0
545
+ )
546
+ cache_position = torch.arange(
547
+ past_seen_tokens,
548
+ past_seen_tokens + inputs_embeds.shape[1],
549
+ device=inputs_embeds.device,
550
+ )
551
+ if position_ids is None:
552
+ position_ids = cache_position.unsqueeze(0)
553
+
554
+ # It may already have been prepared by e.g. `generate`
555
+ if not isinstance(causal_mask_mapping := attention_mask, dict):
556
+ mask_kwargs = {
557
+ "config": self.config,
558
+ "input_embeds": inputs_embeds,
559
+ "attention_mask": attention_mask,
560
+ "cache_position": cache_position,
561
+ "past_key_values": past_key_values,
562
+ }
563
+ causal_mask_mapping = {
564
+ "full_attention": create_causal_mask(**mask_kwargs),
565
+ "sliding_attention": create_sliding_window_causal_mask(**mask_kwargs),
566
+ }
567
+
568
+ hidden_states = inputs_embeds
569
+
570
+ # Apply muP input scaling if enabled
571
+ if self.config.mup_enabled:
572
+ hidden_states = hidden_states * (self.config.hidden_size**0.5)
573
+
574
+ position_embeddings = self.rotary_emb(hidden_states, position_ids)
575
+
576
+ for decoder_layer in self.layers:
577
+ hidden_states = decoder_layer(
578
+ hidden_states,
579
+ attention_mask=causal_mask_mapping[decoder_layer.attention_type],
580
+ position_ids=position_ids,
581
+ past_key_value=past_key_values,
582
+ use_cache=use_cache,
583
+ cache_position=cache_position,
584
+ position_embeddings=position_embeddings,
585
+ **kwargs,
586
+ )
587
+
588
+ hidden_states = self.norm(hidden_states)
589
+ return MoeModelOutputWithPast(
590
+ last_hidden_state=hidden_states,
591
+ past_key_values=past_key_values,
592
+ )
593
+
594
+
595
+ class AfmoeForCausalLM(AfmoePreTrainedModel, GenerationMixin):
596
+ _tied_weights_keys = ["lm_head.weight"]
597
+ _tp_plan = {"lm_head": "colwise_rep"}
598
+ _pp_plan = {"lm_head": (["hidden_states"], ["logits"])}
599
+
600
+ def __init__(self, config):
601
+ super().__init__(config)
602
+ self.model = AfmoeModel(config)
603
+ self.vocab_size = config.vocab_size
604
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
605
+
606
+ # Initialize weights and apply final processing
607
+ self.post_init()
608
+
609
+ def get_input_embeddings(self):
610
+ return self.model.embed_tokens
611
+
612
+ def set_input_embeddings(self, value):
613
+ self.model.embed_tokens = value
614
+
615
+ def get_output_embeddings(self):
616
+ return self.lm_head
617
+
618
+ def set_output_embeddings(self, new_embeddings):
619
+ self.lm_head = new_embeddings
620
+
621
+ def set_decoder(self, decoder):
622
+ self.model = decoder
623
+
624
+ def get_decoder(self):
625
+ return self.model
626
+
627
+ def forward(
628
+ self,
629
+ input_ids: torch.LongTensor,
630
+ attention_mask: Optional[torch.Tensor] = None,
631
+ position_ids: Optional[torch.LongTensor] = None,
632
+ past_key_values: Optional[Cache] = None,
633
+ inputs_embeds: Optional[torch.FloatTensor] = None,
634
+ labels: Optional[torch.LongTensor] = None,
635
+ use_cache: Optional[bool] = None,
636
+ cache_position: Optional[torch.LongTensor] = None,
637
+ logits_to_keep: Union[int, torch.Tensor] = 0,
638
+ token_type_ids: Optional[torch.Tensor] = None, # will be ignored
639
+ **kwargs: Unpack[TransformersKwargs],
640
+ ) -> Union[Tuple, MoeCausalLMOutputWithPast]:
641
+ outputs: MoeModelOutputWithPast = self.model(
642
+ input_ids=input_ids,
643
+ attention_mask=attention_mask,
644
+ position_ids=position_ids,
645
+ past_key_values=past_key_values,
646
+ inputs_embeds=inputs_embeds,
647
+ use_cache=use_cache,
648
+ cache_position=cache_position,
649
+ **kwargs,
650
+ )
651
+
652
+ hidden_states = outputs.last_hidden_state
653
+ # Only compute necessary logits
654
+ slice_indices = (
655
+ slice(-logits_to_keep, None)
656
+ if isinstance(logits_to_keep, int)
657
+ else logits_to_keep
658
+ )
659
+ logits = self.lm_head(hidden_states[:, slice_indices, :])
660
+
661
+ loss = None
662
+ if labels is not None:
663
+ loss = self.loss_function(logits, labels, self.vocab_size, **kwargs)
664
+
665
+
666
+ return MoeCausalLMOutputWithPast(
667
+ loss=loss,
668
+ logits=logits,
669
+ past_key_values=outputs.past_key_values,
670
+ hidden_states=outputs.hidden_states,
671
+ attentions=outputs.attentions,
672
+ router_logits=outputs.router_logits,
673
+ )
674
+
675
+
676
+ __all__ = [
677
+ "AfmoeForCausalLM",
678
+ "AfmoeModel",
679
+ "AfmoePreTrainedModel",
680
+ ]