kernelpool commited on
Commit
a471cf3
·
verified ·
1 Parent(s): ec6c004

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-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
+ tags:
9
+ - mlx
10
+ base_model: zai-org/GLM-5.1
11
+ ---
12
+
13
+ # kernelpool/GLM-5.1-6bit
14
+
15
+ This model [kernelpool/GLM-5.1-6bit](https://huggingface.co/kernelpool/GLM-5.1-6bit) 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-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,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": 6,
47
+ "mode": "affine"
48
+ },
49
+ "quantization_config": {
50
+ "group_size": 64,
51
+ "bits": 6,
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-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5de35d6e88bc2e6c949bb08c5e67c9c367a70d483aa39e1ee84326c0ed68123a
3
+ size 4509369055
model-00004-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89633052edc089716576ea55c3b1f5566dd42aa6c7bad2535abe0cc74685960e
3
+ size 5309374818
model-00013-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68340d093c6338a49d28e4dc3740397095bf0845f964b989430d85f85887ac76
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:93ebb4fd5fae504b6909ff09bbc15c8e4575580fb1ac53643f5818d5c813b556
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:f158d159bf1895d0a1de02b5f66ec18a23adf92c019c62d590f92e44e649b70c
3
+ size 5309374866
model-00018-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:092308d35708e30f1554f82184c2a22a1e1f77ed31b4233bc89281585db23ed0
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:552118496254d868e58cb965d2b988cfbc9cd51b3e92ecf270ce17de7c029baf
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:53d4c498cfbfccb11ecfb7fe82ae17c11e68fadca3209baf81f8f2706df10af2
3
+ size 5309374861
model-00021-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7acc025b29eaaa8cec3bde6c11f0f505f136cfa73fe3ed91bc2c9f187c97ea1
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:a02169cdbeb62fd78d36ade0c742eac6021bc5a339dd8c9a08df2cb394cbe3dd
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:c68dada0a1b27f08043c0b075fca2a3081d2f03d92c5e00b956d91db72fce3b8
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:12648e9e03af67b816a1d037330eff82729c89c7e7bd9ee7a469ac9ef9171af5
3
+ size 5309374856
model-00036-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44fa159baca52b7eb3ea8c2a1173e90a67037c95ae4b28fdcc23c19b76abdaf3
3
+ size 5309374867
model-00039-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10fe4a61e3cf50c7ad12506a8c53081211cdd8d54e79d79d9dbc3348c815d009
3
+ size 5309374845
model-00040-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cf019855a0b6dae3c0280c4c274cc13f697a036f198ca2c706f453ec2d8270d
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:9bfc795327a9400aadc7f729c73cb9247fb6718b5d65541227159b5220131a3e
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:4d3d3fcfa1da5434d06815b4275dfa410a5fdbaf0da0c3bdb17e93937e0b330b
3
+ size 5309374815
model-00053-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:400be28334399c74095f4dfc1c9738ec22fd2d6f97ce7ca7d681f2dbe662db5b
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:e39fd97039ad2aecfcbd88c651716d90d12e01e63a81d502921a780bd5670d07
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:12b8e898480e23205bfbb26b9c4a4b12ff59f6d33f85375aae64d75ffa197437
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:f891914d33d11834138be6506b4e7bc0193f66ee73e09f6caa1c05fcd191e778
3
+ size 2994118950
model-00059-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21b17b3c6582499821103f3418edcf452da2c52d9dc543ad07365c41a6a5f1e9
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:0a57a5cf86a6fda830b9ad775de21778a6a1c36fc42c4a06e2fc6570f882e310
3
+ size 5309374861
model-00061-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd5f82e21e49fc47398b57e8e405b700d0d4821fee8785a22b6129de1a357e39
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:44d6f74f28a7e83e79b97dad97e4dc8e941d68dcf121ec23ca5dd1cdb86808cb
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:324c6a147c657b251d8047a70344f67331d0c996ea57375c5c6bf964ca3c3f52
3
+ size 5309374866
model-00072-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b73f747e83e763e0a5a6e5191313d22576ca1d86884ecabc8c00cfb8242719c9
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:788af61838942efd8365b267ebed9c54d53f7ff263c2d138315707aff2a47f43
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:8b2c11de76678371a540581fba6604cd9a211bcceb8a081a4cb296187f025017
3
+ size 5275949231
model-00081-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bce9efea8141f8c3838e53f1194034714a45f9e74fd9a92919a8c5f8766d8d2
3
+ size 5309374866
model-00084-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8fbd3b0d68dbd5459c6d9fce2a08666445f01d051d70ab91b2ea0f2c3ce8458
3
+ size 5309374841
model-00092-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b924550e60dad9e87ffff6020f3fd95fe7f7538151ae5acca8b27c5f4d609c7c
3
+ size 5309374791
model-00093-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65af3995586a64d52ea5afd48482684b5bae95355df6773bb33f91f3d26f76b3
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:cb5e94025c17a9200484dcbf7bf1f6b5d02c7a5348efb397885f8ff949d2c1d4
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:f5080b33905c1d4c0fd27b1ecec1ef5d4183676f7434110bc3cd1a024c417d8d
3
+ size 5309374860
model-00099-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38ae06ea2b1c9c1339639aab872c185cb33f9e5a51321b547706dfbc8e927400
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:95aa465897ca7ca2c716c9e9fb0756ceb73cccea2f6a908ab830876d9208f08e
3
+ size 5309374867
model-00101-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f3976d8ba06cae98265b4200fb12625bcab62f3431ac42f2c0a009b9a20f359
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:1cae27cbb8975e437e3d36685c6debd90acd52f620e3ea07b12299aa77f4dba9
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:b71d41c54c01f1482c2df2bfcca76fe7c4f8c88cf8d17f2f6a9ccf30303dcaff
3
+ size 5309374864
model-00112-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93e9f0e466ad66c9ef9c2bfd83b236512b0b5e04032be508ba50d6c4fbfba235
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:fb36eeeb774ff7b5d0895569c3b121b2a694fb991eb1006d7b9e7316d4bed520
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:8b8a1a1c9d7c8d62ef42154208d9038bdc953b5ff593c8685fa97169f222b40a
3
+ size 5275949229
model-00120-of-00121.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ad8c920a89b880959b57af435f2827b123a7378273096b3b10cf8590c2627a3
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": 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
+ }