kernelpool commited on
Commit
4f682c8
·
verified ·
1 Parent(s): ea84869

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +39 -0
  2. chat_template.jinja +119 -0
  3. config.json +233 -0
  4. generation_config.json +12 -0
  5. model-00002-of-00226.safetensors +3 -0
  6. model-00007-of-00226.safetensors +3 -0
  7. model-00008-of-00226.safetensors +3 -0
  8. model-00022-of-00226.safetensors +3 -0
  9. model-00027-of-00226.safetensors +3 -0
  10. model-00030-of-00226.safetensors +3 -0
  11. model-00035-of-00226.safetensors +3 -0
  12. model-00039-of-00226.safetensors +3 -0
  13. model-00043-of-00226.safetensors +3 -0
  14. model-00046-of-00226.safetensors +3 -0
  15. model-00049-of-00226.safetensors +3 -0
  16. model-00063-of-00226.safetensors +3 -0
  17. model-00066-of-00226.safetensors +3 -0
  18. model-00071-of-00226.safetensors +3 -0
  19. model-00074-of-00226.safetensors +3 -0
  20. model-00078-of-00226.safetensors +3 -0
  21. model-00082-of-00226.safetensors +3 -0
  22. model-00087-of-00226.safetensors +3 -0
  23. model-00088-of-00226.safetensors +3 -0
  24. model-00090-of-00226.safetensors +3 -0
  25. model-00095-of-00226.safetensors +3 -0
  26. model-00103-of-00226.safetensors +3 -0
  27. model-00106-of-00226.safetensors +3 -0
  28. model-00111-of-00226.safetensors +3 -0
  29. model-00114-of-00226.safetensors +3 -0
  30. model-00123-of-00226.safetensors +3 -0
  31. model-00126-of-00226.safetensors +3 -0
  32. model-00129-of-00226.safetensors +3 -0
  33. model-00142-of-00226.safetensors +3 -0
  34. model-00147-of-00226.safetensors +3 -0
  35. model-00150-of-00226.safetensors +3 -0
  36. model-00155-of-00226.safetensors +3 -0
  37. model-00162-of-00226.safetensors +3 -0
  38. model-00167-of-00226.safetensors +3 -0
  39. model-00168-of-00226.safetensors +3 -0
  40. model-00189-of-00226.safetensors +3 -0
  41. model-00191-of-00226.safetensors +3 -0
  42. model-00192-of-00226.safetensors +3 -0
  43. model-00194-of-00226.safetensors +3 -0
  44. model-00203-of-00226.safetensors +3 -0
  45. model-00206-of-00226.safetensors +3 -0
  46. model-00209-of-00226.safetensors +3 -0
  47. model-00211-of-00226.safetensors +3 -0
  48. model-00214-of-00226.safetensors +3 -0
  49. model.safetensors.index.json +0 -0
  50. tokenizer_config.json +34 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - zh
5
+ library_name: mlx
6
+ license: mit
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - mlx
10
+ base_model: zai-org/GLM-5.2
11
+ ---
12
+
13
+ # kernelpool/GLM-5.2-8bit
14
+
15
+ This model [kernelpool/GLM-5.2-8bit](https://huggingface.co/kernelpool/GLM-5.2-8bit) was
16
+ converted to MLX format from [zai-org/GLM-5.2](https://huggingface.co/zai-org/GLM-5.2)
17
+ using mlx-lm version **0.31.3**.
18
+
19
+ ## Use with mlx
20
+
21
+ ```bash
22
+ pip install mlx-lm
23
+ ```
24
+
25
+ ```python
26
+ from mlx_lm import load, generate
27
+
28
+ model, tokenizer = load("kernelpool/GLM-5.2-8bit")
29
+
30
+ prompt = "hello"
31
+
32
+ if tokenizer.chat_template is not None:
33
+ messages = [{"role": "user", "content": prompt}]
34
+ prompt = tokenizer.apply_chat_template(
35
+ messages, add_generation_prompt=True, return_dict=False,
36
+ )
37
+
38
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
39
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- set effective_reasoning_effort = 'high' if reasoning_effort is defined and reasoning_effort == 'high' else 'max' -%}
3
+ {%- if (enable_thinking is not defined or enable_thinking) and effective_reasoning_effort is not none -%}<|system|>Reasoning Effort: {{ effective_reasoning_effort | capitalize }}{%- endif -%}
4
+ {%- if tools -%}
5
+ {%- macro tool_to_json(tool) -%}
6
+ {%- set ns_tool = namespace(first=true) -%}
7
+ {{ '{' -}}
8
+ {%- for k, v in tool.items() -%}
9
+ {%- if k != 'defer_loading' and k != 'strict' -%}
10
+ {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
11
+ {%- set ns_tool.first = false -%}
12
+ "{{ k }}": {{ v | tojson(ensure_ascii=False) }}
13
+ {%- endif -%}
14
+ {%- endfor -%}
15
+ {{- '}' -}}
16
+ {%- endmacro -%}
17
+ <|system|>
18
+ # Tools
19
+
20
+ You may call one or more functions to assist with the user query.
21
+
22
+ You are provided with function signatures within <tools></tools> XML tags:
23
+ <tools>
24
+ {% for tool in tools %}
25
+ {%- if 'function' in tool -%}
26
+ {%- set tool = tool['function'] -%}
27
+ {%- endif -%}
28
+ {% if tool.defer_loading is not defined or not tool.defer_loading %}
29
+ {{ tool_to_json(tool) }}
30
+ {% endif %}
31
+ {% endfor %}
32
+ </tools>
33
+
34
+ For each function call, output the function name and arguments within the following XML format:
35
+ <tool_call>{function-name}<arg_key>{arg-key-1}</arg_key><arg_value>{arg-value-1}</arg_value><arg_key>{arg-key-2}</arg_key><arg_value>{arg-value-2}</arg_value>...</tool_call>{%- endif -%}
36
+ {%- macro visible_text(content) -%}
37
+ {%- if content is string -%}
38
+ {{- content }}
39
+ {%- elif content is iterable and content is not mapping -%}
40
+ {%- for item in content -%}
41
+ {%- if item is mapping and item.type == 'text' -%}
42
+ {{- item.text }}
43
+ {%- elif item is string -%}
44
+ {{- item }}
45
+ {%- elif item is mapping and item.type in ['image', 'image_url', 'video', 'video_url', 'audio', 'audio_url', 'input_audio'] -%}
46
+ {%- set media_type = item.type | replace('_url', '') | replace('input_', '') -%}
47
+ {{- "<reminder>You are unable to process this " ~ media_type ~ " because you don't have multi-modal input ability. Try different methods.</reminder>" }}
48
+ {%- endif -%}
49
+ {%- endfor -%}
50
+ {%- else -%}
51
+ {{- content }}
52
+ {%- endif -%}
53
+ {%- endmacro -%}
54
+ {%- set ns = namespace(last_user_index=-1) -%}
55
+ {%- for m in messages %}
56
+ {%- if m.role == 'user' %}
57
+ {%- set ns.last_user_index = loop.index0 -%}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- for m in messages -%}
61
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
62
+ {%- elif m.role == 'assistant' -%}
63
+ <|assistant|>
64
+ {%- set content = visible_text(m.content) %}
65
+ {%- if m.reasoning_content is string %}
66
+ {%- set reasoning_content = m.reasoning_content %}
67
+ {%- elif '</think>' in content %}
68
+ {%- set reasoning_content = content.split('</think>')[0].split('<think>')[-1] %}
69
+ {%- set content = content.split('</think>')[-1] %}
70
+ {%- endif %}
71
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
72
+ {{ '<think>' + reasoning_content + '</think>'}}
73
+ {%- else -%}
74
+ {{ '<think></think>' }}
75
+ {%- endif -%}
76
+ {%- if content.strip() -%}
77
+ {{ content.strip() }}
78
+ {%- endif -%}
79
+ {% if m.tool_calls %}
80
+ {% for tc in m.tool_calls %}
81
+ {%- if tc.function %}
82
+ {%- set tc = tc.function %}
83
+ {%- endif %}
84
+ {{- '<tool_call>' + tc.name -}}
85
+ {% set _args = tc.arguments %}{% for k, v in _args.items() %}<arg_key>{{ k }}</arg_key><arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>{% endfor %}</tool_call>{% endfor %}
86
+ {% endif %}
87
+ {%- elif m.role == 'tool' -%}
88
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
89
+ {{- '<|observation|>' -}}
90
+ {%- endif %}
91
+ {%- if m.content is string -%}
92
+ {{- '<tool_response>' + m.content + '</tool_response>' -}}
93
+ {%- elif m.content is iterable and m.content is not mapping and m.content and m.content.0.type == "tool_reference" -%}
94
+ {{- '<tool_response><tools>\n' -}}
95
+ {% for tr in m.content %}
96
+ {%- for tool in tools -%}
97
+ {%- if 'function' in tool -%}
98
+ {%- set tool = tool['function'] -%}
99
+ {%- endif -%}
100
+ {%- if tool.name == tr.name -%}
101
+ {{- tool_to_json(tool) + '\n' -}}
102
+ {%- endif -%}
103
+ {%- endfor -%}
104
+ {%- endfor -%}
105
+ {{- '</tools></tool_response>' -}}
106
+ {%- elif m.content is iterable and m.content is not mapping and m.content and m.content.0 is mapping and m.content.0.output is defined -%}
107
+ {%- for tr in m.content -%}
108
+ {{- '<tool_response>' + tr.output + '</tool_response>' -}}
109
+ {%- endfor -%}
110
+ {%- else -%}
111
+ {{- '<tool_response>' + visible_text(m.content) + '</tool_response>' -}}
112
+ {% endif -%}
113
+ {%- elif m.role == 'system' -%}
114
+ <|system|>{{ visible_text(m.content) }}
115
+ {%- endif -%}
116
+ {%- endfor -%}
117
+ {%- if add_generation_prompt -%}
118
+ <|assistant|>{{- '<think></think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
119
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GlmMoeDsaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": [
9
+ 154820,
10
+ 154827,
11
+ 154829
12
+ ],
13
+ "ep_size": 1,
14
+ "first_k_dense_replace": 3,
15
+ "head_dim": 192,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 6144,
18
+ "index_head_dim": 128,
19
+ "index_n_heads": 32,
20
+ "index_share_for_mtp_iteration": true,
21
+ "index_skip_topk_offset": 3,
22
+ "index_topk": 2048,
23
+ "index_topk_freq": 4,
24
+ "index_topk_pattern": null,
25
+ "indexer_rope_interleave": true,
26
+ "indexer_types": [
27
+ "full",
28
+ "full",
29
+ "full",
30
+ "shared",
31
+ "shared",
32
+ "shared",
33
+ "full",
34
+ "shared",
35
+ "shared",
36
+ "shared",
37
+ "full",
38
+ "shared",
39
+ "shared",
40
+ "shared",
41
+ "full",
42
+ "shared",
43
+ "shared",
44
+ "shared",
45
+ "full",
46
+ "shared",
47
+ "shared",
48
+ "shared",
49
+ "full",
50
+ "shared",
51
+ "shared",
52
+ "shared",
53
+ "full",
54
+ "shared",
55
+ "shared",
56
+ "shared",
57
+ "full",
58
+ "shared",
59
+ "shared",
60
+ "shared",
61
+ "full",
62
+ "shared",
63
+ "shared",
64
+ "shared",
65
+ "full",
66
+ "shared",
67
+ "shared",
68
+ "shared",
69
+ "full",
70
+ "shared",
71
+ "shared",
72
+ "shared",
73
+ "full",
74
+ "shared",
75
+ "shared",
76
+ "shared",
77
+ "full",
78
+ "shared",
79
+ "shared",
80
+ "shared",
81
+ "full",
82
+ "shared",
83
+ "shared",
84
+ "shared",
85
+ "full",
86
+ "shared",
87
+ "shared",
88
+ "shared",
89
+ "full",
90
+ "shared",
91
+ "shared",
92
+ "shared",
93
+ "full",
94
+ "shared",
95
+ "shared",
96
+ "shared",
97
+ "full",
98
+ "shared",
99
+ "shared",
100
+ "shared",
101
+ "full",
102
+ "shared",
103
+ "shared",
104
+ "shared"
105
+ ],
106
+ "initializer_range": 0.02,
107
+ "intermediate_size": 12288,
108
+ "kv_lora_rank": 512,
109
+ "max_position_embeddings": 1048576,
110
+ "mlp_layer_types": [
111
+ "dense",
112
+ "dense",
113
+ "dense",
114
+ "sparse",
115
+ "sparse",
116
+ "sparse",
117
+ "sparse",
118
+ "sparse",
119
+ "sparse",
120
+ "sparse",
121
+ "sparse",
122
+ "sparse",
123
+ "sparse",
124
+ "sparse",
125
+ "sparse",
126
+ "sparse",
127
+ "sparse",
128
+ "sparse",
129
+ "sparse",
130
+ "sparse",
131
+ "sparse",
132
+ "sparse",
133
+ "sparse",
134
+ "sparse",
135
+ "sparse",
136
+ "sparse",
137
+ "sparse",
138
+ "sparse",
139
+ "sparse",
140
+ "sparse",
141
+ "sparse",
142
+ "sparse",
143
+ "sparse",
144
+ "sparse",
145
+ "sparse",
146
+ "sparse",
147
+ "sparse",
148
+ "sparse",
149
+ "sparse",
150
+ "sparse",
151
+ "sparse",
152
+ "sparse",
153
+ "sparse",
154
+ "sparse",
155
+ "sparse",
156
+ "sparse",
157
+ "sparse",
158
+ "sparse",
159
+ "sparse",
160
+ "sparse",
161
+ "sparse",
162
+ "sparse",
163
+ "sparse",
164
+ "sparse",
165
+ "sparse",
166
+ "sparse",
167
+ "sparse",
168
+ "sparse",
169
+ "sparse",
170
+ "sparse",
171
+ "sparse",
172
+ "sparse",
173
+ "sparse",
174
+ "sparse",
175
+ "sparse",
176
+ "sparse",
177
+ "sparse",
178
+ "sparse",
179
+ "sparse",
180
+ "sparse",
181
+ "sparse",
182
+ "sparse",
183
+ "sparse",
184
+ "sparse",
185
+ "sparse",
186
+ "sparse",
187
+ "sparse",
188
+ "sparse"
189
+ ],
190
+ "model_type": "glm_moe_dsa",
191
+ "moe_intermediate_size": 2048,
192
+ "moe_layer_freq": 1,
193
+ "n_group": 1,
194
+ "n_routed_experts": 256,
195
+ "n_shared_experts": 1,
196
+ "norm_topk_prob": true,
197
+ "num_attention_heads": 64,
198
+ "num_experts_per_tok": 8,
199
+ "num_hidden_layers": 78,
200
+ "num_key_value_heads": 64,
201
+ "num_nextn_predict_layers": 1,
202
+ "pad_token_id": 154820,
203
+ "pretraining_tp": 1,
204
+ "q_lora_rank": 2048,
205
+ "qk_head_dim": 256,
206
+ "qk_nope_head_dim": 192,
207
+ "qk_rope_head_dim": 64,
208
+ "quantization": {
209
+ "group_size": 64,
210
+ "bits": 8,
211
+ "mode": "affine"
212
+ },
213
+ "quantization_config": {
214
+ "group_size": 64,
215
+ "bits": 8,
216
+ "mode": "affine"
217
+ },
218
+ "rms_norm_eps": 1e-05,
219
+ "rope_interleave": true,
220
+ "rope_parameters": {
221
+ "rope_theta": 8000000,
222
+ "rope_type": "default"
223
+ },
224
+ "routed_scaling_factor": 2.5,
225
+ "scoring_func": "sigmoid",
226
+ "tie_word_embeddings": false,
227
+ "topk_group": 1,
228
+ "topk_method": "noaux_tc",
229
+ "transformers_version": "5.12.0",
230
+ "use_cache": true,
231
+ "v_head_dim": 256,
232
+ "vocab_size": 154880
233
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 154820,
5
+ 154827,
6
+ 154829
7
+ ],
8
+ "pad_token_id": 154820,
9
+ "temperature": 1.0,
10
+ "top_p": 0.95,
11
+ "transformers_version": "5.12.0"
12
+ }
model-00002-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59bb751880d9209fbf894397424b227a9a4b3a5102b5eeba3d260398a25698af
3
+ size 3422552474
model-00007-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9865bc3792a9ed9095e576e18073b1639bc7112295f23ead4d0ea2b7d280482
3
+ size 3641174262
model-00008-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86df7a971721acf68115ccdf8f9c39c39186489dec71a8f0f71c339630319a09
3
+ size 3422552474
model-00022-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e36e1abceb9b312c21d5107d730d7cd570ed9212ee2de161cbd2ca716587cb3
3
+ size 3651133435
model-00027-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2adb40881630b49783cd45001efe02cfb717f96100cbd4c53ecbe8fee2db29cf
3
+ size 3422552471
model-00030-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec7184a564ada49cbae8ccf221053e83701a52fb68e8fd3e2f29bcfe7806b3e3
3
+ size 3422552471
model-00035-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d51bda780e94e6da8425bfcfabab971b80fdb1551354589f0e01a21c202e59e4
3
+ size 3422552477
model-00039-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7b4507de1d5bf2ca632afe18ca6cf80fdc0d6b2d35af784771a4f2e0f424334
3
+ size 3422552471
model-00043-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3b560b9b38dc1c85868d71ebc1c957b6d492c97d8fa3b6a0f50d3655ff1f861
3
+ size 3641174282
model-00046-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96ac1dbe3910663b67788e9740b40275e1ee30ae896548ac7f0f8a9885223c43
3
+ size 3651133469
model-00049-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3b83ca00ce04054946da7564a395cf775d30c59ea6fb6068b823a13d6a88b2f
3
+ size 3641174278
model-00063-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90cfad9b63b6dc4b6a9781d00f8da2a3f263ac9986d69466343af9f708284fcd
3
+ size 3422552471
model-00066-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:406b281747c9da2ef2490f0bbc8c289a5861aa4a79baf2151aa6f9829fd29fd0
3
+ size 3422552471
model-00071-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:909cf0397d23f305f77bbf61fb8437f41ff90097758c573a2a1205e0a338a1d7
3
+ size 3422552477
model-00074-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b45646332a5a8e4a03cbcd8324964b5bdc9314bb3f672532607488b3270c486
3
+ size 3422552477
model-00078-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e10dd441843b0f455f4d22d90144fdd403e5b6bdf36e1215909bafef4f240ba6
3
+ size 3422552471
model-00082-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e48c81817f2dd1f45d7e35b4aa693dc0d1980a65c2b28f48fc7c63a5d733f4e
3
+ size 3651133509
model-00087-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d05e04df3216cad9e0f5d41643141a683c8a37de209c73ed04c0bdc0322c30e0
3
+ size 3422552471
model-00088-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d65e3f4355772afb3fff50bab4b4451423793c2a9fa6928d6fc93b0cecc72891
3
+ size 3641174312
model-00090-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aadd58b1700821f6bbd6ffb1c5aaf62f8461b6d32e51ce6f14835fab3653e2f6
3
+ size 3422552471
model-00095-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e7af62c1a30068add54bae05d8759fd73eb8dceb2f2ab1e13c8ede860466697
3
+ size 3422552477
model-00103-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24278ab75eccc1149cec494accc1fc3d47181dde6c5e42b3421a946560e49e2a
3
+ size 3641174236
model-00106-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f2ad61c9946cc1119684cf29fa769d9441103e4938dc34749610320482d57ad
3
+ size 3651133469
model-00111-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72f70395146e8782eb538a7280a040b03a47e54cd059ceae9422a86ab7e36e5
3
+ size 3422552471
model-00114-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c00795faad6ca29865332e19779366a26d63dab38eed7b47867c905e0c7ab57
3
+ size 3422552471
model-00123-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffd6bb2461b22086c29c950ce78ddfae1b32ab7c2cb5138e6d18cbc58b68d0c3
3
+ size 3422552471
model-00126-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d3475202c1797c9c737a9a3ff37709b1fe40f5cea5b8f53a6e1c73fb86c911f
3
+ size 3422552471
model-00129-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35d0e5297f4032c083b07eee29a07d02a35f024d087823c20972b9e07307489c
3
+ size 3422552471
model-00142-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70774e8b213e52e1d3f813b4cdc8970ff0ebb64ce65dd9a7f7a176471ec22081
3
+ size 3651133445
model-00147-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c984d1b04a60b81cf674ad04e5d48b77e2986638ab174659fdae673746ba2e14
3
+ size 3422552471
model-00150-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:471ad334283d85f468adc6078b20dedf02f8e96a4d6395130cd72039352998ab
3
+ size 3422552471
model-00155-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0936cfa902df92c337f29dbb7e3a23595ed74630fcea9c73aec299de609ea5ca
3
+ size 3422552477
model-00162-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b677c47446f7e9fc89102a2056068cbf432c3e8d9d04a14fa8eefb6f94858a95
3
+ size 3422552471
model-00167-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17b76e9d7255fd5ef9c5731f4895c4baf4a4021f9919d1c270698f729c1d8096
3
+ size 3422552477
model-00168-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00ae0a06c5b88eea9a485bffd7fb457f35ca886a407564ba05cc69c78b6d46b4
3
+ size 3422552471
model-00189-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d0278e1ac4a8a4268a63b64f00f302bac06c638df86301b62bbb518ac327c9e
3
+ size 3422552471
model-00191-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6593a43d380ecdb6ee5365549b9e9b63ed6dae9cdbfa54b579b2496972bddc71
3
+ size 3422552477
model-00192-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10b92e78cda91b8d99a48720fc5cf928f86aac040908340e0c16d249abca745f
3
+ size 3422552471
model-00194-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e99110587b2955fd22c226e508583718bcd9afe48046e5407a1ee3059b8dcb4a
3
+ size 3422552477
model-00203-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58507011ef4d9a91ed03f416f841ad6691192bd11fd343741bc0451965dcc35c
3
+ size 3422552477
model-00206-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdad45fcf37bd133c10ea272c85511d201dae02476aae8c3a776412bd6912927
3
+ size 3422552477
model-00209-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3078f8cd01c9e5641fdcbeeae2d21c981ed2f5e8d5d9be9d597111a1f42ff79
3
+ size 3422552477
model-00211-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1935f2385c1323c63acdfb3063e60d34540e6bd003743cdbeda8f3eba2942b34
3
+ size 3641174256
model-00214-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28beede61e8afe9af950c1d8fed3db26e5bb00e0bb5444641ef125a5209b8c40
3
+ size 3651133415
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "clean_up_tokenization_spaces": false,
4
+ "do_lower_case": false,
5
+ "eos_token": "<|endoftext|>",
6
+ "extra_special_tokens": [
7
+ "<|endoftext|>",
8
+ "[MASK]",
9
+ "[gMASK]",
10
+ "[sMASK]",
11
+ "<sop>",
12
+ "<eop>",
13
+ "<|system|>",
14
+ "<|user|>",
15
+ "<|assistant|>",
16
+ "<|observation|>",
17
+ "<|begin_of_image|>",
18
+ "<|end_of_image|>",
19
+ "<|begin_of_video|>",
20
+ "<|end_of_video|>",
21
+ "<|begin_of_audio|>",
22
+ "<|end_of_audio|>",
23
+ "<|begin_of_transcription|>",
24
+ "<|end_of_transcription|>"
25
+ ],
26
+ "is_local": true,
27
+ "model_max_length": 1048576,
28
+ "model_specific_special_tokens": {},
29
+ "pad_token": "<|endoftext|>",
30
+ "padding_side": "left",
31
+ "remove_space": false,
32
+ "tokenizer_class": "TokenizersBackend",
33
+ "tool_parser_type": "glm47"
34
+ }