avtc commited on
Commit
1a2f33d
·
verified ·
1 Parent(s): bda5fc5

Upload folder using huggingface_hub

Browse files
Files changed (47) hide show
  1. .gitattributes +1 -0
  2. chat_template.jinja +222 -0
  3. config.json +186 -0
  4. generation_config.json +10 -0
  5. model-00001-of-00038.safetensors +3 -0
  6. model-00002-of-00038.safetensors +3 -0
  7. model-00003-of-00038.safetensors +3 -0
  8. model-00004-of-00038.safetensors +3 -0
  9. model-00005-of-00038.safetensors +3 -0
  10. model-00006-of-00038.safetensors +3 -0
  11. model-00007-of-00038.safetensors +3 -0
  12. model-00008-of-00038.safetensors +3 -0
  13. model-00009-of-00038.safetensors +3 -0
  14. model-00010-of-00038.safetensors +3 -0
  15. model-00011-of-00038.safetensors +3 -0
  16. model-00012-of-00038.safetensors +3 -0
  17. model-00013-of-00038.safetensors +3 -0
  18. model-00014-of-00038.safetensors +3 -0
  19. model-00015-of-00038.safetensors +3 -0
  20. model-00016-of-00038.safetensors +3 -0
  21. model-00017-of-00038.safetensors +3 -0
  22. model-00018-of-00038.safetensors +3 -0
  23. model-00019-of-00038.safetensors +3 -0
  24. model-00020-of-00038.safetensors +3 -0
  25. model-00021-of-00038.safetensors +3 -0
  26. model-00022-of-00038.safetensors +3 -0
  27. model-00023-of-00038.safetensors +3 -0
  28. model-00024-of-00038.safetensors +3 -0
  29. model-00025-of-00038.safetensors +3 -0
  30. model-00026-of-00038.safetensors +3 -0
  31. model-00027-of-00038.safetensors +3 -0
  32. model-00028-of-00038.safetensors +3 -0
  33. model-00029-of-00038.safetensors +3 -0
  34. model-00030-of-00038.safetensors +3 -0
  35. model-00031-of-00038.safetensors +3 -0
  36. model-00032-of-00038.safetensors +3 -0
  37. model-00033-of-00038.safetensors +3 -0
  38. model-00034-of-00038.safetensors +3 -0
  39. model-00035-of-00038.safetensors +3 -0
  40. model-00036-of-00038.safetensors +3 -0
  41. model-00037-of-00038.safetensors +3 -0
  42. model-00038-of-00038.safetensors +3 -0
  43. model.safetensors.index.json +3 -0
  44. quant_log.csv +0 -0
  45. quantize_config.json +54 -0
  46. tokenizer.json +0 -0
  47. tokenizer_config.json +13 -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
+ model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {#- ----------‑‑‑ special token variables ‑‑‑---------- -#}
2
+ {%- set HYTK = ':opensource' %}
3
+ {%- set eos_token = '<|hy_eos{}|>'.format(HYTK) %}
4
+ {%- set bos_token = '<|hy_begin_of_sentence{}|>'.format(HYTK) %}
5
+ {%- set pad_token = '<|hy_pad{}|>'.format(HYTK) %}
6
+ {%- set user_token = '<|hy_User{}|>'.format(HYTK) %}
7
+ {%- set assistant_token = '<|hy_Assistant{}|>'.format(HYTK) %}
8
+ {%- set think_begin_token = '<think{}>'.format(HYTK) %}
9
+ {%- set think_end_token = '</think{}>'.format(HYTK) %}
10
+ {%- set toolcalls_begin_token = '<tool_calls{}>'.format(HYTK) %}
11
+ {%- set toolcalls_end_token = '</tool_calls{}>'.format(HYTK) %}
12
+ {%- set toolcall_begin_token = '<tool_call{}>'.format(HYTK) %}
13
+ {%- set toolcall_end_token = '</tool_call{}>'.format(HYTK) %}
14
+ {%- set toolsep_token = '<tool_sep{}>'.format(HYTK) %}
15
+ {%- set argkey_begin_token = '<arg_key{}>'.format(HYTK) %}
16
+ {%- set argkey_end_token = '</arg_key{}>'.format(HYTK) %}
17
+ {%- set argvalue_begin_token = '<arg_value{}>'.format(HYTK) %}
18
+ {%- set argvalue_end_token = '</arg_value{}>'.format(HYTK) %}
19
+ {%- set toolresponses_begin_token = '<tool_responses{}>'.format(HYTK) %}
20
+ {%- set toolresponses_end_token = '</tool_responses{}>'.format(HYTK) %}
21
+ {%- set toolresponse_begin_token = '<tool_response{}>'.format(HYTK) %}
22
+ {%- set toolresponse_end_token = '</tool_response{}>'.format(HYTK) %}
23
+ {%- set reasoning_mode_token = '<|reasoning_mode{}|>'.format(HYTK) %}
24
+
25
+ {#- ----------‑‑‑ hyperparameters variables ‑‑‑---------- -#}
26
+ {%- if not add_generation_prompt is defined %}
27
+ {%- set add_generation_prompt = false %}
28
+ {%- endif %}
29
+ {%- if not preserved_thinking is defined %}
30
+ {%- if not tools %}
31
+ {%- set preserved_thinking = false %}
32
+ {%- else %}
33
+ {%- set preserved_thinking = true %}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- if not is_training is defined %}
37
+ {%- set is_training = false %}
38
+ {%- endif %}
39
+
40
+ {%- if not reasoning_effort is defined %}
41
+ {%- set reasoning_effort = 'no_think' %}
42
+ {%- elif reasoning_effort not in ['high', 'low', 'no_think'] %}
43
+ {%- if reasoning_effort is none %}
44
+ {{- raise_exception('reasoning_effort error : None, should be no_think/low/high') }}
45
+ {%- else %}
46
+ {{- raise_exception('reasoning_effort error : ' + reasoning_effort + ', should be no_think/low/high') }}
47
+ {%- endif %}
48
+ {%- endif %}
49
+
50
+ {%- if fallback_strategy is defined and fallback_strategy == 'reasoning_toolcall_retry' %}
51
+ {%- set reasoning_effort = 'high' %}
52
+ {%- set add_generation_prompt = false %}
53
+ {%- endif %}
54
+ {%- if not raw_last_assistant is defined %}
55
+ {%- set raw_last_assistant = false %}
56
+ {%- endif %}
57
+
58
+ {%- macro visible_text(content) -%}
59
+ {%- if content is string -%}
60
+ {{- content }}
61
+ {%- elif content is iterable and content is not mapping -%}
62
+ {%- for item in content -%}
63
+ {%- if item is mapping and item.type == 'text' -%}
64
+ {{- item.text }}
65
+ {%- elif item is string -%}
66
+ {{- item }}
67
+ {%- endif -%}
68
+ {%- endfor -%}
69
+ {%- elif content is none -%}
70
+ {{- '' }}
71
+ {%- else -%}
72
+ {{- content }}
73
+ {%- endif -%}
74
+ {%- endmacro -%}
75
+
76
+ {%- set ns = namespace(last_user_index=-1) %}
77
+ {%- set sp_ns = namespace(system_prompt='', is_first_sp=true) %}
78
+ {%- for message in messages %}
79
+ {%- if message['role'] == 'system' %}
80
+ {%- set sp_ns.system_prompt = sp_ns.system_prompt + visible_text(message['content']) %}
81
+ {%- endif %}
82
+ {%- if message['role'] == 'user' %}
83
+ {%- set ns.last_user_index = loop.index0 %}
84
+ {%- endif %}
85
+ {%- endfor %}
86
+ {%- if reasoning_effort is defined and reasoning_effort is string and reasoning_effort != '' and not tools %}
87
+ {%- set sp_ns.system_prompt = sp_ns.system_prompt + reasoning_mode_token + 'reasoning_effort:' + reasoning_effort %}
88
+ {%- endif %}
89
+ {{- bos_token }}
90
+ {{- sp_ns.system_prompt }}
91
+ {%- if tools %}
92
+ {%- if sp_ns.system_prompt != '' %}
93
+ {{- '\n\n# Tools\n\nYou may call one or more functions to assist with the user query.' }}
94
+ {%- else %}
95
+ {{- '# Tools\n\nYou may call one or more functions to assist with the user query.' }}
96
+ {%- endif %}
97
+ {{- '\n\nYou are provided with function signatures within <tools></tools> XML tags:' }}
98
+ {{- '\n<tools>\n' }}
99
+ {%- for tool in tools %}
100
+ {%- if loop.index0 > 0 %}
101
+ {{- '\n' }}
102
+ {%- endif %}
103
+ {{- tool | tojson }}
104
+ {%- endfor %}
105
+ {{- '\n</tools>\n\n' }}
106
+ {{- 'For function call returns, you should first print ' + toolcalls_begin_token + '\n' }}
107
+ {{- 'For each function call, you should return object like:\n' }}
108
+ {{- toolcall_begin_token + '{function-name}' + toolsep_token + '\n' }}
109
+ {{- argkey_begin_token + '{arg-key-1}' + argkey_end_token + '\n' }}
110
+ {{- argvalue_begin_token + '{arg-value-1}' + argvalue_end_token + '\n' }}
111
+ {{- argkey_begin_token + '{arg-key-2}' + argkey_end_token + '\n' }}
112
+ {{- argvalue_begin_token + '{arg-value-2}' + argvalue_end_token + '\n' }}
113
+ {{- '...\n' }}
114
+ {{- toolcall_end_token + '\n' }}
115
+ {%- if reasoning_effort is defined and reasoning_effort is string and reasoning_effort != '' %}
116
+ {{- 'At the end of function call returns, you should print ' + toolcalls_end_token + reasoning_mode_token + 'reasoning_effort:' + reasoning_effort }}
117
+ {%- else %}
118
+ {{- 'At the end of function call returns, you should print ' + toolcalls_end_token }}
119
+ {%- endif %}
120
+ {%- endif %}
121
+
122
+ {%- set prev_ns = namespace(is_tool=false, is_tool_first=true) %}
123
+ {%- set last_ns = namespace(last_is_assistant=false) %}
124
+ {%- for message in messages %}
125
+ {%- if message['role'] == 'user' %}
126
+ {%- if prev_ns.is_tool %}
127
+ {{- toolresponses_end_token }}
128
+ {%- endif %}
129
+ {{- user_token + visible_text(message['content']) }}
130
+ {%- set prev_ns.is_tool = false %}
131
+ {%- endif %}
132
+ {%- if message['role'] == 'assistant' %}
133
+ {%- if is_training %}
134
+ {%- if 'reasoning_content' in message and message['reasoning_content'] is string %}
135
+ {%- set rc = message['reasoning_content'] %}
136
+ {%- elif 'reasoning' in message and message['reasoning'] is string %}
137
+ {%- set rc = message['reasoning'] %}
138
+ {%- else %}
139
+ {%- set rc = none %}
140
+ {%- endif %}
141
+ {%- if rc is not none %}
142
+ {%- set content = think_begin_token + rc + think_end_token + visible_text(message['content']) %}
143
+ {%- else %}
144
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
145
+ {%- endif %}
146
+ {%- else %}
147
+ {%- if ((preserved_thinking is defined and preserved_thinking) or loop.index0 > ns.last_user_index) %}
148
+ {%- if 'reasoning_content' in message and message['reasoning_content'] is string %}
149
+ {%- set rc = message['reasoning_content'] %}
150
+ {%- elif 'reasoning' in message and message['reasoning'] is string %}
151
+ {%- set rc = message['reasoning'] %}
152
+ {%- else %}
153
+ {%- set rc = none %}
154
+ {%- endif %}
155
+ {%- if rc is not none %}
156
+ {%- set content = think_begin_token + rc + think_end_token + visible_text(message['content']) %}
157
+ {%- else %}
158
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
159
+ {%- endif %}
160
+ {%- else %}
161
+ {%- set content = think_begin_token + think_end_token + visible_text(message['content']) %}
162
+ {%- endif %}
163
+ {%- endif %}
164
+ {%- if prev_ns.is_tool %}
165
+ {{- toolresponses_end_token }}
166
+ {%- endif %}
167
+ {{- assistant_token }}
168
+ {%- if message['tool_calls'] is defined and message['tool_calls'] %}
169
+ {%- set prev_ns.is_tool_first = true %}
170
+ {{- content }}
171
+ {{- toolcalls_begin_token + '\n' }}
172
+ {%- for tool in message['tool_calls'] %}
173
+ {%- set arguments = tool['function']['arguments'] %}
174
+ {{- toolcall_begin_token + tool['function']['name'] + toolsep_token + '\n' }}
175
+ {%- for key, value in arguments.items() %}
176
+ {{- argkey_begin_token + key + argkey_end_token + '\n' }}
177
+ {%- if value is not string %}
178
+ {%- set value = value | tojson(ensure_ascii=False) %}
179
+ {%- endif %}
180
+ {{- argvalue_begin_token + value + argvalue_end_token + '\n' }}
181
+ {%- endfor %}
182
+ {{- toolcall_end_token + '\n' }}
183
+ {%- endfor %}
184
+ {{- toolcalls_end_token + eos_token }}
185
+ {%- else %}
186
+ {%- if loop.last and raw_last_assistant %}
187
+ {{- visible_text(message['content']) }}
188
+ {%- elif not loop.last or is_training %}
189
+ {{- content + eos_token }}
190
+ {%- else %}
191
+ {{- content }}
192
+ {%- endif %}
193
+ {%- endif %}
194
+ {%- set prev_ns.is_tool = false %}
195
+ {%- endif %}
196
+ {%- if message['role'] == 'tool' %}
197
+ {%- set prev_ns.is_tool = true %}
198
+ {%- if prev_ns.is_tool_first %}
199
+ {{- toolresponses_begin_token + '\n' }}
200
+ {%- set prev_ns.is_tool_first = false %}
201
+ {%- endif %}
202
+ {{- toolresponse_begin_token + '\n' + visible_text(message['content']) + '\n' + toolresponse_end_token + '\n' }}
203
+ {%- endif %}
204
+ {%- if loop.last and message['role'] == 'assistant' %}
205
+ {%- set last_ns.last_is_assistant = true %}
206
+ {%- endif %}
207
+
208
+ {%- endfor %}
209
+ {%- if prev_ns.is_tool %}
210
+ {{- toolresponses_end_token }}
211
+ {%- endif %}
212
+ {%- if add_generation_prompt %}
213
+ {%- if not last_ns.last_is_assistant %}
214
+ {%- if reasoning_effort is defined and reasoning_effort in ['low', 'high'] %}
215
+ {{- assistant_token + think_begin_token }}
216
+ {%- elif reasoning_effort is defined and reasoning_effort == 'no_think' %}
217
+ {{- assistant_token + think_begin_token + think_end_token }}
218
+ {%- else %}
219
+ {{- assistant_token }}
220
+ {%- endif %}
221
+ {%- endif %}
222
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "HYV3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 120000,
8
+ "dtype": "bfloat16",
9
+ "enable_attention_fp32_softmax": false,
10
+ "enable_lm_head_fp32": true,
11
+ "enable_moe_fp32_combine": false,
12
+ "eod_token_id": 120026,
13
+ "eos_token_id": 120025,
14
+ "expert_hidden_dim": 1536,
15
+ "first_k_dense_replace": 1,
16
+ "head_dim": 128,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 4096,
19
+ "initializer_range": 0.006,
20
+ "intermediate_size": 13312,
21
+ "max_position_embeddings": 262144,
22
+ "mlp_bias": false,
23
+ "mlp_layer_types": [
24
+ "dense",
25
+ "sparse",
26
+ "sparse",
27
+ "sparse",
28
+ "sparse",
29
+ "sparse",
30
+ "sparse",
31
+ "sparse",
32
+ "sparse",
33
+ "sparse",
34
+ "sparse",
35
+ "sparse",
36
+ "sparse",
37
+ "sparse",
38
+ "sparse",
39
+ "sparse",
40
+ "sparse",
41
+ "sparse",
42
+ "sparse",
43
+ "sparse",
44
+ "sparse",
45
+ "sparse",
46
+ "sparse",
47
+ "sparse",
48
+ "sparse",
49
+ "sparse",
50
+ "sparse",
51
+ "sparse",
52
+ "sparse",
53
+ "sparse",
54
+ "sparse",
55
+ "sparse",
56
+ "sparse",
57
+ "sparse",
58
+ "sparse",
59
+ "sparse",
60
+ "sparse",
61
+ "sparse",
62
+ "sparse",
63
+ "sparse",
64
+ "sparse",
65
+ "sparse",
66
+ "sparse",
67
+ "sparse",
68
+ "sparse",
69
+ "sparse",
70
+ "sparse",
71
+ "sparse",
72
+ "sparse",
73
+ "sparse",
74
+ "sparse",
75
+ "sparse",
76
+ "sparse",
77
+ "sparse",
78
+ "sparse",
79
+ "sparse",
80
+ "sparse",
81
+ "sparse",
82
+ "sparse",
83
+ "sparse",
84
+ "sparse",
85
+ "sparse",
86
+ "sparse",
87
+ "sparse",
88
+ "sparse",
89
+ "sparse",
90
+ "sparse",
91
+ "sparse",
92
+ "sparse",
93
+ "sparse",
94
+ "sparse",
95
+ "sparse",
96
+ "sparse",
97
+ "sparse",
98
+ "sparse",
99
+ "sparse",
100
+ "sparse",
101
+ "sparse",
102
+ "sparse",
103
+ "sparse"
104
+ ],
105
+ "model_type": "hy_v3",
106
+ "moe_intermediate_size": 1536,
107
+ "moe_router_enable_expert_bias": true,
108
+ "moe_router_use_sigmoid": true,
109
+ "num_attention_heads": 64,
110
+ "num_experts": 192,
111
+ "num_experts_per_tok": 8,
112
+ "num_hidden_layers": 80,
113
+ "num_key_value_heads": 8,
114
+ "num_nextn_predict_layers": 1,
115
+ "num_shared_experts": 1,
116
+ "output_router_logits": true,
117
+ "pad_token_id": 120002,
118
+ "qk_norm": true,
119
+ "quantization_config": {
120
+ "bits": 4,
121
+ "checkpoint_format": "gptq",
122
+ "desc_act": false,
123
+ "dynamic": {
124
+ "+:.*experts": {
125
+ "bits": 4,
126
+ "group_size": 64
127
+ },
128
+ "+:.*shared_mlp": {
129
+ "bits": 4,
130
+ "group_size": 64
131
+ }
132
+ },
133
+ "format": "gptq",
134
+ "group_size": 128,
135
+ "lm_head": false,
136
+ "meta": {
137
+ "act_group_aware": null,
138
+ "auto_forward_data_parallel": true,
139
+ "damp_auto_increment": null,
140
+ "damp_percent": null,
141
+ "dense_vram_strategy": "exclusive",
142
+ "dense_vram_strategy_devices": null,
143
+ "fallback": {
144
+ "smooth": null,
145
+ "strategy": "rtn",
146
+ "threshold": "0.5%"
147
+ },
148
+ "foem": null,
149
+ "gc_mode": "on_stage_end",
150
+ "gptaq": null,
151
+ "moe_vram_strategy": "exclusive",
152
+ "moe_vram_strategy_devices": null,
153
+ "mse": null,
154
+ "offload_to_disk": true,
155
+ "offload_to_disk_path": "/home/ubuntu/tmp_for_install/gptqmodel_kctb93p5",
156
+ "pack_impl": "cpu",
157
+ "quantizer": [
158
+ "gptqmodel:7.2.0"
159
+ ],
160
+ "static_groups": null,
161
+ "true_sequential": true,
162
+ "uri": "https://github.com/modelcloud/gptqmodel",
163
+ "wait_for_submodule_finalizers": true,
164
+ "weight_only": {
165
+ "smooth": null
166
+ }
167
+ },
168
+ "method": "gptq",
169
+ "pack_dtype": "int32",
170
+ "quant_method": "gptq",
171
+ "sym": true
172
+ },
173
+ "rms_norm_eps": 1e-05,
174
+ "rope_parameters": {
175
+ "rope_theta": 11158840.0,
176
+ "rope_type": "default"
177
+ },
178
+ "route_norm": true,
179
+ "router_scaling_factor": 2.826,
180
+ "sep_token_id": 120007,
181
+ "tie_word_embeddings": false,
182
+ "transformers_version": "5.9.0",
183
+ "use_cache": true,
184
+ "use_grouped_mm": false,
185
+ "vocab_size": 120832
186
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 120000,
3
+ "do_sample": true,
4
+ "eos_token_id": 120025,
5
+ "pad_token_id": 120002,
6
+ "temperature": 0.9,
7
+ "top_k": -1,
8
+ "top_p": 1,
9
+ "transformers_version": "5.9.0"
10
+ }
model-00001-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c985f4f1c5a6b5579ae448626673983051ab845d8a18dd52cc69d1a97d959109
3
+ size 4293654256
model-00002-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06c494d0b4dd7412630f83b3670dbf943fe29ea32f52993e29057cf1eb404b70
3
+ size 4293928000
model-00003-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa8f50831d63b65940c3b5e5f38d32022f10cb1e1846bfce5f95090dd029a0a7
3
+ size 4293938352
model-00004-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dd1e7e3a044bd2e958ee0861fd496421fe27e74e59aeb5e2bfa7535adec06a3
3
+ size 4293928112
model-00005-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8f3513a80e944a6eb679d51f706a80841e6224b9b02c8aedb214b0909b53200
3
+ size 4293929520
model-00006-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc1ef25599479adc94474b61d0edff3b38cd2450a209513c2df86ee0d2e7afbf
3
+ size 4293943712
model-00007-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc24033601982270bbb632f28794bdc580e4529c4ed713af913616b95b0bd21b
3
+ size 4293933472
model-00008-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0552cc46d71d2363e15e0c5869795b8ad3a36e402277e63fcfa241ac1b92a1ef
3
+ size 4293933464
model-00009-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e18e113c699ee9668fbba196117923391b21d617daac58391c6cf6faa90a064
3
+ size 4295537480
model-00010-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6be1a074c5cd05a9ddf432ddc67678a25cccb22205d2fa53881c0bed2dd9c6e
3
+ size 4294195576
model-00011-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7298b1f4c48b9b5bfebadbdbe42f23226dd73cfc2acfb1f5a0a9c3442d906812
3
+ size 4293933096
model-00012-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c81122d75f3f508bba12f0f3e7c8f4c4af0e3ff4059177d20cb0cce4e0db9d83
3
+ size 4293933088
model-00013-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a934bf4158721e67f8ef5f1dca6954d3591a4c3a4edf5e7a6c9978200d45d3c
3
+ size 4293943672
model-00014-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b69481ef9b5a40b3052f0e388e6cf673a6a9982bdda91f6d1ce6308d8ee4182b
3
+ size 4293933472
model-00015-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28df3d6839840969914dbd05812b32ad92d211ece19348d16a6141eb8cfe8af9
3
+ size 4293933464
model-00016-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:034a94f23b5cd25e30af0448e515bae00a406e269162ae87440961171257541f
3
+ size 4295537568
model-00017-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e895a9f3f650993032d580a4233edbed1a0292f1d92a9bc1dd24785eeafb597
3
+ size 4294195552
model-00018-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4d76671c2c3a8702515a51efd27d392d1a48380e700aad8dd4d1cbf9ea7bd8e
3
+ size 4293933096
model-00019-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:945e914cc73122db264afbfba124b44596aae2704e7dbf4411fe21a80b678a35
3
+ size 4293933088
model-00020-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a81cc3d9b1068cd696e801f1f13ce746d5440f164ff6c44e9e498300ef12eb9
3
+ size 4293943512
model-00021-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2aece0073bf77a86a8bd7031b23611645bbf667f67374dbe875d3b753fbec8a
3
+ size 4293933472
model-00022-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b86617a8db0915465040ac052dc65fb85a8da514c1f1f7fd2188aa75219cc1f7
3
+ size 4293933464
model-00023-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efd5479cb1ce661c8bb625affecbeb58163ba853078586434af1e741e4b2ceea
3
+ size 4294240736
model-00024-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:249fe06d3a1d486963d67fc5f76a295b7c41975903179f8c6af3c7744dc84341
3
+ size 4295492576
model-00025-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b091d5970f0107e538d12e18aedec4d99b7d2ae01e4c9af55fd2a37f78353bdd
3
+ size 4293933096
model-00026-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38f16badfd7cb9640fd0ac838c653db9818dc4848611c01505035e4d1c304077
3
+ size 4293933088
model-00027-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3233f72403a3ae124ef084d28520b6254b2ec11d4cfb3b6ba6d3f28f6405ba7f
3
+ size 4293943392
model-00028-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8760eb98c11ec6db2e2171dfe3f5257f4745f4d38a153888bca123575a4c6237
3
+ size 4293933472
model-00029-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3789e71595a6bf4976f7f46d599d11edf474a988235fa0d8653e43a238da395e
3
+ size 4293933464
model-00030-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47bc73921003f0392c4ecb895bea75926680af9a988c5f6b69066d874e468bb1
3
+ size 4293943712
model-00031-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a93215ccd6914465d7a5e3a19db16f3a83e90af21c345504f78faa848f4e13f2
3
+ size 4295527256
model-00032-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11186acdb95df13209d89e2fbca5a81503bc4c380d15131b07232d27309151b0
3
+ size 4294195576
model-00033-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bb530c0f32cfdada3881f3db822f3652e9bfff084030f4d7067dc1d0f9e6ad6
3
+ size 4293933088
model-00034-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d400147e97e1f8e68d8c829e8682e6bd65d465ecf6f1b3d738460385534cba3
3
+ size 4293943336
model-00035-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c26ef0c480effe4295d57e0d5ed2f12ba6508e681802ae7e8f58761909fc8472
3
+ size 4293933352
model-00036-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:436927dbae590fdd89f5c09815d95e6ad5b8caa4862bdf02ae5818bd23e72e86
3
+ size 4293933464
model-00037-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57171435aa68a20ad52ea96f077be4d0e20ef49dda6a5d4320d5b43617f640ee
3
+ size 4293943712
model-00038-of-00038.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71dbcd3fb225f5311f043cfc07719214eac8df830aa1f24a1bba7bf53cf42212
3
+ size 2197831632
model.safetensors.index.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa74447e93a8765234c8db1270b9c65a54945a83f6ac66e81c1879c303971f37
3
+ size 16735577
quant_log.csv ADDED
The diff for this file is too large to render. See raw diff
 
quantize_config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "dynamic": {
4
+ "+:.*shared_mlp": {
5
+ "bits": 4,
6
+ "group_size": 64
7
+ },
8
+ "+:.*experts": {
9
+ "bits": 4,
10
+ "group_size": 64
11
+ }
12
+ },
13
+ "group_size": 128,
14
+ "desc_act": false,
15
+ "lm_head": false,
16
+ "method": "gptq",
17
+ "quant_method": "gptq",
18
+ "format": "gptq",
19
+ "checkpoint_format": "gptq",
20
+ "pack_dtype": "int32",
21
+ "meta": {
22
+ "quantizer": [
23
+ "gptqmodel:7.2.0"
24
+ ],
25
+ "uri": "https://github.com/modelcloud/gptqmodel",
26
+ "damp_percent": null,
27
+ "damp_auto_increment": null,
28
+ "static_groups": null,
29
+ "true_sequential": true,
30
+ "mse": null,
31
+ "gptaq": null,
32
+ "foem": null,
33
+ "act_group_aware": null,
34
+ "fallback": {
35
+ "strategy": "rtn",
36
+ "threshold": "0.5%",
37
+ "smooth": null
38
+ },
39
+ "offload_to_disk": true,
40
+ "offload_to_disk_path": "/home/ubuntu/tmp_for_install/gptqmodel_kctb93p5",
41
+ "pack_impl": "cpu",
42
+ "gc_mode": "on_stage_end",
43
+ "wait_for_submodule_finalizers": true,
44
+ "auto_forward_data_parallel": true,
45
+ "dense_vram_strategy": "exclusive",
46
+ "dense_vram_strategy_devices": null,
47
+ "moe_vram_strategy": "exclusive",
48
+ "moe_vram_strategy_devices": null,
49
+ "weight_only": {
50
+ "smooth": null
51
+ }
52
+ },
53
+ "sym": true
54
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|hy_begin_of_sentence:opensource|>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "<|hy_eos:opensource|>",
6
+ "is_local": true,
7
+ "local_files_only": false,
8
+ "model_max_length": 1000000000000000019884624838656,
9
+ "pad_token": "<|hy_pad:opensource|>",
10
+ "token_suffix": ":opensource",
11
+ "tokenizer_class": "PreTrainedTokenizerFast",
12
+ "_commit_hash": null
13
+ }