cs2764 commited on
Commit
310b98d
·
verified ·
1 Parent(s): eef5735

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +22 -0
  2. chat_template.jinja +117 -0
  3. config.json +0 -0
  4. generation_config.json +12 -0
  5. model-00001-of-00106.safetensors +3 -0
  6. model-00002-of-00106.safetensors +3 -0
  7. model-00003-of-00106.safetensors +3 -0
  8. model-00004-of-00106.safetensors +3 -0
  9. model-00005-of-00106.safetensors +3 -0
  10. model-00006-of-00106.safetensors +3 -0
  11. model-00007-of-00106.safetensors +3 -0
  12. model-00008-of-00106.safetensors +3 -0
  13. model-00009-of-00106.safetensors +3 -0
  14. model-00010-of-00106.safetensors +3 -0
  15. model-00011-of-00106.safetensors +3 -0
  16. model-00012-of-00106.safetensors +3 -0
  17. model-00013-of-00106.safetensors +3 -0
  18. model-00014-of-00106.safetensors +3 -0
  19. model-00015-of-00106.safetensors +3 -0
  20. model-00016-of-00106.safetensors +3 -0
  21. model-00017-of-00106.safetensors +3 -0
  22. model-00018-of-00106.safetensors +3 -0
  23. model-00019-of-00106.safetensors +3 -0
  24. model-00020-of-00106.safetensors +3 -0
  25. model-00021-of-00106.safetensors +3 -0
  26. model-00022-of-00106.safetensors +3 -0
  27. model-00023-of-00106.safetensors +3 -0
  28. model-00024-of-00106.safetensors +3 -0
  29. model-00025-of-00106.safetensors +3 -0
  30. model-00026-of-00106.safetensors +3 -0
  31. model-00027-of-00106.safetensors +3 -0
  32. model-00028-of-00106.safetensors +3 -0
  33. model-00029-of-00106.safetensors +3 -0
  34. model-00030-of-00106.safetensors +3 -0
  35. model-00031-of-00106.safetensors +3 -0
  36. model-00032-of-00106.safetensors +3 -0
  37. model-00033-of-00106.safetensors +3 -0
  38. model-00034-of-00106.safetensors +3 -0
  39. model-00035-of-00106.safetensors +3 -0
  40. model-00036-of-00106.safetensors +3 -0
  41. model-00037-of-00106.safetensors +3 -0
  42. model-00038-of-00106.safetensors +3 -0
  43. model-00039-of-00106.safetensors +3 -0
  44. model-00040-of-00106.safetensors +3 -0
  45. model-00041-of-00106.safetensors +3 -0
  46. model-00104-of-00106.safetensors +3 -0
  47. model-00105-of-00106.safetensors +3 -0
  48. model-00106-of-00106.safetensors +3 -0
  49. model.safetensors.index.json +0 -0
  50. tokenizer_config.json +34 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - mlx
4
+ - transformers
5
+ - quantization
6
+ - dq4
7
+ ---
8
+
9
+ # GLM-5.1-FP8_dq4
10
+
11
+ This model is a DQ4 quantized version of the original model [GLM-5.1-FP8](Local Model).
12
+ It was quantized locally using the `mlx_lm` library.
13
+
14
+ ## Quantization Methodology (DQ4)
15
+
16
+ This model was quantized using the dynamic **DQ4** (4-bit / 5-bit / 6-bit / 8-bit mixed) approach, inspired by the methodology described in the [mlx-community/Kimi-K2.5-mlx-DQ3_K_M-q8](https://huggingface.co/mlx-community/Kimi-K2.5-mlx-DQ3_K_M-q8) repository.
17
+
18
+ The weights are mixed based on MLX layers:
19
+ - Expert layers (switch_mlp / mlp) are quantized to 4-bit.
20
+ - The first 5 layers are kept at higher quality (6-bit).
21
+ - Every 5th layer is medium quality (5-bit).
22
+ - All other layers (e.g. attention, normalization) remain at 8-bit to serve as the "8-bit brain".
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
The diff for this file is too large to render. See raw diff
 
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-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c6c9c22b8441e66b3905d4b76f695c23ba5fd518996fda1bffae5290e27de31
3
+ size 3993666268
model-00002-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:336a49f935ecc63844108ed1d98fedf0326e7870ee5a7345a723567e522b18e4
3
+ size 4657766757
model-00003-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b8b5bca406fcd53a3264952047c881047edac3e4fdbffa4766facdc41ea4414
3
+ size 3623879442
model-00004-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94cfd68ee5081a9b7b8a989c5aca159aa51ce2d833856f1e4947e9d791b49578
3
+ size 4657766879
model-00005-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5852ffbedf9d6a073f49a349413abe51896776b5634ce5ffba3a99962ae7d56
3
+ size 4255113603
model-00006-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13ec2061bed838aff4c1c69a5b5a7d94b8236124cb5214b0fa635707fa63bade
3
+ size 5335155728
model-00007-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60619e2522386bc8fede1a5a9fc515f5932512e9ae04727c71b19bad2fe5a78e
3
+ size 3953123926
model-00008-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb4c15ea7697b71e5c74d558a9854103839ddfde38ebdbcf4208b9514e4058a9
3
+ size 3852460509
model-00009-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d75a14d695edef9aae0d677326fd14334a49d95086c29166aa1557a32233a3cb
3
+ size 3852460387
model-00010-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:925f609e4a171f9ac16121d2ba8baba2e54dacfa7020c8791118359789f260aa
3
+ size 5335155726
model-00011-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:914665eb012b51bc5a53eb144eeb0d287a9fbf2c4276abedb69ad7569cb76b31
3
+ size 3953123963
model-00012-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b20afca3f9f0b3b4d7c1de73a5172c1d5c279f13d9c83340478636a259594fad
3
+ size 4255113743
model-00013-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5efd1e99221cb9edcceb8b8e9934c775ba5c0333a89000a29f1cb96b660d418b
3
+ size 3852460545
model-00014-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f7fa9a171bc8595b43674851c24c0dd310ed1ae7b4ec7beba09dddf6d143d27
3
+ size 5335155736
model-00015-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f987b4d7e8e6746c9d2c8b9a0314616990611292e2c896878f1fe47e3e6dc4f
3
+ size 3953123979
model-00016-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:296d6e3216899d661f96472c69cd192353c3615767feec4e7bfec2a41c67e46b
3
+ size 3852460539
model-00017-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d5508078b3bd21417878ae3583b50f026e6de1d599f4554107773fdccaa01b8
3
+ size 3852460473
model-00018-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:692d8413568eff12f9a370968a66fbb9fd4aebd79519726d40bd60a6a8113061
3
+ size 3623879442
model-00019-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c55cc6ebcdc6879e4832449c3f56274ea8f9935ffc77ebb0f19ddc8c7053f37
3
+ size 4255113745
model-00020-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92f98299f23d471c32592e81a657c3551f54fe7d126a025570caa55962020bad
3
+ size 3852460461
model-00021-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90302d8f535302472907e4bffafd55293ec895acf94961a6bbc13174be475e34
3
+ size 5335155738
model-00022-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f857c09fee9df13900c815c261ed5d30b2d63a9dcd054c8cb7a5e2b0bbe66eaf
3
+ size 3953123893
model-00023-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17709d6e635cd4bcf31fd006dad0278eeca312954be888a2023d0c11204ddfa7
3
+ size 3852460555
model-00024-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac362bb2d31778a5682bb1befb0ab299b33e720063d04378d7a0c58ca4564d29
3
+ size 3852460537
model-00025-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c76bc56abf657fc8c64933817b780881aa0ae933e6eaae45d0408bc94637089
3
+ size 3623879444
model-00026-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbd4881da2afb4b05fa958e346fe1371d2d769b7aae4c55eec7f077920251eb7
3
+ size 4255113745
model-00027-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eff2f642c7a3b43e554621f1886adf5bf11a3338e47d9f5d95d9c6b60cbf6064
3
+ size 3852460513
model-00028-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45d3a477b2a73fbb8eab463422899cf623f67a62e8fd66cd740d219ad84cb537
3
+ size 5335155734
model-00029-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0802f7f4fdd6563dfb584e921136b853c8521b828a98476996e5691807e6407c
3
+ size 3953123973
model-00030-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91e0f451bc9c4d326c6f6bea18e0de462ba6ef28c21d0e50c8c655ca0462ed57
3
+ size 3852460503
model-00031-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92022dc5c0cc241dc630949e8738362c5285bc38966930607961a668c3240d90
3
+ size 3852460417
model-00032-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9565aec68950dd5c515e164f9fd064cdf5821656590601687620392fc6fa18f
3
+ size 3623879446
model-00033-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7972866ca47f99a166b5fb8054baa9681465bbaf1bf5c89d8bfadb980b5afb
3
+ size 4255113745
model-00034-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eb2dc2117456185e0c978aa75e36d99d5434273aa062fa7c52489ae0e095b3f
3
+ size 3852460455
model-00035-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e002b9f2ffef52862387d06049c310a7bb2b6deb59c5bb52ec46b37749cd235e
3
+ size 5335155738
model-00036-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7df9426982c6cb18512e7776191847c654ec9f05ad358afa89ef95ecd904ee7
3
+ size 3953123979
model-00037-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1d8e1a583ad410042085fd7268c0cd322d14ca23cf1f83c4cdf9e08c60d0564
3
+ size 3852460559
model-00038-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96a25e669f6ad3034e78f1cca3dca26bd0b2141d0bc6ee833eac2dd5e944b4a4
3
+ size 3852460483
model-00039-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e43bee111889089e1e8140652ac1d15c40a8f5c6b207e4235c356bab12c393e5
3
+ size 3623879448
model-00040-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4cf86e3f5cf5ef791978da52952a19d92e6b913745e78435d391af2fe95b0e9
3
+ size 4255113745
model-00041-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d0278469ac7a6f7e855bafeba7e1087cb3d6a93754cdaf497f943a24e9ddd5d
3
+ size 3852460467
model-00104-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84031b9aa13aad7de1e911c7a72d1b898ddf8b17ef4870fc06a731e4f06dd61a
3
+ size 3852460429
model-00105-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12ae970622bff5612ed396c3eac2b41f3db7caff62274721896aeb264bc31314
3
+ size 5335155736
model-00106-of-00106.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e67a0aae2f302660021f245ef8631f085ce7e191407db48ff85a65c7b7bb663
3
+ size 1155013717
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
+ }