INC4AI commited on
Commit
fb0d19b
·
verified ·
1 Parent(s): 764f654

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. chat_template.jinja +1 -0
  2. config.json +479 -0
  3. configuration_deepseek.py +210 -0
  4. generation_config.json +9 -0
  5. model-00001-of-00076.safetensors +3 -0
  6. model-00002-of-00076.safetensors +3 -0
  7. model-00003-of-00076.safetensors +3 -0
  8. model-00004-of-00076.safetensors +3 -0
  9. model-00005-of-00076.safetensors +3 -0
  10. model-00006-of-00076.safetensors +3 -0
  11. model-00007-of-00076.safetensors +3 -0
  12. model-00008-of-00076.safetensors +3 -0
  13. model-00009-of-00076.safetensors +3 -0
  14. model-00010-of-00076.safetensors +3 -0
  15. model-00011-of-00076.safetensors +3 -0
  16. model-00012-of-00076.safetensors +3 -0
  17. model-00013-of-00076.safetensors +3 -0
  18. model-00014-of-00076.safetensors +3 -0
  19. model-00015-of-00076.safetensors +3 -0
  20. model-00016-of-00076.safetensors +3 -0
  21. model-00017-of-00076.safetensors +3 -0
  22. model-00018-of-00076.safetensors +3 -0
  23. model-00019-of-00076.safetensors +3 -0
  24. model-00020-of-00076.safetensors +3 -0
  25. model-00021-of-00076.safetensors +3 -0
  26. model-00022-of-00076.safetensors +3 -0
  27. model-00023-of-00076.safetensors +3 -0
  28. model-00024-of-00076.safetensors +3 -0
  29. model-00025-of-00076.safetensors +3 -0
  30. model-00026-of-00076.safetensors +3 -0
  31. model-00027-of-00076.safetensors +3 -0
  32. model-00028-of-00076.safetensors +3 -0
  33. model-00029-of-00076.safetensors +3 -0
  34. model-00030-of-00076.safetensors +3 -0
  35. model-00031-of-00076.safetensors +3 -0
  36. model-00032-of-00076.safetensors +3 -0
  37. model-00033-of-00076.safetensors +3 -0
  38. model-00034-of-00076.safetensors +3 -0
  39. model-00035-of-00076.safetensors +3 -0
  40. model-00036-of-00076.safetensors +3 -0
  41. model-00037-of-00076.safetensors +3 -0
  42. model-00038-of-00076.safetensors +3 -0
  43. model-00039-of-00076.safetensors +3 -0
  44. model-00040-of-00076.safetensors +3 -0
  45. model-00041-of-00076.safetensors +3 -0
  46. model-00042-of-00076.safetensors +3 -0
  47. model-00043-of-00076.safetensors +3 -0
  48. model-00044-of-00076.safetensors +3 -0
  49. model-00045-of-00076.safetensors +3 -0
  50. model-00046-of-00076.safetensors +3 -0
chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='', is_first_sp=true) %}{%- for message in messages %}{%- if message['role'] == 'system' %}{%- if ns.is_first_sp %}{% set ns.system_prompt = ns.system_prompt + message['content'] %}{% set ns.is_first_sp = false %}{%- else %}{% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}{%- endif %}{%- endif %}{%- endfor %}{{ bos_token }}{{ ns.system_prompt }}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and 'tool_calls' in message %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls'] %}{%- if not ns.is_first %}{%- if message['content'] is none %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- else %}{{'<|Assistant|>' + message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- endif %}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- endif %}{%- endfor %}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- if message['role'] == 'assistant' and 'tool_calls' not in message %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
config.json ADDED
@@ -0,0 +1,479 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DeepseekV3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "configuration_deepseek.DeepseekV3Config",
9
+ "AutoModel": "modeling_deepseek.DeepseekV3Model",
10
+ "AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
11
+ },
12
+ "aux_loss_alpha": 0.001,
13
+ "bos_token_id": 0,
14
+ "dtype": "bfloat16",
15
+ "eos_token_id": 1,
16
+ "ep_size": 1,
17
+ "first_k_dense_replace": 3,
18
+ "head_dim": 64,
19
+ "hidden_act": "silu",
20
+ "hidden_size": 7168,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 18432,
23
+ "kv_lora_rank": 512,
24
+ "max_position_embeddings": 163840,
25
+ "model_type": "deepseek_v3",
26
+ "moe_intermediate_size": 2048,
27
+ "moe_layer_freq": 1,
28
+ "n_group": 8,
29
+ "n_routed_experts": 256,
30
+ "n_shared_experts": 1,
31
+ "norm_topk_prob": true,
32
+ "num_attention_heads": 128,
33
+ "num_experts_per_tok": 8,
34
+ "num_hidden_layers": 61,
35
+ "num_key_value_heads": 128,
36
+ "num_nextn_predict_layers": 1,
37
+ "pad_token_id": 128815,
38
+ "pretraining_tp": 1,
39
+ "q_lora_rank": 1536,
40
+ "qk_head_dim": 192,
41
+ "qk_nope_head_dim": 128,
42
+ "qk_rope_head_dim": 64,
43
+ "quantization_config": {
44
+ "config_groups": {
45
+ "group_0": {
46
+ "format": null,
47
+ "input_activations": {
48
+ "actorder": null,
49
+ "block_structure": null,
50
+ "dynamic": true,
51
+ "group_size": 32,
52
+ "num_bits": 4,
53
+ "observer": null,
54
+ "observer_kwargs": {},
55
+ "scale_dtype": "torch.uint8",
56
+ "strategy": "group",
57
+ "symmetric": true,
58
+ "type": "float",
59
+ "zp_dtype": null
60
+ },
61
+ "output_activations": null,
62
+ "targets": [
63
+ "Linear"
64
+ ],
65
+ "weights": {
66
+ "actorder": null,
67
+ "block_structure": null,
68
+ "dynamic": false,
69
+ "group_size": 32,
70
+ "num_bits": 4,
71
+ "observer": "memoryless_minmax",
72
+ "observer_kwargs": {},
73
+ "scale_dtype": "torch.uint8",
74
+ "strategy": "group",
75
+ "symmetric": true,
76
+ "type": "float",
77
+ "zp_dtype": null
78
+ }
79
+ }
80
+ },
81
+ "format": "mxfp4-pack-quantized",
82
+ "global_compression_ratio": null,
83
+ "ignore": [
84
+ "re:.*self_attn.*",
85
+ "re:.*model\\.layers\\.3\\.mlp\\.gate.*",
86
+ "re:.*model\\.layers\\.4\\.mlp\\.gate.*",
87
+ "re:.*model\\.layers\\.5\\.mlp\\.gate.*",
88
+ "re:.*model\\.layers\\.6\\.mlp\\.gate.*",
89
+ "re:.*model\\.layers\\.7\\.mlp\\.gate.*",
90
+ "re:.*model\\.layers\\.8\\.mlp\\.gate.*",
91
+ "re:.*model\\.layers\\.9\\.mlp\\.gate.*",
92
+ "re:.*model\\.layers\\.10\\.mlp\\.gate.*",
93
+ "re:.*model\\.layers\\.11\\.mlp\\.gate.*",
94
+ "re:.*model\\.layers\\.12\\.mlp\\.gate.*",
95
+ "re:.*model\\.layers\\.13\\.mlp\\.gate.*",
96
+ "re:.*model\\.layers\\.14\\.mlp\\.gate.*",
97
+ "re:.*model\\.layers\\.15\\.mlp\\.gate.*",
98
+ "re:.*model\\.layers\\.16\\.mlp\\.gate.*",
99
+ "re:.*model\\.layers\\.17\\.mlp\\.gate.*",
100
+ "re:.*model\\.layers\\.18\\.mlp\\.gate.*",
101
+ "re:.*model\\.layers\\.19\\.mlp\\.gate.*",
102
+ "re:.*model\\.layers\\.20\\.mlp\\.gate.*",
103
+ "re:.*model\\.layers\\.21\\.mlp\\.gate.*",
104
+ "re:.*model\\.layers\\.22\\.mlp\\.gate.*",
105
+ "re:.*model\\.layers\\.23\\.mlp\\.gate.*",
106
+ "re:.*model\\.layers\\.24\\.mlp\\.gate.*",
107
+ "re:.*model\\.layers\\.25\\.mlp\\.gate.*",
108
+ "re:.*model\\.layers\\.26\\.mlp\\.gate.*",
109
+ "re:.*model\\.layers\\.27\\.mlp\\.gate.*",
110
+ "re:.*model\\.layers\\.28\\.mlp\\.gate.*",
111
+ "re:.*model\\.layers\\.29\\.mlp\\.gate.*",
112
+ "re:.*model\\.layers\\.30\\.mlp\\.gate.*",
113
+ "re:.*model\\.layers\\.31\\.mlp\\.gate.*",
114
+ "re:.*model\\.layers\\.32\\.mlp\\.gate.*",
115
+ "re:.*model\\.layers\\.33\\.mlp\\.gate.*",
116
+ "re:.*model\\.layers\\.34\\.mlp\\.gate.*",
117
+ "re:.*model\\.layers\\.35\\.mlp\\.gate.*",
118
+ "re:.*model\\.layers\\.36\\.mlp\\.gate.*",
119
+ "re:.*model\\.layers\\.37\\.mlp\\.gate.*",
120
+ "re:.*model\\.layers\\.38\\.mlp\\.gate.*",
121
+ "re:.*model\\.layers\\.39\\.mlp\\.gate.*",
122
+ "re:.*model\\.layers\\.40\\.mlp\\.gate.*",
123
+ "re:.*model\\.layers\\.41\\.mlp\\.gate.*",
124
+ "re:.*model\\.layers\\.42\\.mlp\\.gate.*",
125
+ "re:.*model\\.layers\\.43\\.mlp\\.gate.*",
126
+ "re:.*model\\.layers\\.44\\.mlp\\.gate.*",
127
+ "re:.*model\\.layers\\.45\\.mlp\\.gate.*",
128
+ "re:.*model\\.layers\\.46\\.mlp\\.gate.*",
129
+ "re:.*model\\.layers\\.47\\.mlp\\.gate.*",
130
+ "re:.*model\\.layers\\.48\\.mlp\\.gate.*",
131
+ "re:.*model\\.layers\\.49\\.mlp\\.gate.*",
132
+ "re:.*model\\.layers\\.50\\.mlp\\.gate.*",
133
+ "re:.*model\\.layers\\.51\\.mlp\\.gate.*",
134
+ "re:.*model\\.layers\\.52\\.mlp\\.gate.*",
135
+ "re:.*model\\.layers\\.53\\.mlp\\.gate.*",
136
+ "re:.*model\\.layers\\.54\\.mlp\\.gate.*",
137
+ "re:.*model\\.layers\\.55\\.mlp\\.gate.*",
138
+ "re:.*model\\.layers\\.56\\.mlp\\.gate.*",
139
+ "re:.*model\\.layers\\.57\\.mlp\\.gate.*",
140
+ "re:.*model\\.layers\\.58\\.mlp\\.gate.*",
141
+ "re:.*model\\.layers\\.59\\.mlp\\.gate.*",
142
+ "re:.*model\\.layers\\.60\\.mlp\\.gate.*",
143
+ "lm_head",
144
+ "model.layers.0.self_attn.q_a_proj",
145
+ "model.layers.0.self_attn.q_b_proj",
146
+ "model.layers.0.self_attn.kv_a_proj_with_mqa",
147
+ "model.layers.0.self_attn.kv_b_proj",
148
+ "model.layers.0.self_attn.o_proj",
149
+ "model.layers.1.self_attn.q_a_proj",
150
+ "model.layers.1.self_attn.q_b_proj",
151
+ "model.layers.1.self_attn.kv_a_proj_with_mqa",
152
+ "model.layers.1.self_attn.kv_b_proj",
153
+ "model.layers.1.self_attn.o_proj",
154
+ "model.layers.2.self_attn.q_a_proj",
155
+ "model.layers.2.self_attn.q_b_proj",
156
+ "model.layers.2.self_attn.kv_a_proj_with_mqa",
157
+ "model.layers.2.self_attn.kv_b_proj",
158
+ "model.layers.2.self_attn.o_proj",
159
+ "model.layers.3.self_attn.q_a_proj",
160
+ "model.layers.3.self_attn.q_b_proj",
161
+ "model.layers.3.self_attn.kv_a_proj_with_mqa",
162
+ "model.layers.3.self_attn.kv_b_proj",
163
+ "model.layers.3.self_attn.o_proj",
164
+ "model.layers.4.self_attn.q_a_proj",
165
+ "model.layers.4.self_attn.q_b_proj",
166
+ "model.layers.4.self_attn.kv_a_proj_with_mqa",
167
+ "model.layers.4.self_attn.kv_b_proj",
168
+ "model.layers.4.self_attn.o_proj",
169
+ "model.layers.5.self_attn.q_a_proj",
170
+ "model.layers.5.self_attn.q_b_proj",
171
+ "model.layers.5.self_attn.kv_a_proj_with_mqa",
172
+ "model.layers.5.self_attn.kv_b_proj",
173
+ "model.layers.5.self_attn.o_proj",
174
+ "model.layers.6.self_attn.q_a_proj",
175
+ "model.layers.6.self_attn.q_b_proj",
176
+ "model.layers.6.self_attn.kv_a_proj_with_mqa",
177
+ "model.layers.6.self_attn.kv_b_proj",
178
+ "model.layers.6.self_attn.o_proj",
179
+ "model.layers.7.self_attn.q_a_proj",
180
+ "model.layers.7.self_attn.q_b_proj",
181
+ "model.layers.7.self_attn.kv_a_proj_with_mqa",
182
+ "model.layers.7.self_attn.kv_b_proj",
183
+ "model.layers.7.self_attn.o_proj",
184
+ "model.layers.8.self_attn.q_a_proj",
185
+ "model.layers.8.self_attn.q_b_proj",
186
+ "model.layers.8.self_attn.kv_a_proj_with_mqa",
187
+ "model.layers.8.self_attn.kv_b_proj",
188
+ "model.layers.8.self_attn.o_proj",
189
+ "model.layers.9.self_attn.q_a_proj",
190
+ "model.layers.9.self_attn.q_b_proj",
191
+ "model.layers.9.self_attn.kv_a_proj_with_mqa",
192
+ "model.layers.9.self_attn.kv_b_proj",
193
+ "model.layers.9.self_attn.o_proj",
194
+ "model.layers.10.self_attn.q_a_proj",
195
+ "model.layers.10.self_attn.q_b_proj",
196
+ "model.layers.10.self_attn.kv_a_proj_with_mqa",
197
+ "model.layers.10.self_attn.kv_b_proj",
198
+ "model.layers.10.self_attn.o_proj",
199
+ "model.layers.11.self_attn.q_a_proj",
200
+ "model.layers.11.self_attn.q_b_proj",
201
+ "model.layers.11.self_attn.kv_a_proj_with_mqa",
202
+ "model.layers.11.self_attn.kv_b_proj",
203
+ "model.layers.11.self_attn.o_proj",
204
+ "model.layers.12.self_attn.q_a_proj",
205
+ "model.layers.12.self_attn.q_b_proj",
206
+ "model.layers.12.self_attn.kv_a_proj_with_mqa",
207
+ "model.layers.12.self_attn.kv_b_proj",
208
+ "model.layers.12.self_attn.o_proj",
209
+ "model.layers.13.self_attn.q_a_proj",
210
+ "model.layers.13.self_attn.q_b_proj",
211
+ "model.layers.13.self_attn.kv_a_proj_with_mqa",
212
+ "model.layers.13.self_attn.kv_b_proj",
213
+ "model.layers.13.self_attn.o_proj",
214
+ "model.layers.14.self_attn.q_a_proj",
215
+ "model.layers.14.self_attn.q_b_proj",
216
+ "model.layers.14.self_attn.kv_a_proj_with_mqa",
217
+ "model.layers.14.self_attn.kv_b_proj",
218
+ "model.layers.14.self_attn.o_proj",
219
+ "model.layers.15.self_attn.q_a_proj",
220
+ "model.layers.15.self_attn.q_b_proj",
221
+ "model.layers.15.self_attn.kv_a_proj_with_mqa",
222
+ "model.layers.15.self_attn.kv_b_proj",
223
+ "model.layers.15.self_attn.o_proj",
224
+ "model.layers.16.self_attn.q_a_proj",
225
+ "model.layers.16.self_attn.q_b_proj",
226
+ "model.layers.16.self_attn.kv_a_proj_with_mqa",
227
+ "model.layers.16.self_attn.kv_b_proj",
228
+ "model.layers.16.self_attn.o_proj",
229
+ "model.layers.17.self_attn.q_a_proj",
230
+ "model.layers.17.self_attn.q_b_proj",
231
+ "model.layers.17.self_attn.kv_a_proj_with_mqa",
232
+ "model.layers.17.self_attn.kv_b_proj",
233
+ "model.layers.17.self_attn.o_proj",
234
+ "model.layers.18.self_attn.q_a_proj",
235
+ "model.layers.18.self_attn.q_b_proj",
236
+ "model.layers.18.self_attn.kv_a_proj_with_mqa",
237
+ "model.layers.18.self_attn.kv_b_proj",
238
+ "model.layers.18.self_attn.o_proj",
239
+ "model.layers.19.self_attn.q_a_proj",
240
+ "model.layers.19.self_attn.q_b_proj",
241
+ "model.layers.19.self_attn.kv_a_proj_with_mqa",
242
+ "model.layers.19.self_attn.kv_b_proj",
243
+ "model.layers.19.self_attn.o_proj",
244
+ "model.layers.20.self_attn.q_a_proj",
245
+ "model.layers.20.self_attn.q_b_proj",
246
+ "model.layers.20.self_attn.kv_a_proj_with_mqa",
247
+ "model.layers.20.self_attn.kv_b_proj",
248
+ "model.layers.20.self_attn.o_proj",
249
+ "model.layers.21.self_attn.q_a_proj",
250
+ "model.layers.21.self_attn.q_b_proj",
251
+ "model.layers.21.self_attn.kv_a_proj_with_mqa",
252
+ "model.layers.21.self_attn.kv_b_proj",
253
+ "model.layers.21.self_attn.o_proj",
254
+ "model.layers.22.self_attn.q_a_proj",
255
+ "model.layers.22.self_attn.q_b_proj",
256
+ "model.layers.22.self_attn.kv_a_proj_with_mqa",
257
+ "model.layers.22.self_attn.kv_b_proj",
258
+ "model.layers.22.self_attn.o_proj",
259
+ "model.layers.23.self_attn.q_a_proj",
260
+ "model.layers.23.self_attn.q_b_proj",
261
+ "model.layers.23.self_attn.kv_a_proj_with_mqa",
262
+ "model.layers.23.self_attn.kv_b_proj",
263
+ "model.layers.23.self_attn.o_proj",
264
+ "model.layers.24.self_attn.q_a_proj",
265
+ "model.layers.24.self_attn.q_b_proj",
266
+ "model.layers.24.self_attn.kv_a_proj_with_mqa",
267
+ "model.layers.24.self_attn.kv_b_proj",
268
+ "model.layers.24.self_attn.o_proj",
269
+ "model.layers.25.self_attn.q_a_proj",
270
+ "model.layers.25.self_attn.q_b_proj",
271
+ "model.layers.25.self_attn.kv_a_proj_with_mqa",
272
+ "model.layers.25.self_attn.kv_b_proj",
273
+ "model.layers.25.self_attn.o_proj",
274
+ "model.layers.26.self_attn.q_a_proj",
275
+ "model.layers.26.self_attn.q_b_proj",
276
+ "model.layers.26.self_attn.kv_a_proj_with_mqa",
277
+ "model.layers.26.self_attn.kv_b_proj",
278
+ "model.layers.26.self_attn.o_proj",
279
+ "model.layers.27.self_attn.q_a_proj",
280
+ "model.layers.27.self_attn.q_b_proj",
281
+ "model.layers.27.self_attn.kv_a_proj_with_mqa",
282
+ "model.layers.27.self_attn.kv_b_proj",
283
+ "model.layers.27.self_attn.o_proj",
284
+ "model.layers.28.self_attn.q_a_proj",
285
+ "model.layers.28.self_attn.q_b_proj",
286
+ "model.layers.28.self_attn.kv_a_proj_with_mqa",
287
+ "model.layers.28.self_attn.kv_b_proj",
288
+ "model.layers.28.self_attn.o_proj",
289
+ "model.layers.29.self_attn.q_a_proj",
290
+ "model.layers.29.self_attn.q_b_proj",
291
+ "model.layers.29.self_attn.kv_a_proj_with_mqa",
292
+ "model.layers.29.self_attn.kv_b_proj",
293
+ "model.layers.29.self_attn.o_proj",
294
+ "model.layers.30.self_attn.q_a_proj",
295
+ "model.layers.30.self_attn.q_b_proj",
296
+ "model.layers.30.self_attn.kv_a_proj_with_mqa",
297
+ "model.layers.30.self_attn.kv_b_proj",
298
+ "model.layers.30.self_attn.o_proj",
299
+ "model.layers.31.self_attn.q_a_proj",
300
+ "model.layers.31.self_attn.q_b_proj",
301
+ "model.layers.31.self_attn.kv_a_proj_with_mqa",
302
+ "model.layers.31.self_attn.kv_b_proj",
303
+ "model.layers.31.self_attn.o_proj",
304
+ "model.layers.32.self_attn.q_a_proj",
305
+ "model.layers.32.self_attn.q_b_proj",
306
+ "model.layers.32.self_attn.kv_a_proj_with_mqa",
307
+ "model.layers.32.self_attn.kv_b_proj",
308
+ "model.layers.32.self_attn.o_proj",
309
+ "model.layers.33.self_attn.q_a_proj",
310
+ "model.layers.33.self_attn.q_b_proj",
311
+ "model.layers.33.self_attn.kv_a_proj_with_mqa",
312
+ "model.layers.33.self_attn.kv_b_proj",
313
+ "model.layers.33.self_attn.o_proj",
314
+ "model.layers.34.self_attn.q_a_proj",
315
+ "model.layers.34.self_attn.q_b_proj",
316
+ "model.layers.34.self_attn.kv_a_proj_with_mqa",
317
+ "model.layers.34.self_attn.kv_b_proj",
318
+ "model.layers.34.self_attn.o_proj",
319
+ "model.layers.35.self_attn.q_a_proj",
320
+ "model.layers.35.self_attn.q_b_proj",
321
+ "model.layers.35.self_attn.kv_a_proj_with_mqa",
322
+ "model.layers.35.self_attn.kv_b_proj",
323
+ "model.layers.35.self_attn.o_proj",
324
+ "model.layers.36.self_attn.q_a_proj",
325
+ "model.layers.36.self_attn.q_b_proj",
326
+ "model.layers.36.self_attn.kv_a_proj_with_mqa",
327
+ "model.layers.36.self_attn.kv_b_proj",
328
+ "model.layers.36.self_attn.o_proj",
329
+ "model.layers.37.self_attn.q_a_proj",
330
+ "model.layers.37.self_attn.q_b_proj",
331
+ "model.layers.37.self_attn.kv_a_proj_with_mqa",
332
+ "model.layers.37.self_attn.kv_b_proj",
333
+ "model.layers.37.self_attn.o_proj",
334
+ "model.layers.38.self_attn.q_a_proj",
335
+ "model.layers.38.self_attn.q_b_proj",
336
+ "model.layers.38.self_attn.kv_a_proj_with_mqa",
337
+ "model.layers.38.self_attn.kv_b_proj",
338
+ "model.layers.38.self_attn.o_proj",
339
+ "model.layers.39.self_attn.q_a_proj",
340
+ "model.layers.39.self_attn.q_b_proj",
341
+ "model.layers.39.self_attn.kv_a_proj_with_mqa",
342
+ "model.layers.39.self_attn.kv_b_proj",
343
+ "model.layers.39.self_attn.o_proj",
344
+ "model.layers.40.self_attn.q_a_proj",
345
+ "model.layers.40.self_attn.q_b_proj",
346
+ "model.layers.40.self_attn.kv_a_proj_with_mqa",
347
+ "model.layers.40.self_attn.kv_b_proj",
348
+ "model.layers.40.self_attn.o_proj",
349
+ "model.layers.41.self_attn.q_a_proj",
350
+ "model.layers.41.self_attn.q_b_proj",
351
+ "model.layers.41.self_attn.kv_a_proj_with_mqa",
352
+ "model.layers.41.self_attn.kv_b_proj",
353
+ "model.layers.41.self_attn.o_proj",
354
+ "model.layers.42.self_attn.q_a_proj",
355
+ "model.layers.42.self_attn.q_b_proj",
356
+ "model.layers.42.self_attn.kv_a_proj_with_mqa",
357
+ "model.layers.42.self_attn.kv_b_proj",
358
+ "model.layers.42.self_attn.o_proj",
359
+ "model.layers.43.self_attn.q_a_proj",
360
+ "model.layers.43.self_attn.q_b_proj",
361
+ "model.layers.43.self_attn.kv_a_proj_with_mqa",
362
+ "model.layers.43.self_attn.kv_b_proj",
363
+ "model.layers.43.self_attn.o_proj",
364
+ "model.layers.44.self_attn.q_a_proj",
365
+ "model.layers.44.self_attn.q_b_proj",
366
+ "model.layers.44.self_attn.kv_a_proj_with_mqa",
367
+ "model.layers.44.self_attn.kv_b_proj",
368
+ "model.layers.44.self_attn.o_proj",
369
+ "model.layers.45.self_attn.q_a_proj",
370
+ "model.layers.45.self_attn.q_b_proj",
371
+ "model.layers.45.self_attn.kv_a_proj_with_mqa",
372
+ "model.layers.45.self_attn.kv_b_proj",
373
+ "model.layers.45.self_attn.o_proj",
374
+ "model.layers.46.self_attn.q_a_proj",
375
+ "model.layers.46.self_attn.q_b_proj",
376
+ "model.layers.46.self_attn.kv_a_proj_with_mqa",
377
+ "model.layers.46.self_attn.kv_b_proj",
378
+ "model.layers.46.self_attn.o_proj",
379
+ "model.layers.47.self_attn.q_a_proj",
380
+ "model.layers.47.self_attn.q_b_proj",
381
+ "model.layers.47.self_attn.kv_a_proj_with_mqa",
382
+ "model.layers.47.self_attn.kv_b_proj",
383
+ "model.layers.47.self_attn.o_proj",
384
+ "model.layers.48.self_attn.q_a_proj",
385
+ "model.layers.48.self_attn.q_b_proj",
386
+ "model.layers.48.self_attn.kv_a_proj_with_mqa",
387
+ "model.layers.48.self_attn.kv_b_proj",
388
+ "model.layers.48.self_attn.o_proj",
389
+ "model.layers.49.self_attn.q_a_proj",
390
+ "model.layers.49.self_attn.q_b_proj",
391
+ "model.layers.49.self_attn.kv_a_proj_with_mqa",
392
+ "model.layers.49.self_attn.kv_b_proj",
393
+ "model.layers.49.self_attn.o_proj",
394
+ "model.layers.50.self_attn.q_a_proj",
395
+ "model.layers.50.self_attn.q_b_proj",
396
+ "model.layers.50.self_attn.kv_a_proj_with_mqa",
397
+ "model.layers.50.self_attn.kv_b_proj",
398
+ "model.layers.50.self_attn.o_proj",
399
+ "model.layers.51.self_attn.q_a_proj",
400
+ "model.layers.51.self_attn.q_b_proj",
401
+ "model.layers.51.self_attn.kv_a_proj_with_mqa",
402
+ "model.layers.51.self_attn.kv_b_proj",
403
+ "model.layers.51.self_attn.o_proj",
404
+ "model.layers.52.self_attn.q_a_proj",
405
+ "model.layers.52.self_attn.q_b_proj",
406
+ "model.layers.52.self_attn.kv_a_proj_with_mqa",
407
+ "model.layers.52.self_attn.kv_b_proj",
408
+ "model.layers.52.self_attn.o_proj",
409
+ "model.layers.53.self_attn.q_a_proj",
410
+ "model.layers.53.self_attn.q_b_proj",
411
+ "model.layers.53.self_attn.kv_a_proj_with_mqa",
412
+ "model.layers.53.self_attn.kv_b_proj",
413
+ "model.layers.53.self_attn.o_proj",
414
+ "model.layers.54.self_attn.q_a_proj",
415
+ "model.layers.54.self_attn.q_b_proj",
416
+ "model.layers.54.self_attn.kv_a_proj_with_mqa",
417
+ "model.layers.54.self_attn.kv_b_proj",
418
+ "model.layers.54.self_attn.o_proj",
419
+ "model.layers.55.self_attn.q_a_proj",
420
+ "model.layers.55.self_attn.q_b_proj",
421
+ "model.layers.55.self_attn.kv_a_proj_with_mqa",
422
+ "model.layers.55.self_attn.kv_b_proj",
423
+ "model.layers.55.self_attn.o_proj",
424
+ "model.layers.56.self_attn.q_a_proj",
425
+ "model.layers.56.self_attn.q_b_proj",
426
+ "model.layers.56.self_attn.kv_a_proj_with_mqa",
427
+ "model.layers.56.self_attn.kv_b_proj",
428
+ "model.layers.56.self_attn.o_proj",
429
+ "model.layers.57.self_attn.q_a_proj",
430
+ "model.layers.57.self_attn.q_b_proj",
431
+ "model.layers.57.self_attn.kv_a_proj_with_mqa",
432
+ "model.layers.57.self_attn.kv_b_proj",
433
+ "model.layers.57.self_attn.o_proj",
434
+ "model.layers.58.self_attn.q_a_proj",
435
+ "model.layers.58.self_attn.q_b_proj",
436
+ "model.layers.58.self_attn.kv_a_proj_with_mqa",
437
+ "model.layers.58.self_attn.kv_b_proj",
438
+ "model.layers.58.self_attn.o_proj",
439
+ "model.layers.59.self_attn.q_a_proj",
440
+ "model.layers.59.self_attn.q_b_proj",
441
+ "model.layers.59.self_attn.kv_a_proj_with_mqa",
442
+ "model.layers.59.self_attn.kv_b_proj",
443
+ "model.layers.59.self_attn.o_proj",
444
+ "model.layers.60.self_attn.q_a_proj",
445
+ "model.layers.60.self_attn.q_b_proj",
446
+ "model.layers.60.self_attn.kv_a_proj_with_mqa",
447
+ "model.layers.60.self_attn.kv_b_proj",
448
+ "model.layers.60.self_attn.o_proj"
449
+ ],
450
+ "kv_cache_scheme": null,
451
+ "provider": "auto-round",
452
+ "quant_method": "compressed-tensors",
453
+ "quantization_status": "compressed"
454
+ },
455
+ "rms_norm_eps": 1e-06,
456
+ "rope_interleave": true,
457
+ "rope_scaling": {
458
+ "beta_fast": 32.0,
459
+ "beta_slow": 1.0,
460
+ "factor": 40.0,
461
+ "mscale": 1.0,
462
+ "mscale_all_dim": 1.0,
463
+ "original_max_position_embeddings": 4096,
464
+ "rope_type": "yarn",
465
+ "type": "yarn"
466
+ },
467
+ "rope_theta": 10000,
468
+ "routed_scaling_factor": 2.5,
469
+ "scoring_func": "sigmoid",
470
+ "seq_aux": true,
471
+ "tie_word_embeddings": false,
472
+ "topk_group": 4,
473
+ "topk_method": "noaux_tc",
474
+ "transformers_version": "4.57.6",
475
+ "unsloth_fixed": true,
476
+ "use_cache": true,
477
+ "v_head_dim": 128,
478
+ "vocab_size": 129280
479
+ }
configuration_deepseek.py ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers.configuration_utils import PretrainedConfig
2
+ from transformers.utils import logging
3
+
4
+ logger = logging.get_logger(__name__)
5
+
6
+ DEEPSEEK_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
7
+ class DeepseekV3Config(PretrainedConfig):
8
+ r"""
9
+ This is the configuration class to store the configuration of a [`DeepseekV3Model`]. It is used to instantiate an DeepSeek
10
+ model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
11
+ defaults will yield a similar configuration to that of the DeepSeek-V3.
12
+
13
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
14
+ documentation from [`PretrainedConfig`] for more information.
15
+
16
+
17
+ Args:
18
+ vocab_size (`int`, *optional*, defaults to 129280):
19
+ Vocabulary size of the Deep model. Defines the number of different tokens that can be represented by the
20
+ `inputs_ids` passed when calling [`DeepseekV3Model`]
21
+ hidden_size (`int`, *optional*, defaults to 4096):
22
+ Dimension of the hidden representations.
23
+ intermediate_size (`int`, *optional*, defaults to 11008):
24
+ Dimension of the MLP representations.
25
+ moe_intermediate_size (`int`, *optional*, defaults to 1407):
26
+ Dimension of the MoE representations.
27
+ num_hidden_layers (`int`, *optional*, defaults to 32):
28
+ Number of hidden layers in the Transformer decoder.
29
+ num_nextn_predict_layers (`int`, *optional*, defaults to 1):
30
+ Number of nextn predict layers in the DeepSeekV3 Model.
31
+ num_attention_heads (`int`, *optional*, defaults to 32):
32
+ Number of attention heads for each attention layer in the Transformer decoder.
33
+ n_shared_experts (`int`, *optional*, defaults to None):
34
+ Number of shared experts, None means dense model.
35
+ n_routed_experts (`int`, *optional*, defaults to None):
36
+ Number of routed experts, None means dense model.
37
+ routed_scaling_factor (`float`, *optional*, defaults to 1.0):
38
+ Scaling factor or routed experts.
39
+ topk_method (`str`, *optional*, defaults to `gready`):
40
+ Topk method used in routed gate.
41
+ n_group (`int`, *optional*, defaults to None):
42
+ Number of groups for routed experts.
43
+ topk_group (`int`, *optional*, defaults to None):
44
+ Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
45
+ num_experts_per_tok (`int`, *optional*, defaults to None):
46
+ Number of selected experts, None means dense model.
47
+ moe_layer_freq (`int`, *optional*, defaults to 1):
48
+ The frequency of the MoE layer: one expert layer for every `moe_layer_freq - 1` dense layers.
49
+ first_k_dense_replace (`int`, *optional*, defaults to 0):
50
+ Number of dense layers in shallow layers(embed->dense->dense->...->dense->moe->moe...->lm_head).
51
+ \--k dense layers--/
52
+ norm_topk_prob (`bool`, *optional*, defaults to False):
53
+ Whether to normalize the weights of the routed experts.
54
+ scoring_func (`str`, *optional*, defaults to 'softmax'):
55
+ Method of computing expert weights.
56
+ aux_loss_alpha (`float`, *optional*, defaults to 0.001):
57
+ Auxiliary loss weight coefficient.
58
+ seq_aux = (`bool`, *optional*, defaults to True):
59
+ Whether to compute the auxiliary loss for each individual sample.
60
+ num_key_value_heads (`int`, *optional*):
61
+ This is the number of key_value heads that should be used to implement Grouped Query Attention. If
62
+ `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
63
+ `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
64
+ converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
65
+ by meanpooling all the original heads within that group. For more details checkout [this
66
+ paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
67
+ `num_attention_heads`.
68
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
69
+ The non-linear activation function (function or string) in the decoder.
70
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
71
+ The maximum sequence length that this model might ever be used with.
72
+ initializer_range (`float`, *optional*, defaults to 0.02):
73
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
74
+ rms_norm_eps (`float`, *optional*, defaults to 1e-06):
75
+ The epsilon used by the rms normalization layers.
76
+ use_cache (`bool`, *optional*, defaults to `True`):
77
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
78
+ relevant if `config.is_decoder=True`.
79
+ pad_token_id (`int`, *optional*):
80
+ Padding token id.
81
+ bos_token_id (`int`, *optional*, defaults to 1):
82
+ Beginning of stream token id.
83
+ eos_token_id (`int`, *optional*, defaults to 2):
84
+ End of stream token id.
85
+ pretraining_tp (`int`, *optional*, defaults to 1):
86
+ Experimental feature. Tensor parallelism rank used during pretraining. Please refer to [this
87
+ document](https://huggingface.co/docs/transformers/parallelism) to understand more about it. This value is
88
+ necessary to ensure exact reproducibility of the pretraining results. Please refer to [this
89
+ issue](https://github.com/pytorch/pytorch/issues/76232).
90
+ tie_word_embeddings (`bool`, *optional*, defaults to `False`):
91
+ Whether to tie weight embeddings
92
+ rope_theta (`float`, *optional*, defaults to 10000.0):
93
+ The base period of the RoPE embeddings.
94
+ rope_scaling (`Dict`, *optional*):
95
+ Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
96
+ strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
97
+ `{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
98
+ `max_position_embeddings` to the expected new maximum.
99
+ attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
100
+ Whether to use a bias in the query, key, value and output projection layers during self-attention.
101
+ attention_dropout (`float`, *optional*, defaults to 0.0):
102
+ The dropout ratio for the attention probabilities.
103
+
104
+ ```python
105
+ >>> from transformers import DeepseekV3Model, DeepseekV3Config
106
+
107
+ >>> # Initializing a Deepseek-V3 style configuration
108
+ >>> configuration = DeepseekV3Config()
109
+
110
+ >>> # Accessing the model configuration
111
+ >>> configuration = model.config
112
+ ```"""
113
+
114
+ model_type = "deepseek_v3"
115
+ keys_to_ignore_at_inference = ["past_key_values"]
116
+
117
+ def __init__(
118
+ self,
119
+ vocab_size=129280,
120
+ hidden_size=7168,
121
+ intermediate_size=18432,
122
+ moe_intermediate_size = 2048,
123
+ num_hidden_layers=61,
124
+ num_nextn_predict_layers=1,
125
+ num_attention_heads=128,
126
+ num_key_value_heads=128,
127
+ n_shared_experts = 1,
128
+ n_routed_experts = 256,
129
+ ep_size = 1,
130
+ routed_scaling_factor = 2.5,
131
+ kv_lora_rank = 512,
132
+ q_lora_rank = 1536,
133
+ qk_rope_head_dim = 64,
134
+ v_head_dim = 128,
135
+ qk_nope_head_dim = 128,
136
+ topk_method = 'noaux_tc',
137
+ n_group = 8,
138
+ topk_group = 4,
139
+ num_experts_per_tok = 8,
140
+ moe_layer_freq = 1,
141
+ first_k_dense_replace = 3,
142
+ norm_topk_prob = True,
143
+ scoring_func = 'sigmoid',
144
+ aux_loss_alpha = 0.001,
145
+ seq_aux = True,
146
+ hidden_act="silu",
147
+ max_position_embeddings=4096,
148
+ initializer_range=0.02,
149
+ rms_norm_eps=1e-6,
150
+ use_cache=True,
151
+ pad_token_id=None,
152
+ bos_token_id=0,
153
+ eos_token_id=1,
154
+ pretraining_tp=1,
155
+ tie_word_embeddings=False,
156
+ rope_theta=10000.0,
157
+ rope_scaling=None,
158
+ attention_bias=False,
159
+ attention_dropout=0.0,
160
+ **kwargs,
161
+ ):
162
+ self.vocab_size = vocab_size
163
+ self.max_position_embeddings = max_position_embeddings
164
+ self.hidden_size = hidden_size
165
+ self.intermediate_size = intermediate_size
166
+ self.moe_intermediate_size = moe_intermediate_size
167
+ self.num_hidden_layers = num_hidden_layers
168
+ self.num_nextn_predict_layers = num_nextn_predict_layers
169
+ self.num_attention_heads = num_attention_heads
170
+ self.n_shared_experts = n_shared_experts
171
+ self.n_routed_experts = n_routed_experts
172
+ self.ep_size = ep_size
173
+ self.routed_scaling_factor = routed_scaling_factor
174
+ self.kv_lora_rank = kv_lora_rank
175
+ self.q_lora_rank = q_lora_rank
176
+ self.qk_rope_head_dim = qk_rope_head_dim
177
+ self.v_head_dim = v_head_dim
178
+ self.qk_nope_head_dim = qk_nope_head_dim
179
+ self.topk_method = topk_method
180
+ self.n_group = n_group
181
+ self.topk_group = topk_group
182
+ self.num_experts_per_tok = num_experts_per_tok
183
+ self.moe_layer_freq = moe_layer_freq
184
+ self.first_k_dense_replace = first_k_dense_replace
185
+ self.norm_topk_prob = norm_topk_prob
186
+ self.scoring_func = scoring_func
187
+ self.aux_loss_alpha = aux_loss_alpha
188
+ self.seq_aux = seq_aux
189
+ # for backward compatibility
190
+ if num_key_value_heads is None:
191
+ num_key_value_heads = num_attention_heads
192
+
193
+ self.num_key_value_heads = num_key_value_heads
194
+ self.hidden_act = hidden_act
195
+ self.initializer_range = initializer_range
196
+ self.rms_norm_eps = rms_norm_eps
197
+ self.pretraining_tp = pretraining_tp
198
+ self.use_cache = use_cache
199
+ self.rope_theta = rope_theta
200
+ self.rope_scaling = rope_scaling
201
+ self.attention_bias = attention_bias
202
+ self.attention_dropout = attention_dropout
203
+
204
+ super().__init__(
205
+ pad_token_id=pad_token_id,
206
+ bos_token_id=bos_token_id,
207
+ eos_token_id=eos_token_id,
208
+ tie_word_embeddings=tie_word_embeddings,
209
+ **kwargs,
210
+ )
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "do_sample": true,
5
+ "eos_token_id": 1,
6
+ "temperature": 0.6,
7
+ "top_p": 0.95,
8
+ "transformers_version": "4.57.6"
9
+ }
model-00001-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6759bb71a85f7cd30169344af0939f9529dfd5fca22ae6eed284227b193e5afa
3
+ size 4995885736
model-00002-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adc76e4eae04bb73c56e2c38afaa2608bc8bfa3d119bad71236d27b0e9a6ecef
3
+ size 4995056976
model-00003-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4355d57b137b34b67c2b4336a5446b88a62794218afacb13035b9c76e10c0f43
3
+ size 4999075520
model-00004-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d92e23e7324b0a30c4e34b947e3e001dda836ee91cdafe5532ec1c2ee0ffe4f
3
+ size 4994947240
model-00005-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37b2660c03ef47f51ecc25f99dcc52446c52ef4619d80448259f9bafcaee858c
3
+ size 4994947376
model-00006-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3211c405272ebff7120cb2890e2129177a9a880d3a7f1d129394b7a46f6ce56
3
+ size 4994947600
model-00007-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ff5f294a1c39d74776b0b699c4e5a4609ce058f238c36d5ea6ae7caa7cafc7a
3
+ size 4999185112
model-00008-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fea1a392978fa75e2ea4d20be502bd375cd1af0c7a33b21d2fe5e27fc5baa3f6
3
+ size 4994947240
model-00009-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed3751349d2119fe99b96420aedae79ff14411e44c80980c544933cc634ee4b2
3
+ size 4994947240
model-00010-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cff1d49c8886b70757f064e14d0c58a5c9f3dd521b3ac2d810151b710c2dff37
3
+ size 4994947864
model-00011-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4106f960319855cd13d2a7235ecdaaaadfb106b4d5c2d5dbf6c9fcf5bf201252
3
+ size 4916048440
model-00012-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83431f80971dc4b46a34fbdd74f89137acb27f39f909df9b7ebb8024206a990f
3
+ size 5000096208
model-00013-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e86cdeb3aff490a991bcd535bd00b2d09d93bbd7b7ec61251a22533c59dbeeb3
3
+ size 4994948440
model-00014-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:252a5e924f2a3b0b5ae65f425888d4cfd3003d1857012a8b3b921651ab0447a4
3
+ size 4994948536
model-00015-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db2f03e02b49553e48373d7c5e4fc2b2c292ae7d7082d0324a7af571904df4be
3
+ size 4994948792
model-00016-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c89cde61b00b86ff8426a6bc04ee5043a53d8faae9553be9aaa3f075a4c3d496
3
+ size 4999186440
model-00017-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:018ea2d645b71476853833a8d1b6d2589ca7003e3320b852ef96657016151663
3
+ size 4994948432
model-00018-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:416e8b56db8f06ec4483ff34320624570e94fa60635310e4886609fc84242c26
3
+ size 4994948440
model-00019-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2347062fb9d94570b9c38b0e96bd13b0e18c6e981bb9ad5d0013e780a33b765
3
+ size 4994948680
model-00020-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e74a9f69aa604aaa0f0dfbe74eeb371faf0959db93b9c927f46c640bab77a9f
3
+ size 4767866632
model-00021-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b68dc983941fbd856e95a21ab6dab7fd2cec00cf70dae5678852fc698d827c75
3
+ size 5000096208
model-00022-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46fd8f0734b8c332a17640ab3ca92dba66ea64c10ad9583bc9f0a4716a9adacc
3
+ size 4994948440
model-00023-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0be82bf4252cd427b5f38c9dedf79cb80eff6bcffec039cbc2574c5a312f756d
3
+ size 4994948536
model-00024-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10d56e72dd7fdf54ddef3b4800182fd54e0525a9bc2355035d7091c780d544c9
3
+ size 4994948792
model-00025-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4d1b1a64141e55c9a7666d5c6ef8944a81ebb8e3c94554f3604301381a29e4c
3
+ size 4999186440
model-00026-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7336e173e3a2d947e6e1150afda5d1e465d53f992e93bfc3114587048a45dc4
3
+ size 4994948432
model-00027-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d555207b5fa75ee79e8ab6138b43f2b5062acc2bdb8c385e07ea478519094d57
3
+ size 4994948440
model-00028-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dbe895e7d30bf2f84f463023a844dfcb07da32ba2425a86f5911e302149ebe6
3
+ size 4994948680
model-00029-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcef0a7c4cfc13b2327b1e9c48f53f3973d04c8a0ff9ede061aa718a40b36cf0
3
+ size 4767866632
model-00030-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3fedc9cd5e258af53c2723c761b69b4178d8dd2cdb8ec3b2b3540091e8230e8
3
+ size 5000096208
model-00031-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2865ba423039f7ed8d1d78ea7565d9616df833ce8cfec53194bfe4b1639825e7
3
+ size 4994948440
model-00032-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7d1264b48a563ca998961ddd1c17de6bbaa962673db9ab26f511cc6cf06e103
3
+ size 4994948536
model-00033-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:384076b04fa378c492c259906711e3d2d9e23748e244d223b5c7f61f65c3b2cf
3
+ size 4994948792
model-00034-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:388168d4031b159e191ce671f8169a01557f868144d100c2e2b2a7a73af2d7b5
3
+ size 4999186440
model-00035-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aac8369cc02716f812eb0f89607d6f5c42cb5e56d3ed20031260b3f850752ded
3
+ size 4994948432
model-00036-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bccd18590c02f509b9a4b5e503d3f41d658eede4902c6073542d85c4ab119c8
3
+ size 4994948440
model-00037-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf997c179127a4c56bce49ff7922c001c96c0d1abfd7970ef675cf8c64b01aa9
3
+ size 4994948680
model-00038-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a77f2ae97905a2616f6a1129b4d27697e1e73f6d8edbf27f9c75f91be25a5fe3
3
+ size 4767866632
model-00039-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f257ad80411006f3356005c4eee47bec74e3970b1ff4803e31a5b17fb06c634
3
+ size 5000096208
model-00040-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97237e87a51f1a66048ced46a61504585d8c3e25a38d92381c5c120c07dc1145
3
+ size 4994948440
model-00041-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e166db426c5986878b52130d0b0171f812901711893d28cecf4e0abd7f9a285b
3
+ size 4994948536
model-00042-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f90bd22d9dfe84eee496a1eb4ba21f457dbaed399c0383df6d8dba16676b274
3
+ size 4994948792
model-00043-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0edc68a1b0177319632f4ecc595fd24184652dcf4c234cf66c0fd32195b7283e
3
+ size 4999186440
model-00044-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:816fc641f71f09c3b32b7345b34f9b0cbfc0a22181f83b80f148d775d14a2347
3
+ size 4994948432
model-00045-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea1745877489e4e2cd1980b83e2120e99f93e119d3ba24f873fc445a6cfb5c10
3
+ size 4994948440
model-00046-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00b02ea0527176c39e34f12cf79cc0f5f816d7d623d703f1c8d3094fc69bc7d3
3
+ size 4994948680