kernelpool commited on
Commit
d350f22
·
verified ·
1 Parent(s): 332741b

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +39 -0
  2. chat_template.jinja +117 -0
  3. config.json +69 -0
  4. generation_config.json +12 -0
  5. model-00001-of-00226.safetensors +3 -0
  6. model-00002-of-00226.safetensors +3 -0
  7. model-00004-of-00226.safetensors +3 -0
  8. model-00007-of-00226.safetensors +3 -0
  9. model-00008-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-00040-of-00226.safetensors +3 -0
  14. model-00043-of-00226.safetensors +3 -0
  15. model-00045-of-00226.safetensors +3 -0
  16. model-00046-of-00226.safetensors +3 -0
  17. model-00049-of-00226.safetensors +3 -0
  18. model-00071-of-00226.safetensors +3 -0
  19. model-00074-of-00226.safetensors +3 -0
  20. model-00082-of-00226.safetensors +3 -0
  21. model-00087-of-00226.safetensors +3 -0
  22. model-00088-of-00226.safetensors +3 -0
  23. model-00103-of-00226.safetensors +3 -0
  24. model-00111-of-00226.safetensors +3 -0
  25. model-00114-of-00226.safetensors +3 -0
  26. model-00118-of-00226.safetensors +3 -0
  27. model-00120-of-00226.safetensors +3 -0
  28. model-00123-of-00226.safetensors +3 -0
  29. model-00125-of-00226.safetensors +3 -0
  30. model-00126-of-00226.safetensors +3 -0
  31. model-00129-of-00226.safetensors +3 -0
  32. model-00150-of-00226.safetensors +3 -0
  33. model-00155-of-00226.safetensors +3 -0
  34. model-00159-of-00226.safetensors +3 -0
  35. model-00161-of-00226.safetensors +3 -0
  36. model-00162-of-00226.safetensors +3 -0
  37. model-00164-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-00197-of-00226.safetensors +3 -0
  45. model-00200-of-00226.safetensors +3 -0
  46. model-00203-of-00226.safetensors +3 -0
  47. model-00206-of-00226.safetensors +3 -0
  48. model-00209-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.1
11
+ ---
12
+
13
+ # kernelpool/GLM-5.1-8bit
14
+
15
+ This model [kernelpool/GLM-5.1-8bit](https://huggingface.co/kernelpool/GLM-5.1-8bit) was
16
+ converted to MLX format from [zai-org/GLM-5.1](https://huggingface.co/zai-org/GLM-5.1)
17
+ using mlx-lm version **0.31.2**.
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.1-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,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ {%- macro tool_to_json(tool) -%}
4
+ {%- set ns_tool = namespace(first=true) -%}
5
+ {{ '{' -}}
6
+ {%- for k, v in tool.items() -%}
7
+ {%- if k != 'defer_loading' and k != 'strict' -%}
8
+ {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
9
+ {%- set ns_tool.first = false -%}
10
+ "{{ k }}": {{ v | tojson(ensure_ascii=False) }}
11
+ {%- endif -%}
12
+ {%- endfor -%}
13
+ {{- '}' -}}
14
+ {%- endmacro -%}
15
+ <|system|>
16
+ # Tools
17
+
18
+ You may call one or more functions to assist with the user query.
19
+
20
+ You are provided with function signatures within <tools></tools> XML tags:
21
+ <tools>
22
+ {% for tool in tools %}
23
+ {%- if 'function' in tool -%}
24
+ {%- set tool = tool['function'] -%}
25
+ {%- endif -%}
26
+ {% if tool.defer_loading is not defined or not tool.defer_loading %}
27
+ {{ tool_to_json(tool) }}
28
+ {% endif %}
29
+ {% endfor %}
30
+ </tools>
31
+
32
+ For each function call, output the function name and arguments within the following XML format:
33
+ <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 -%}
34
+ {%- macro visible_text(content) -%}
35
+ {%- if content is string -%}
36
+ {{- content }}
37
+ {%- elif content is iterable and content is not mapping -%}
38
+ {%- for item in content -%}
39
+ {%- if item is mapping and item.type == 'text' -%}
40
+ {{- item.text }}
41
+ {%- elif item is string -%}
42
+ {{- item }}
43
+ {%- endif -%}
44
+ {%- endfor -%}
45
+ {%- else -%}
46
+ {{- content }}
47
+ {%- endif -%}
48
+ {%- endmacro -%}
49
+ {%- set ns = namespace(last_user_index=-1, thinking_indices='') -%}
50
+ {%- for m in messages %}
51
+ {%- if m.role == 'user' %}
52
+ {%- set ns.last_user_index = loop.index0 -%}
53
+ {%- elif m.role == 'assistant' %}
54
+ {%- if m.reasoning_content is string %}
55
+ {%- set ns.thinking_indices = ns.thinking_indices ~ ',' ~ ns.last_user_index ~ ',' -%}
56
+ {%- endif %}
57
+ {%- endif %}
58
+ {%- endfor %}
59
+ {%- set ns.has_thinking = false -%}
60
+ {%- for m in messages -%}
61
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}{% set ns.has_thinking = (',' ~ loop.index0 ~ ',') in ns.thinking_indices -%}
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
+ {%- elif loop.index0 > ns.last_user_index and not (enable_thinking is defined and not enable_thinking) %}
71
+ {%- set reasoning_content = '' %}
72
+ {%- elif loop.index0 < ns.last_user_index and ns.has_thinking %}
73
+ {%- set reasoning_content = '' %}
74
+ {%- endif %}
75
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
76
+ {{ '<think>' + reasoning_content + '</think>'}}
77
+ {%- else -%}
78
+ {{ '</think>' }}
79
+ {%- endif -%}
80
+ {%- if content.strip() -%}
81
+ {{ content.strip() }}
82
+ {%- endif -%}
83
+ {% if m.tool_calls %}
84
+ {% for tc in m.tool_calls %}
85
+ {%- if tc.function %}
86
+ {%- set tc = tc.function %}
87
+ {%- endif %}
88
+ {{- '<tool_call>' + tc.name -}}
89
+ {% 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 %}
90
+ {% endif %}
91
+ {%- elif m.role == 'tool' -%}
92
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
93
+ {{- '<|observation|>' -}}
94
+ {%- endif %}
95
+ {%- if m.content is string -%}
96
+ {{- '<tool_response>' + m.content + '</tool_response>' -}}
97
+ {%- else -%}
98
+ {{- '<tool_response><tools>\n' -}}
99
+ {% for tr in m.content %}
100
+ {%- for tool in tools -%}
101
+ {%- if 'function' in tool -%}
102
+ {%- set tool = tool['function'] -%}
103
+ {%- endif -%}
104
+ {%- if tool.name == tr.name -%}
105
+ {{- tool_to_json(tool) + '\n' -}}
106
+ {%- endif -%}
107
+ {%- endfor -%}
108
+ {%- endfor -%}
109
+ {{- '</tools></tool_response>' -}}
110
+ {% endif -%}
111
+ {%- elif m.role == 'system' -%}
112
+ <|system|>{{ visible_text(m.content) }}
113
+ {%- endif -%}
114
+ {%- endfor -%}
115
+ {%- if add_generation_prompt -%}
116
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
117
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 64,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 6144,
18
+ "index_head_dim": 128,
19
+ "index_n_heads": 32,
20
+ "index_topk": 2048,
21
+ "indexer_rope_interleave": true,
22
+ "initializer_range": 0.02,
23
+ "intermediate_size": 12288,
24
+ "kv_lora_rank": 512,
25
+ "max_position_embeddings": 202752,
26
+ "model_type": "glm_moe_dsa",
27
+ "moe_intermediate_size": 2048,
28
+ "moe_layer_freq": 1,
29
+ "n_group": 1,
30
+ "n_routed_experts": 256,
31
+ "n_shared_experts": 1,
32
+ "norm_topk_prob": true,
33
+ "num_attention_heads": 64,
34
+ "num_experts_per_tok": 8,
35
+ "num_hidden_layers": 78,
36
+ "num_key_value_heads": 64,
37
+ "num_nextn_predict_layers": 1,
38
+ "pad_token_id": 154820,
39
+ "pretraining_tp": 1,
40
+ "q_lora_rank": 2048,
41
+ "qk_head_dim": 256,
42
+ "qk_nope_head_dim": 192,
43
+ "qk_rope_head_dim": 64,
44
+ "quantization": {
45
+ "group_size": 64,
46
+ "bits": 8,
47
+ "mode": "affine"
48
+ },
49
+ "quantization_config": {
50
+ "group_size": 64,
51
+ "bits": 8,
52
+ "mode": "affine"
53
+ },
54
+ "rms_norm_eps": 1e-05,
55
+ "rope_interleave": true,
56
+ "rope_parameters": {
57
+ "rope_theta": 1000000,
58
+ "rope_type": "default"
59
+ },
60
+ "routed_scaling_factor": 2.5,
61
+ "scoring_func": "sigmoid",
62
+ "tie_word_embeddings": false,
63
+ "topk_group": 1,
64
+ "topk_method": "noaux_tc",
65
+ "transformers_version": "5.4.0",
66
+ "use_cache": true,
67
+ "v_head_dim": 256,
68
+ "vocab_size": 154880
69
+ }
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.4.0"
12
+ }
model-00001-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e466c85be66b87f75dfed99d3f89d70eb85d46b4127a61703c5925ddf45c1145
3
+ size 2474279211
model-00002-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:943d25255f559bb6bc7f3bbe6466752c3b30cfdb5b9bf356c49c77f9afedef21
3
+ size 3422552474
model-00004-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:799ca9054d7bb809d82c1375718cc6801915e3c197abde658cdaaeb1eb56995d
3
+ size 3651133414
model-00007-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b89f695ec1483d30e872f6a1ea25278c5b29c77aff1eba08b5e2eb3ba917a93
3
+ size 3651133446
model-00008-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f6867a65175e29f92c15af81b71505e97af11cf4fc407b280294f972a4bbc1e
3
+ size 3422552474
model-00030-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e6aabcf56497b01a058b4cd2dbedf1620b581eff30ebcabbfc1efc5e740b490
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:46e9c305b7c9aac905d481f7a1c4c120772d269451316c816f480e1711d58288
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:b5185f55f7d6e47faf65acd459e83c6f8828442961be45a6c7a8b9edef548068
3
+ size 3422552471
model-00040-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3da0ca487c7bce4051d85dc759a8c335f0fb43840ffca77596724d771a6f2e18
3
+ size 3651133495
model-00043-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e098b0d6269b6715acbd590daedbeffef32ce08d82cb645fda876122a83062b6
3
+ size 3651133479
model-00045-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59a4070d73b805d8cd1d7fc53f4d3dac9b2af97fb6359f9b79a4e0a61bea231d
3
+ size 3422552471
model-00046-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9fb4bc4194154bb2767144bf23edb4cf563ba4501605490a6ceaf74374d8af6
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:058a1d60822133f34fe05d4a45192f746695882e7858afc96b5548b7f99a0400
3
+ size 3651133449
model-00071-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a61dd658343b9284725b848c035efc67d9cd07f443925b779b103d56989757a
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:f25b87c208a6c778d0fc120f4457b147c92bad24b3cbff4155e367f9de4026ef
3
+ size 3422552477
model-00082-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd7e61b0af7605f3ad531e94c07bb752555a25e464823d5de353d549aeb71275
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:6ca3aa29921fd02acf88ca05bc302d5a15eab0e70da58bcb5ab83d1366e24c20
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:2ee6924d5e0b7a229b927a91d72e39589f9a91f9705c251ce26ecb7f7ff77253
3
+ size 3651133507
model-00103-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3582c7cd2eee3df1267cc1eba56d4063f352106396295b06b0142ba6b4240138
3
+ size 3651133407
model-00111-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6580fb1f04413057951c3e92ad48490eb04aee39938c7a8288330d45d2799de9
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:d315b7929684f04deb70226999de12f3342457cb80d87be410ef2bf2499b4a2d
3
+ size 3422552471
model-00118-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dd3eda732f0507f474755db75c29f895d4bcf67a4b9444db9b340aa1651bee6
3
+ size 3651133431
model-00120-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ac301fccae3d41391cc0a135fd7e4b16c4bf5c9d62aa9abad0355a28dfa1046
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:26377c9cf7a29087d923b744bb244e0484f4ad8161d43caced7db08e2185337f
3
+ size 3422552471
model-00125-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8b0eb053ebda51cb4df3ccdbfc1fea08f4d804458403ae0a782b8ee1e21542e
3
+ size 3422552477
model-00126-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f8cc356ac94fbda1dd7bf9114f56167e9618f7c65c374ce47512f5baef0b39e
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:617769d38956d59a86e1028baef304cc963b2c75c844cbc4aa16b5ddda002a80
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:7347d78cae397f7f79f76ada788ba23da1d1381b6a5316f1ef4c903aa20612b5
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:dded941514a464b5dcaaa989cdcc4581882a71069a4e362a5388e9cae58dd848
3
+ size 3422552477
model-00159-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f7de933b039fd0102ab4707dcd6bd3c548f757e8d765f53c297cc91b16cbae8
3
+ size 3422552471
model-00161-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6508a442a39d388774f40d66fa9028931c062ff5ee644694f9c92ed64e5c1270
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:cac0d508394690ff330692028c5c159f1e46ee897d1a483367f0e22ef94a1a5f
3
+ size 3422552471
model-00164-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b192a88a8988ee3e3cf94a47369ebdc222b55aef9660870e0d4ba713e049ccb
3
+ size 3422552477
model-00167-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ed2a8a9ed8c90d67a8b8fc85ab9993fd39ce7439667a0c9a028ac42c8f5da43
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:9d2d2d29f413cc8e47d1e99b22cd10ba2243db881efb471b616fe4b524a9c995
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:c91d74f66fea7c014c04cbcda8599a108026872c19f80142875ecfbd30581239
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:e58554802e8301d4fd54de7fe09ea7a20c4fc68d2bacb71a7e8fa84212b32ac5
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:746d8f1cdfdff41df864f1f01d69e9281bae367df164074a8f0d3cd517ea916f
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:bf81ba10802b4f23e122f9d3ea2c3acd8fef684af584b6f3663d0166369d4638
3
+ size 3422552477
model-00197-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ec5bfdfae2dfa1d39767399ac1dba64dee89736d3c25fb272e8d1e6610c5170
3
+ size 3422552477
model-00200-of-00226.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3c9901f35c21a814e5cb5bdb9cbfedf3557b2d632b3949c8ee8c9667e4097ee
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:8fb76c3de25c32dd387f80cb6cb2dc31cca7632caa09f24f22158e71e7d96cb3
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:a1c589e587861a59b5e9c9d1791fd0ea35dbdce6b8780387f55ce4badaa517b2
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:b41d72c5fb3006261645cd544d11c1bcaa8beda0395e5c2d71c86c1a6a6ab4e0
3
+ size 3422552477
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": 202752,
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
+ }