kernelpool commited on
Commit
deb1d05
·
verified ·
1 Parent(s): a9f8952

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-00001-of-00121.safetensors +3 -0
  6. model-00004-of-00121.safetensors +3 -0
  7. model-00013-of-00121.safetensors +3 -0
  8. model-00016-of-00121.safetensors +3 -0
  9. model-00017-of-00121.safetensors +3 -0
  10. model-00018-of-00121.safetensors +3 -0
  11. model-00019-of-00121.safetensors +3 -0
  12. model-00020-of-00121.safetensors +3 -0
  13. model-00021-of-00121.safetensors +3 -0
  14. model-00024-of-00121.safetensors +3 -0
  15. model-00025-of-00121.safetensors +3 -0
  16. model-00033-of-00121.safetensors +3 -0
  17. model-00036-of-00121.safetensors +3 -0
  18. model-00039-of-00121.safetensors +3 -0
  19. model-00040-of-00121.safetensors +3 -0
  20. model-00045-of-00121.safetensors +3 -0
  21. model-00052-of-00121.safetensors +3 -0
  22. model-00053-of-00121.safetensors +3 -0
  23. model-00056-of-00121.safetensors +3 -0
  24. model-00057-of-00121.safetensors +3 -0
  25. model-00058-of-00121.safetensors +3 -0
  26. model-00059-of-00121.safetensors +3 -0
  27. model-00060-of-00121.safetensors +3 -0
  28. model-00061-of-00121.safetensors +3 -0
  29. model-00064-of-00121.safetensors +3 -0
  30. model-00065-of-00121.safetensors +3 -0
  31. model-00072-of-00121.safetensors +3 -0
  32. model-00077-of-00121.safetensors +3 -0
  33. model-00078-of-00121.safetensors +3 -0
  34. model-00081-of-00121.safetensors +3 -0
  35. model-00084-of-00121.safetensors +3 -0
  36. model-00092-of-00121.safetensors +3 -0
  37. model-00093-of-00121.safetensors +3 -0
  38. model-00096-of-00121.safetensors +3 -0
  39. model-00097-of-00121.safetensors +3 -0
  40. model-00099-of-00121.safetensors +3 -0
  41. model-00100-of-00121.safetensors +3 -0
  42. model-00101-of-00121.safetensors +3 -0
  43. model-00104-of-00121.safetensors +3 -0
  44. model-00105-of-00121.safetensors +3 -0
  45. model-00112-of-00121.safetensors +3 -0
  46. model-00117-of-00121.safetensors +3 -0
  47. model-00118-of-00121.safetensors +3 -0
  48. model-00120-of-00121.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
+ base_model: zai-org/GLM-5.2
9
+ tags:
10
+ - mlx
11
+ ---
12
+
13
+ # kernelpool/GLM-5.2-6bit
14
+
15
+ This model [kernelpool/GLM-5.2-6bit](https://huggingface.co/kernelpool/GLM-5.2-6bit) 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-6bit")
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": 6,
211
+ "mode": "affine"
212
+ },
213
+ "quantization_config": {
214
+ "group_size": 64,
215
+ "bits": 6,
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-00001-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2739b77f73d377a9f68bb9917af64bda7428aa0ef8019cb8c7858ddc173f2519
3
+ size 4501752761
model-00004-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:110eecba7361b8a150e2871b2e330b7d16b39cecb8b9ec46da299d40b8be7f95
3
+ size 5301758506
model-00013-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b085c327feeed4080029a61c02e3abe91d306f45872c4d656fd382b054d8bf2
3
+ size 5368581198
model-00016-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07da58d2a9baa065f460dd60b24c71d5837e4f06069415b70d831a75d5e56863
3
+ size 5335155609
model-00017-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01db754e39f3f3cfff4c1bf186960e8503c7ae248173f37313f159165635a381
3
+ size 5301758497
model-00018-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39ecc86c095a0f02e4c4dcaefe55f1879ebf1ac3e02066e50fb15f4f88549b3a
3
+ size 2994118892
model-00019-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3eb85217d91a4e69433d6f1c48150da28370b654bf78d09515806ac6e1a30a7
3
+ size 5234492182
model-00020-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46bc8250a2de91b112404548fd4dd68bdd30fbf927a9152e12ecea84dc0c8f4b
3
+ size 5301758520
model-00021-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a6ce5fd4a1da2a45fe87bcfc1a13516edcf8ec1ccfd2dd946a2e2c7e61c2d5f
3
+ size 5368581218
model-00024-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baf9cde675f6fd8eba93ab935f685fc4c2394129e9bc571cc1b017bbb86a9f72
3
+ size 5335155611
model-00025-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46d2168715238c1fb72abae8f5c1ef2aac7238e8e32fb914213a6c394ba60a53
3
+ size 5309374744
model-00033-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:971651d7af42a17c83aa2e1443d866ededec33191b72e333e5bd7c0c0d9f834c
3
+ size 5301758543
model-00036-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b89a40deca39929510216a04f9bcaa4c8e5083948ce67184120a6e683238883f
3
+ size 5301758458
model-00039-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d936ec37f3c758f72d4be356e992d35c0f3dad7b2f3e33760e9e7bf801e11bd
3
+ size 5301758542
model-00040-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:573f8000d924e8d242b36336230c0f03f221ef265bcc7653ac6e2cd0a09077a8
3
+ size 5335155611
model-00045-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f6073135c36f20c8b1f86968351750c10aa1a54852c2da0f337e1ca5700560c
3
+ size 5368581210
model-00052-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6bddacbaa8b43d8e5b55c0a216726790d78a825672f0800f29e1926d496173f
3
+ size 5301758470
model-00053-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0dd5ff24a7bd6e1948354fdd3a3a149e19f78749fcc758cb7c8919ce811eeb7
3
+ size 5368581216
model-00056-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dddb1e64cca77db5b177cd268a54532e367788f3456ddf4a59521abd77a150af
3
+ size 5335155611
model-00057-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70acc1bd46637343772b4357b95ebea63c514baac5ae01a5a40edf1f6190d28e
3
+ size 5309374864
model-00058-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac6a9728f99490985c9f898a192f80badc8c8c974a26969d3606f39fef09db9d
3
+ size 2986502649
model-00059-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ca6df7b911311c1383debefd91a132b8b9a23a02b8cd8ee0f0b99b996c58df
3
+ size 5234492184
model-00060-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:900722bbf1e3ec68093dd8baf2d27cc6ccc15c0e70154584cb8fc0a193b86045
3
+ size 5301758498
model-00061-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b9af9b103a01c9fdd544da7135a977e99eb55290b7db81a7a9381f19f706fb0
3
+ size 5368581194
model-00064-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68561250a8baa9685120c9bff7462c67448f7a41dc08c4ce976dfd83fc8d96d9
3
+ size 5335155605
model-00065-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e172a0ef7c08ad4e4f29411f41fcbdef553780c0f21229f255f8dae7d1877ebc
3
+ size 5301758519
model-00072-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d171b3c87fe0ac28ec72255934950c6d8ebf1e34612e91a926b702a650f64511
3
+ size 5335155611
model-00077-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db9d4f52d3980bbfc4e929964fb482ba37738ad1a5390a3c2cf486143222b7e3
3
+ size 5368581208
model-00078-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e085e9860fa689b48c4fd73f470b7b3eb313f09118e6eb8d580c67a2b7fd7c43
3
+ size 5268332908
model-00081-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c1fd6bf80d31368bc894d05c58b58cc1866f1529176a01023c5dec3ae2f2ed5
3
+ size 5301758541
model-00084-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89e4625b6c662391c5c80a139b91f0ba80e8ea20cde39594dbd2a25eb96ded1f
3
+ size 5301758488
model-00092-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:608072001c14db581e20b0ac3f9849bd177f105d4988489527d5b3c890a8c245
3
+ size 5301758488
model-00093-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:327d7f8ffa35c094606cbdc7534da364f635b357f0052f081c35fa6bead1bf5e
3
+ size 5368581198
model-00096-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d5c4d0272d2f3e60518b4d0c73f2f5d53726c709dae48bea37c9d851b576b8b
3
+ size 5335155609
model-00097-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c32944cf9ef975513928682ab1a020bf5ba673e26c01657844e9a5151ca40d10
3
+ size 5301758539
model-00099-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60416adbbd5232ac5a9776b9837e6567cd4cab36df7407ded936c0319489e213
3
+ size 5234492180
model-00100-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8495d9c7875f16ebc364e641c17e81c7dd3bfe9ef61ef4988b4bc924e69af677
3
+ size 5301758544
model-00101-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34b5f0403d69ee6ae161df437977b2ce51102cd3ca12d3900b8d0106125bfb44
3
+ size 5368581208
model-00104-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e3f903d88e8c72d6ef4d160472740d657ba5677c43cad9a04d1ef138c71372d
3
+ size 5335155609
model-00105-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b49c62b152fdde04a05341731b9726b1366e7b6e73f1a43cd866ccf34eb26c7
3
+ size 5301758541
model-00112-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11f74c41a7f7db7ce059d64b6f0695187b4c96737468948d6b3570ddedfdbcd4
3
+ size 5335155609
model-00117-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9278edf3a96f7aac4c1f6e854a928b746d39615acad90a7c84d7bea59cc3a816
3
+ size 5368581212
model-00118-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b3bca9940b510b3883519ccd8f76cf708a58d1852da849c578dc74d455c1d08
3
+ size 5268332904
model-00120-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:838e88b7cea8e4041cdd1124be1946125daef5ca027efa90088bbf8240574001
3
+ size 5335155607
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
+ }