Jackmin108 commited on
Commit
7173592
·
verified ·
1 Parent(s): 2805d96

Add files using upload-large-folder tool

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 +1 -0
  2. chat_template.jinja +137 -0
  3. config.json +410 -0
  4. model-00001-of-00048.safetensors +3 -0
  5. model-00002-of-00048.safetensors +3 -0
  6. model-00003-of-00048.safetensors +3 -0
  7. model-00005-of-00048.safetensors +3 -0
  8. model-00006-of-00048.safetensors +3 -0
  9. model-00007-of-00048.safetensors +3 -0
  10. model-00008-of-00048.safetensors +3 -0
  11. model-00009-of-00048.safetensors +3 -0
  12. model-00010-of-00048.safetensors +3 -0
  13. model-00012-of-00048.safetensors +3 -0
  14. model-00014-of-00048.safetensors +3 -0
  15. model-00015-of-00048.safetensors +3 -0
  16. model-00016-of-00048.safetensors +3 -0
  17. model-00017-of-00048.safetensors +3 -0
  18. model-00018-of-00048.safetensors +3 -0
  19. model-00019-of-00048.safetensors +3 -0
  20. model-00020-of-00048.safetensors +3 -0
  21. model-00021-of-00048.safetensors +3 -0
  22. model-00022-of-00048.safetensors +3 -0
  23. model-00024-of-00048.safetensors +3 -0
  24. model-00025-of-00048.safetensors +3 -0
  25. model-00026-of-00048.safetensors +3 -0
  26. model-00027-of-00048.safetensors +3 -0
  27. model-00028-of-00048.safetensors +3 -0
  28. model-00029-of-00048.safetensors +3 -0
  29. model-00030-of-00048.safetensors +3 -0
  30. model-00031-of-00048.safetensors +3 -0
  31. model-00032-of-00048.safetensors +3 -0
  32. model-00033-of-00048.safetensors +3 -0
  33. model-00034-of-00048.safetensors +3 -0
  34. model-00035-of-00048.safetensors +3 -0
  35. model-00036-of-00048.safetensors +3 -0
  36. model-00037-of-00048.safetensors +3 -0
  37. model-00038-of-00048.safetensors +3 -0
  38. model-00039-of-00048.safetensors +3 -0
  39. model-00040-of-00048.safetensors +3 -0
  40. model-00041-of-00048.safetensors +3 -0
  41. model-00042-of-00048.safetensors +3 -0
  42. model-00043-of-00048.safetensors +3 -0
  43. model-00044-of-00048.safetensors +3 -0
  44. model-00045-of-00048.safetensors +3 -0
  45. model-00046-of-00048.safetensors +3 -0
  46. model-00047-of-00048.safetensors +3 -0
  47. model-00048-of-00048.safetensors +3 -0
  48. model.safetensors.index.json +0 -0
  49. special_tokens_map.json +40 -0
  50. tokenizer.json +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% macro render_extra_keys(json_dict, handled_keys) %}
2
+ {%- if json_dict is mapping %}
3
+ {%- for json_key in json_dict if json_key not in handled_keys %}
4
+ {%- if json_dict[json_key] is mapping or (json_dict[json_key] is sequence and json_dict[json_key] is not string) %}
5
+ {{- '\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | tojson | safe) ~ '</' ~ json_key ~ '>' }}
6
+ {%- else %}
7
+ {{-'\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | string) ~ '</' ~ json_key ~ '>' }}
8
+ {%- endif %}
9
+ {%- endfor %}
10
+ {%- endif %}
11
+ {% endmacro %}
12
+
13
+ {%- if messages[0]["role"] == "system" %}
14
+ {%- set system_message = messages[0]["content"] %}
15
+ {%- set loop_messages = messages[1:] %}
16
+ {%- else %}
17
+ {%- set loop_messages = messages %}
18
+ {%- endif %}
19
+
20
+ {%- if not tools is defined %}
21
+ {%- set tools = [] %}
22
+ {%- endif %}
23
+
24
+ {%- if system_message is defined %}
25
+ {{- "<|im_start|>system\n" + system_message }}
26
+ {%- else %}
27
+ {%- if tools is iterable and tools | length > 0 %}
28
+ {{- "<|im_start|>system\nYou are INTELLECT-3, a helpful assistant developed by Prime Intellect, that can interact with a computer to solve tasks." }}
29
+ {%- endif %}
30
+ {%- endif %}
31
+ {%- if tools is iterable and tools | length > 0 %}
32
+ {{- "\n\n# Tools\n\nYou have access to the following functions:\n\n" }}
33
+ {{- "<tools>" }}
34
+ {%- for tool in tools %}
35
+ {%- if tool.function is defined %}
36
+ {%- set tool = tool.function %}
37
+ {%- endif %}
38
+ {{- "\n<function>\n<name>" ~ tool.name ~ "</name>" }}
39
+ {%- if tool.description is defined %}
40
+ {{- '\n<description>' ~ (tool.description | trim) ~ '</description>' }}
41
+ {%- endif %}
42
+ {{- '\n<parameters>' }}
43
+ {%- if tool.parameters is defined and tool.parameters is mapping and tool.parameters.properties is defined and tool.parameters.properties is mapping %}
44
+ {%- for param_name, param_fields in tool.parameters.properties|items %}
45
+ {{- '\n<parameter>' }}
46
+ {{- '\n<name>' ~ param_name ~ '</name>' }}
47
+ {%- if param_fields.type is defined %}
48
+ {{- '\n<type>' ~ (param_fields.type | string) ~ '</type>' }}
49
+ {%- endif %}
50
+ {%- if param_fields.description is defined %}
51
+ {{- '\n<description>' ~ (param_fields.description | trim) ~ '</description>' }}
52
+ {%- endif %}
53
+ {%- set handled_keys = ['name', 'type', 'description'] %}
54
+ {{- render_extra_keys(param_fields, handled_keys) }}
55
+ {{- '\n</parameter>' }}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {% set handled_keys = ['type', 'properties'] %}
59
+ {{- render_extra_keys(tool.parameters, handled_keys) }}
60
+ {{- '\n</parameters>' }}
61
+ {%- set handled_keys = ['type', 'name', 'description', 'parameters'] %}
62
+ {{- render_extra_keys(tool, handled_keys) }}
63
+ {{- '\n</function>' }}
64
+ {%- endfor %}
65
+ {{- "\n</tools>" }}
66
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
67
+ {%- endif %}
68
+ {%- if system_message is defined %}
69
+ {{- '<|im_end|>\n' }}
70
+ {%- else %}
71
+ {%- if tools is iterable and tools | length > 0 %}
72
+ {{- '<|im_end|>\n' }}
73
+ {%- endif %}
74
+ {%- endif %}
75
+ {%- for message in loop_messages %}
76
+ {%- if message.role == "assistant" and message.tool_calls is defined and message.tool_calls is iterable and message.tool_calls | length > 0 %}
77
+ {{- '<|im_start|>' + message.role }}
78
+ {%- if message.content is defined and message.content is string %}
79
+ {%- if message.reasoning_content is defined -%}
80
+ {%- if message.reasoning_content -%}
81
+ {{ '\n<think>' + message.reasoning_content.strip() + '</think>' }}
82
+ {%- else -%}
83
+ {{ '\n<think></think>' }}
84
+ {%- endif -%}
85
+ {%- endif -%}
86
+ {{- '\n' + message.content | trim + '\n' }}
87
+ {%- endif %}
88
+ {%- for tool_call in message.tool_calls %}
89
+ {%- if tool_call.function is defined %}
90
+ {%- set tool_call = tool_call.function %}
91
+ {%- endif %}
92
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
93
+ {%- if tool_call.arguments is defined %}
94
+ {%- for args_name, args_value in tool_call.arguments|items %}
95
+ {{- '<parameter=' + args_name + '>\n' }}
96
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
97
+ {{- args_value }}
98
+ {{- '\n</parameter>\n' }}
99
+ {%- endfor %}
100
+ {%- endif %}
101
+ {{- '</function>\n</tool_call>' }}
102
+ {%- endfor %}
103
+ {{- '<|im_end|>\n' }}
104
+ {%- elif message.role == "user" or message.role == "system" or message.role == "assistant" %}
105
+ {{- '<|im_start|>' + message.role }}
106
+ {%- if message.role == "assistant" and message.reasoning_content is defined %}
107
+ {%- if message.reasoning_content -%}
108
+ {{ '\n<think>' + message.reasoning_content.strip() + '</think>' }}
109
+ {%- else -%}
110
+ {{ '\n<think></think>' }}
111
+ {%- endif -%}
112
+ {%- if message.content.strip() -%}
113
+ {{ '\n' + message.content.strip() }}
114
+ {%- endif -%}
115
+ {%- else %}
116
+ {{- '\n' + message.content }}
117
+ {%- endif %}
118
+ {{- '<|im_end|>' + '\n' }}
119
+ {%- elif message.role == "tool" %}
120
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
121
+ {{- '<|im_start|>user\n' }}
122
+ {%- endif %}
123
+ {{- '<tool_response>\n' }}
124
+ {{- message.content }}
125
+ {{- '\n</tool_response>\n' }}
126
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
127
+ {{- '<|im_end|>\n' }}
128
+ {%- elif loop.last %}
129
+ {{- '<|im_end|>\n' }}
130
+ {%- endif %}
131
+ {%- else %}
132
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>\n' }}
133
+ {%- endif %}
134
+ {%- endfor %}
135
+ {%- if add_generation_prompt %}
136
+ {{- '<|im_start|>assistant\n' }}
137
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,410 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4MoeForCausalLM"
4
+ ],
5
+ "attention_bias": true,
6
+ "attention_dropout": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "configuration_glm4_moe.Glm4MoeConfig",
9
+ "AutoModel": "modeling_glm4_moe.Glm4MoeModel",
10
+ "AutoModelForCausalLM": "modeling_glm4_moe.Glm4MoeForCausalLM"
11
+ },
12
+ "dtype": "bfloat16",
13
+ "eos_token_id": [
14
+ 151334,
15
+ 151329
16
+ ],
17
+ "first_k_dense_replace": 1,
18
+ "head_dim": 128,
19
+ "hidden_act": "silu",
20
+ "hidden_size": 4096,
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 10944,
23
+ "max_position_embeddings": 131072,
24
+ "model_type": "glm4_moe",
25
+ "moe_intermediate_size": 1408,
26
+ "n_group": 1,
27
+ "n_routed_experts": 128,
28
+ "n_shared_experts": 1,
29
+ "norm_topk_prob": true,
30
+ "num_attention_heads": 96,
31
+ "num_experts_per_tok": 8,
32
+ "num_hidden_layers": 46,
33
+ "num_key_value_heads": 8,
34
+ "num_nextn_predict_layers": 1,
35
+ "pad_token_id": 151329,
36
+ "partial_rotary_factor": 0.5,
37
+ "rms_norm_eps": 1e-05,
38
+ "rope_scaling": null,
39
+ "rope_theta": 1000000,
40
+ "routed_scaling_factor": 1.0,
41
+ "tie_word_embeddings": false,
42
+ "topk_group": 1,
43
+ "transformers_version": "4.56.1",
44
+ "use_cache": false,
45
+ "use_grouped_mm": true,
46
+ "use_qk_norm": false,
47
+ "vocab_size": 151552,
48
+ "quantization_config": {
49
+ "config_groups": {
50
+ "group_0": {
51
+ "input_activations": {
52
+ "actorder": null,
53
+ "block_structure": null,
54
+ "dynamic": true,
55
+ "group_size": null,
56
+ "num_bits": 8,
57
+ "observer": null,
58
+ "observer_kwargs": {},
59
+ "strategy": "token",
60
+ "symmetric": true,
61
+ "type": "float"
62
+ },
63
+ "output_activations": null,
64
+ "targets": [
65
+ "Linear"
66
+ ],
67
+ "weights": {
68
+ "actorder": null,
69
+ "block_structure": null,
70
+ "dynamic": false,
71
+ "group_size": null,
72
+ "num_bits": 8,
73
+ "observer": "minmax",
74
+ "observer_kwargs": {},
75
+ "strategy": "channel",
76
+ "symmetric": true,
77
+ "type": "float"
78
+ }
79
+ }
80
+ },
81
+ "format": "float-quantized",
82
+ "ignore": [
83
+ "model.layers.38.self_attn.k_proj.bias",
84
+ "model.layers.39.self_attn.v_proj.bias",
85
+ "model.layers.2.mlp.gate",
86
+ "model.layers.10.post_attention_layernorm",
87
+ "model.layers.7.mlp.gate",
88
+ "model.layers.34.mlp.gate.e_score_correction_bias",
89
+ "model.layers.32.mlp.gate",
90
+ "model.layers.38.post_attention_layernorm",
91
+ "model.layers.1.post_attention_layernorm",
92
+ "model.layers.17.mlp.gate",
93
+ "model.layers.41.post_attention_layernorm",
94
+ "model.layers.41.self_attn.q_proj.bias",
95
+ "model.layers.27.mlp.gate",
96
+ "model.layers.40.mlp.gate.e_score_correction_bias",
97
+ "model.layers.10.mlp.gate.e_score_correction_bias",
98
+ "model.layers.18.input_layernorm",
99
+ "model.layers.8.mlp.gate.e_score_correction_bias",
100
+ "model.layers.17.self_attn.q_proj.bias",
101
+ "model.layers.1.self_attn.v_proj.bias",
102
+ "model.layers.22.mlp.gate.e_score_correction_bias",
103
+ "model.layers.1.mlp.gate.e_score_correction_bias",
104
+ "model.layers.25.self_attn.k_proj.bias",
105
+ "model.layers.17.post_attention_layernorm",
106
+ "model.layers.4.post_attention_layernorm",
107
+ "model.layers.31.self_attn.k_proj.bias",
108
+ "model.layers.24.self_attn.v_proj.bias",
109
+ "model.layers.42.mlp.gate",
110
+ "model.layers.25.self_attn.v_proj.bias",
111
+ "model.layers.35.self_attn.k_proj.bias",
112
+ "model.layers.4.mlp.gate",
113
+ "model.layers.15.mlp.gate",
114
+ "model.layers.24.mlp.gate.e_score_correction_bias",
115
+ "model.layers.23.post_attention_layernorm",
116
+ "model.layers.2.input_layernorm",
117
+ "model.layers.30.input_layernorm",
118
+ "model.layers.41.input_layernorm",
119
+ "model.layers.31.mlp.gate.e_score_correction_bias",
120
+ "model.layers.5.self_attn.v_proj.bias",
121
+ "model.layers.3.mlp.gate.e_score_correction_bias",
122
+ "model.layers.43.self_attn.k_proj.bias",
123
+ "model.layers.32.self_attn.q_proj.bias",
124
+ "model.layers.14.self_attn.q_proj.bias",
125
+ "model.layers.24.self_attn.q_proj.bias",
126
+ "model.layers.19.post_attention_layernorm",
127
+ "model.layers.9.self_attn.k_proj.bias",
128
+ "model.layers.31.input_layernorm",
129
+ "model.layers.11.self_attn.q_proj.bias",
130
+ "model.layers.11.mlp.gate.e_score_correction_bias",
131
+ "model.layers.15.self_attn.q_proj.bias",
132
+ "model.layers.35.input_layernorm",
133
+ "model.layers.14.input_layernorm",
134
+ "model.layers.19.mlp.gate.e_score_correction_bias",
135
+ "model.layers.13.mlp.gate",
136
+ "model.layers.6.self_attn.v_proj.bias",
137
+ "model.layers.11.mlp.gate",
138
+ "model.layers.23.self_attn.k_proj.bias",
139
+ "model.layers.26.self_attn.k_proj.bias",
140
+ "model.layers.16.self_attn.v_proj.bias",
141
+ "model.layers.28.mlp.gate.e_score_correction_bias",
142
+ "model.layers.23.input_layernorm",
143
+ "model.layers.31.self_attn.q_proj.bias",
144
+ "model.layers.14.mlp.gate.e_score_correction_bias",
145
+ "model.norm",
146
+ "model.layers.8.self_attn.k_proj.bias",
147
+ "model.layers.28.self_attn.k_proj.bias",
148
+ "model.layers.9.mlp.gate.e_score_correction_bias",
149
+ "model.layers.37.self_attn.k_proj.bias",
150
+ "model.layers.37.post_attention_layernorm",
151
+ "model.layers.28.post_attention_layernorm",
152
+ "model.layers.28.self_attn.v_proj.bias",
153
+ "model.layers.45.self_attn.q_proj.bias",
154
+ "model.layers.20.input_layernorm",
155
+ "model.layers.40.self_attn.k_proj.bias",
156
+ "model.layers.13.post_attention_layernorm",
157
+ "model.layers.17.self_attn.k_proj.bias",
158
+ "model.layers.33.mlp.gate.e_score_correction_bias",
159
+ "model.layers.41.self_attn.k_proj.bias",
160
+ "model.layers.31.post_attention_layernorm",
161
+ "model.layers.28.input_layernorm",
162
+ "model.layers.1.input_layernorm",
163
+ "model.layers.9.input_layernorm",
164
+ "model.layers.25.self_attn.q_proj.bias",
165
+ "model.layers.41.mlp.gate.e_score_correction_bias",
166
+ "model.layers.21.self_attn.q_proj.bias",
167
+ "model.layers.40.mlp.gate",
168
+ "model.layers.32.self_attn.k_proj.bias",
169
+ "model.layers.17.self_attn.v_proj.bias",
170
+ "model.layers.29.self_attn.q_proj.bias",
171
+ "model.layers.36.mlp.gate.e_score_correction_bias",
172
+ "model.layers.31.self_attn.v_proj.bias",
173
+ "model.layers.5.mlp.gate.e_score_correction_bias",
174
+ "model.layers.38.self_attn.v_proj.bias",
175
+ "model.layers.17.input_layernorm",
176
+ "model.layers.5.mlp.gate",
177
+ "model.layers.16.input_layernorm",
178
+ "model.layers.34.self_attn.q_proj.bias",
179
+ "model.layers.40.input_layernorm",
180
+ "model.layers.39.mlp.gate.e_score_correction_bias",
181
+ "model.layers.18.mlp.gate",
182
+ "model.layers.32.post_attention_layernorm",
183
+ "lm_head",
184
+ "model.layers.4.mlp.gate.e_score_correction_bias",
185
+ "model.layers.13.self_attn.k_proj.bias",
186
+ "model.layers.19.input_layernorm",
187
+ "model.layers.11.self_attn.v_proj.bias",
188
+ "model.layers.5.self_attn.q_proj.bias",
189
+ "model.layers.18.self_attn.k_proj.bias",
190
+ "model.layers.3.self_attn.v_proj.bias",
191
+ "model.layers.31.mlp.gate",
192
+ "model.layers.6.self_attn.q_proj.bias",
193
+ "model.layers.1.mlp.gate",
194
+ "model.layers.22.self_attn.q_proj.bias",
195
+ "model.layers.33.post_attention_layernorm",
196
+ "model.layers.21.self_attn.v_proj.bias",
197
+ "model.layers.8.self_attn.v_proj.bias",
198
+ "model.layers.29.self_attn.k_proj.bias",
199
+ "model.layers.12.self_attn.q_proj.bias",
200
+ "model.layers.27.self_attn.v_proj.bias",
201
+ "model.layers.45.self_attn.v_proj.bias",
202
+ "model.layers.34.self_attn.k_proj.bias",
203
+ "model.layers.39.self_attn.q_proj.bias",
204
+ "model.layers.29.self_attn.v_proj.bias",
205
+ "model.layers.2.post_attention_layernorm",
206
+ "model.layers.33.input_layernorm",
207
+ "model.layers.25.post_attention_layernorm",
208
+ "model.layers.11.self_attn.k_proj.bias",
209
+ "model.layers.7.input_layernorm",
210
+ "model.layers.16.self_attn.k_proj.bias",
211
+ "model.layers.38.mlp.gate.e_score_correction_bias",
212
+ "model.layers.23.mlp.gate",
213
+ "model.layers.18.self_attn.q_proj.bias",
214
+ "model.layers.22.self_attn.k_proj.bias",
215
+ "model.layers.10.mlp.gate",
216
+ "model.layers.27.self_attn.k_proj.bias",
217
+ "model.layers.30.self_attn.k_proj.bias",
218
+ "model.layers.13.self_attn.v_proj.bias",
219
+ "model.layers.43.post_attention_layernorm",
220
+ "model.layers.40.self_attn.q_proj.bias",
221
+ "model.layers.36.post_attention_layernorm",
222
+ "model.layers.36.self_attn.q_proj.bias",
223
+ "model.layers.9.self_attn.v_proj.bias",
224
+ "model.layers.34.self_attn.v_proj.bias",
225
+ "model.layers.41.self_attn.v_proj.bias",
226
+ "model.layers.42.post_attention_layernorm",
227
+ "model.layers.38.self_attn.q_proj.bias",
228
+ "model.layers.37.mlp.gate.e_score_correction_bias",
229
+ "model.layers.45.self_attn.k_proj.bias",
230
+ "model.layers.32.mlp.gate.e_score_correction_bias",
231
+ "model.layers.16.mlp.gate",
232
+ "model.layers.16.mlp.gate.e_score_correction_bias",
233
+ "model.layers.4.self_attn.v_proj.bias",
234
+ "model.layers.36.self_attn.k_proj.bias",
235
+ "model.layers.25.mlp.gate.e_score_correction_bias",
236
+ "model.layers.20.self_attn.k_proj.bias",
237
+ "model.layers.12.post_attention_layernorm",
238
+ "model.layers.29.mlp.gate.e_score_correction_bias",
239
+ "model.layers.4.input_layernorm",
240
+ "model.layers.37.mlp.gate",
241
+ "model.layers.0.input_layernorm",
242
+ "model.layers.42.self_attn.k_proj.bias",
243
+ "model.layers.0.self_attn.q_proj.bias",
244
+ "model.layers.15.self_attn.v_proj.bias",
245
+ "model.layers.15.input_layernorm",
246
+ "model.layers.6.post_attention_layernorm",
247
+ "model.layers.34.post_attention_layernorm",
248
+ "model.layers.5.input_layernorm",
249
+ "model.layers.29.post_attention_layernorm",
250
+ "model.layers.30.mlp.gate",
251
+ "model.layers.38.input_layernorm",
252
+ "model.layers.6.input_layernorm",
253
+ "model.layers.22.post_attention_layernorm",
254
+ "model.layers.19.self_attn.k_proj.bias",
255
+ "model.layers.7.self_attn.v_proj.bias",
256
+ "model.layers.0.self_attn.v_proj.bias",
257
+ "model.layers.34.input_layernorm",
258
+ "model.layers.19.self_attn.q_proj.bias",
259
+ "model.layers.37.input_layernorm",
260
+ "model.layers.3.self_attn.q_proj.bias",
261
+ "model.layers.2.self_attn.v_proj.bias",
262
+ "model.layers.5.post_attention_layernorm",
263
+ "model.layers.32.input_layernorm",
264
+ "model.layers.4.self_attn.k_proj.bias",
265
+ "model.layers.22.self_attn.v_proj.bias",
266
+ "model.layers.15.post_attention_layernorm",
267
+ "model.layers.10.self_attn.v_proj.bias",
268
+ "model.layers.9.mlp.gate",
269
+ "model.layers.7.self_attn.k_proj.bias",
270
+ "model.layers.32.self_attn.v_proj.bias",
271
+ "model.layers.33.self_attn.q_proj.bias",
272
+ "model.layers.27.mlp.gate.e_score_correction_bias",
273
+ "model.layers.7.post_attention_layernorm",
274
+ "model.layers.37.self_attn.v_proj.bias",
275
+ "model.layers.29.mlp.gate",
276
+ "model.layers.14.mlp.gate",
277
+ "model.layers.42.self_attn.q_proj.bias",
278
+ "model.layers.28.mlp.gate",
279
+ "model.layers.22.mlp.gate",
280
+ "model.layers.14.self_attn.v_proj.bias",
281
+ "model.layers.26.self_attn.q_proj.bias",
282
+ "model.layers.44.self_attn.q_proj.bias",
283
+ "model.layers.21.input_layernorm",
284
+ "model.layers.27.post_attention_layernorm",
285
+ "model.layers.24.self_attn.k_proj.bias",
286
+ "model.layers.19.self_attn.v_proj.bias",
287
+ "model.layers.26.self_attn.v_proj.bias",
288
+ "model.layers.45.mlp.gate.e_score_correction_bias",
289
+ "model.layers.42.input_layernorm",
290
+ "model.layers.15.self_attn.k_proj.bias",
291
+ "model.layers.6.mlp.gate",
292
+ "model.layers.33.self_attn.v_proj.bias",
293
+ "model.layers.44.self_attn.k_proj.bias",
294
+ "model.layers.7.mlp.gate.e_score_correction_bias",
295
+ "model.layers.45.mlp.gate",
296
+ "model.layers.12.input_layernorm",
297
+ "model.layers.24.post_attention_layernorm",
298
+ "model.layers.35.self_attn.v_proj.bias",
299
+ "model.layers.35.mlp.gate",
300
+ "model.layers.17.mlp.gate.e_score_correction_bias",
301
+ "model.layers.8.input_layernorm",
302
+ "model.layers.30.self_attn.q_proj.bias",
303
+ "model.layers.26.post_attention_layernorm",
304
+ "model.layers.8.self_attn.q_proj.bias",
305
+ "model.layers.3.post_attention_layernorm",
306
+ "model.layers.12.mlp.gate.e_score_correction_bias",
307
+ "model.layers.8.post_attention_layernorm",
308
+ "model.layers.8.mlp.gate",
309
+ "model.layers.6.mlp.gate.e_score_correction_bias",
310
+ "model.layers.33.self_attn.k_proj.bias",
311
+ "model.layers.3.self_attn.k_proj.bias",
312
+ "model.layers.29.input_layernorm",
313
+ "model.layers.42.self_attn.v_proj.bias",
314
+ "model.layers.35.self_attn.q_proj.bias",
315
+ "model.layers.2.mlp.gate.e_score_correction_bias",
316
+ "model.layers.13.input_layernorm",
317
+ "model.layers.6.self_attn.k_proj.bias",
318
+ "model.layers.16.post_attention_layernorm",
319
+ "model.embed_tokens",
320
+ "model.layers.23.self_attn.q_proj.bias",
321
+ "model.layers.12.self_attn.v_proj.bias",
322
+ "model.layers.13.self_attn.q_proj.bias",
323
+ "model.layers.9.self_attn.q_proj.bias",
324
+ "model.layers.20.mlp.gate",
325
+ "model.layers.39.post_attention_layernorm",
326
+ "model.layers.21.self_attn.k_proj.bias",
327
+ "model.layers.18.post_attention_layernorm",
328
+ "model.layers.39.mlp.gate",
329
+ "model.layers.35.mlp.gate.e_score_correction_bias",
330
+ "model.layers.43.mlp.gate.e_score_correction_bias",
331
+ "model.layers.13.mlp.gate.e_score_correction_bias",
332
+ "model.layers.44.self_attn.v_proj.bias",
333
+ "model.layers.20.post_attention_layernorm",
334
+ "model.layers.18.self_attn.v_proj.bias",
335
+ "model.layers.4.self_attn.q_proj.bias",
336
+ "model.layers.10.input_layernorm",
337
+ "model.layers.33.mlp.gate",
338
+ "model.layers.1.self_attn.q_proj.bias",
339
+ "model.layers.30.mlp.gate.e_score_correction_bias",
340
+ "model.layers.0.self_attn.k_proj.bias",
341
+ "model.layers.2.self_attn.q_proj.bias",
342
+ "model.layers.44.post_attention_layernorm",
343
+ "model.layers.36.input_layernorm",
344
+ "model.layers.40.self_attn.v_proj.bias",
345
+ "model.layers.35.post_attention_layernorm",
346
+ "model.layers.14.self_attn.k_proj.bias",
347
+ "model.layers.37.self_attn.q_proj.bias",
348
+ "model.layers.16.self_attn.q_proj.bias",
349
+ "model.layers.44.mlp.gate",
350
+ "model.layers.27.input_layernorm",
351
+ "model.layers.44.mlp.gate.e_score_correction_bias",
352
+ "model.layers.36.self_attn.v_proj.bias",
353
+ "model.layers.39.self_attn.k_proj.bias",
354
+ "model.layers.12.self_attn.k_proj.bias",
355
+ "model.layers.40.post_attention_layernorm",
356
+ "model.layers.25.mlp.gate",
357
+ "model.layers.24.input_layernorm",
358
+ "model.layers.38.mlp.gate",
359
+ "model.layers.11.post_attention_layernorm",
360
+ "model.layers.43.mlp.gate",
361
+ "model.layers.11.input_layernorm",
362
+ "model.layers.44.input_layernorm",
363
+ "model.layers.43.input_layernorm",
364
+ "model.layers.20.mlp.gate.e_score_correction_bias",
365
+ "model.layers.2.self_attn.k_proj.bias",
366
+ "model.layers.10.self_attn.k_proj.bias",
367
+ "model.layers.25.input_layernorm",
368
+ "model.layers.43.self_attn.v_proj.bias",
369
+ "model.layers.24.mlp.gate",
370
+ "model.layers.26.input_layernorm",
371
+ "model.layers.23.mlp.gate.e_score_correction_bias",
372
+ "model.layers.30.self_attn.v_proj.bias",
373
+ "model.layers.19.mlp.gate",
374
+ "model.layers.28.self_attn.q_proj.bias",
375
+ "model.layers.3.mlp.gate",
376
+ "model.layers.9.post_attention_layernorm",
377
+ "model.layers.21.post_attention_layernorm",
378
+ "model.layers.7.self_attn.q_proj.bias",
379
+ "model.layers.45.input_layernorm",
380
+ "model.layers.12.mlp.gate",
381
+ "model.layers.14.post_attention_layernorm",
382
+ "model.layers.5.self_attn.k_proj.bias",
383
+ "model.layers.42.mlp.gate.e_score_correction_bias",
384
+ "model.layers.43.self_attn.q_proj.bias",
385
+ "model.layers.20.self_attn.q_proj.bias",
386
+ "model.layers.18.mlp.gate.e_score_correction_bias",
387
+ "model.layers.1.self_attn.k_proj.bias",
388
+ "model.layers.21.mlp.gate",
389
+ "model.layers.26.mlp.gate.e_score_correction_bias",
390
+ "model.layers.30.post_attention_layernorm",
391
+ "model.layers.20.self_attn.v_proj.bias",
392
+ "model.layers.26.mlp.gate",
393
+ "model.layers.23.self_attn.v_proj.bias",
394
+ "model.layers.21.mlp.gate.e_score_correction_bias",
395
+ "model.layers.34.mlp.gate",
396
+ "model.layers.39.input_layernorm",
397
+ "model.layers.3.input_layernorm",
398
+ "model.layers.0.post_attention_layernorm",
399
+ "model.layers.45.post_attention_layernorm",
400
+ "model.layers.22.input_layernorm",
401
+ "model.layers.15.mlp.gate.e_score_correction_bias",
402
+ "model.layers.10.self_attn.q_proj.bias",
403
+ "model.layers.27.self_attn.q_proj.bias",
404
+ "model.layers.41.mlp.gate",
405
+ "model.layers.36.mlp.gate"
406
+ ],
407
+ "quant_method": "compressed-tensors",
408
+ "quantization_status": "compressed"
409
+ }
410
+ }
model-00001-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55adfab01177e353fee3a89bbfa34c684147aff3a773b63c41166d13fe309ae0
3
+ size 3072488656
model-00002-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:798634f9900c31c9a49b83b91e6080c0b09ebd255f9e79ca72f145df819a66e6
3
+ size 2452152408
model-00003-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6167cfde28532b5f968e5ec02a16d490d58a8cf56745a0ab518473d3eaf8db72
3
+ size 2872229192
model-00005-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee2216cddde3f458ba74348f9dcd6525de7facacbbcfb13bb26ea2bc980edc19
3
+ size 2236605352
model-00006-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:970fbfed0f6e9a77fa599af58e39a1118df735bff63e1a3dc92e85557ec6e085
3
+ size 2236605352
model-00007-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e40d529fafb6f699c366c903fd11aca8bfda4e37db5f15a5d7663d5d0db195a
3
+ size 2236605352
model-00008-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:334efb1102f03ecddc5c1d7a2652cc7761d8c17c8f26c4fee03bb530f3486109
3
+ size 2236605352
model-00009-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c52e1eb34e8ed7bc475bff6cbf6deef5ffd0c6e1490632b5ab16b336317b025
3
+ size 2236605352
model-00010-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d95b89703140ecf9618e85ba727fccc4015fcbccc08666259806fbb2d3813295
3
+ size 2236605352
model-00012-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e704bc2c8ca6c0e1fbd22c9d68fc9825079b10ed7f7b4237d585ea322c94b5f7
3
+ size 2236605472
model-00014-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f16306a7b8b7bc98246cb836be373cf1fe386115423815222ee28503392cbe3a
3
+ size 2236606128
model-00015-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:057935deef278c3601f1b30ebe5a3c676397b891f9dddce025f6d8ceb4bddc18
3
+ size 2236606128
model-00016-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:740ec4bb5a8d09fe1b58160019cb5ffd772b30bad5c91c569b08e97f591762e1
3
+ size 2236606128
model-00017-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15464d80977b3334c76bc1ed1ced222f26b8e167b38478a9b6f7f45ebf10d47c
3
+ size 2236606128
model-00018-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8387dfa034f582d721819a4df41ff6b05e36dcbf3d3aaa69587680dc1b359565
3
+ size 2236606128
model-00019-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c8901d3623d3d14bee554760655c054b40b361fa8f10a0410155ac12d5eeb9a
3
+ size 2236606128
model-00020-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7e455e8efcb2f42a51c7d43759200bbb934a9bd9fc565b17ec1466cb0129016
3
+ size 2236606128
model-00021-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53d145346d4cff834bea09f2a7992af6b46099ea56cec55ee11da26c8f371085
3
+ size 2236606128
model-00022-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3cd0931c1f81fae110518a75f005e2c59fb07faa3925c401fbcfcd2c9f876aa
3
+ size 2236606128
model-00024-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ee52fe916f24c4165e44eeeb1cc0a13e56d76c9828c4cf386126d3e818801f7
3
+ size 2236606128
model-00025-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f707eafa915d8748a36f2a80e031947ea7d5bff237d80806030323e6283124
3
+ size 2236606128
model-00026-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bd5138f8c02a148fd745e94dcc95c2539a6c12ba6b20105949fb28c40d1a39e
3
+ size 2236606128
model-00027-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e48d12df4347a322209dc35f23f45bbf5f50ffd263a19ae99e9977b50d3cdfe
3
+ size 2236606128
model-00028-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddce34397a046c451a9fc9ecb67452559d698906056d59d0039979aeb00692b4
3
+ size 2236606128
model-00029-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9630923a1667fa9489d16eeacf9ba96a09cf456c3e796fef6efea004594be2e2
3
+ size 2236606128
model-00030-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1f9cd1023158121d5a62fc37ee405f3e9a626fc206fc2557282cd452ffeb85
3
+ size 2236606128
model-00031-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2e87059a88d584d1092202b4b383076e69edf584e0bc0e0e0328c8f61ab7142
3
+ size 2236606128
model-00032-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eec234dab476f73af642a0ed37d39b4334bc1e15a6489392cadce02e24617e8
3
+ size 2236606128
model-00033-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4123cebc648af42d2eb830411e485516ba19652060e239bb561243ea3efca1d9
3
+ size 2236606128
model-00034-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1511a6dd9536861c4d58deaa1e31006a932b35ec529cbee216972a3ef624fd9
3
+ size 2236606128
model-00035-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b047ab2e885e46e0177ba0480c714ea853f33725c91b96b3426bfa3b80d1f6d
3
+ size 2236606128
model-00036-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ebc0cbebf7cfd8416e77dab0002bcda6d968e8f634bbc5bdec3f77b52238d91
3
+ size 2236606128
model-00037-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4316be65f3858fc7ebe0f8805bf97dca386d50218d6ccd5b0dc5b1c943f6fcb2
3
+ size 2236606128
model-00038-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92979465dca1192272534067632c89a6f1dca20b86737cc8ce4b01fa87cdbc2b
3
+ size 2236606128
model-00039-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8d86f4aef7d11ea69c4519ebb6f6ee908b3dcdba6038a5eb5fd33fe6a3a21cf
3
+ size 2236606128
model-00040-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:038980af7c3e713b1accca80251925de33e19a33538995bebe2a855103dc8d9e
3
+ size 2236606128
model-00041-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69138266242069b6bf7b2b3217dc5e68c7f25f280079e702c9493934051bff21
3
+ size 2236606128
model-00042-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3978b44fc97eacbfa5c3c4229402ef180d88ffa0d79ccec045b2ed6ed82f32f6
3
+ size 2236606128
model-00043-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e700c7dedc35c6456d3856f398ccfaf3a7f57dcc7ddf6a5fa3c2e2952ddad52d
3
+ size 2236606128
model-00044-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cadbc7e58745f111ff6aba750a49687fcd649d5b20ec8547452d4dfdcada81ef
3
+ size 2236606128
model-00045-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:268fd64493665f69bf502ba98ab5f202b11a515ef6e0f0caf1ae6ff75bcb66c2
3
+ size 2236606128
model-00046-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a66202bc7bd5a62a7d9c29b68e9ed61588cfd8bf6e704e897890aaf1e73db45e
3
+ size 2236606128
model-00047-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb61c7bc8186357ebe539bf7c4199efa504cec7b71f4f6c9a86fa7cd2e2fb26
3
+ size 2236606128
model-00048-of-00048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87d91bf8af67f3f73756c42e8c5e53782f64983d9e566ede5449569c64c05c12
3
+ size 1479276336
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
special_tokens_map.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "[MASK]",
5
+ "[gMASK]",
6
+ "[sMASK]",
7
+ "<sop>",
8
+ "<eop>",
9
+ "<|system|>",
10
+ "<|user|>",
11
+ "<|assistant|>",
12
+ "<|observation|>",
13
+ "<|begin_of_image|>",
14
+ "<|end_of_image|>",
15
+ "<|begin_of_video|>",
16
+ "<|end_of_video|>",
17
+ "<|begin_of_audio|>",
18
+ "<|end_of_audio|>",
19
+ "<|begin_of_transcription|>",
20
+ "<|end_of_transcription|>",
21
+ "<|code_prefix|>",
22
+ "<|code_middle|>",
23
+ "<|code_suffix|>",
24
+ "/nothink"
25
+ ],
26
+ "eos_token": {
27
+ "content": "<|im_end|>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ },
33
+ "pad_token": {
34
+ "content": "<|endoftext|>",
35
+ "lstrip": false,
36
+ "normalized": false,
37
+ "rstrip": false,
38
+ "single_word": false
39
+ }
40
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:840a2be2f18847f07571118fb785c9bde4726991852229d98469e421bf5d1064
3
+ size 19971076