cs2764 commited on
Commit
393b542
·
verified ·
1 Parent(s): 79980eb

Add files using upload-large-folder tool

Browse files
Files changed (48) hide show
  1. .cache/._huggingface +0 -0
  2. .gitattributes +1 -0
  3. README.md +54 -0
  4. chat_template.jinja +86 -0
  5. config.json +53 -0
  6. generation_config.json +10 -0
  7. model-00001-of-00039.safetensors +3 -0
  8. model-00002-of-00039.safetensors +3 -0
  9. model-00003-of-00039.safetensors +3 -0
  10. model-00004-of-00039.safetensors +3 -0
  11. model-00005-of-00039.safetensors +3 -0
  12. model-00006-of-00039.safetensors +3 -0
  13. model-00007-of-00039.safetensors +3 -0
  14. model-00008-of-00039.safetensors +3 -0
  15. model-00009-of-00039.safetensors +3 -0
  16. model-00010-of-00039.safetensors +3 -0
  17. model-00011-of-00039.safetensors +3 -0
  18. model-00012-of-00039.safetensors +3 -0
  19. model-00013-of-00039.safetensors +3 -0
  20. model-00014-of-00039.safetensors +3 -0
  21. model-00015-of-00039.safetensors +3 -0
  22. model-00016-of-00039.safetensors +3 -0
  23. model-00017-of-00039.safetensors +3 -0
  24. model-00018-of-00039.safetensors +3 -0
  25. model-00019-of-00039.safetensors +3 -0
  26. model-00020-of-00039.safetensors +3 -0
  27. model-00021-of-00039.safetensors +3 -0
  28. model-00022-of-00039.safetensors +3 -0
  29. model-00023-of-00039.safetensors +3 -0
  30. model-00024-of-00039.safetensors +3 -0
  31. model-00025-of-00039.safetensors +3 -0
  32. model-00026-of-00039.safetensors +3 -0
  33. model-00027-of-00039.safetensors +3 -0
  34. model-00028-of-00039.safetensors +3 -0
  35. model-00029-of-00039.safetensors +3 -0
  36. model-00030-of-00039.safetensors +3 -0
  37. model-00031-of-00039.safetensors +3 -0
  38. model-00032-of-00039.safetensors +3 -0
  39. model-00033-of-00039.safetensors +3 -0
  40. model-00034-of-00039.safetensors +3 -0
  41. model-00035-of-00039.safetensors +3 -0
  42. model-00036-of-00039.safetensors +3 -0
  43. model-00037-of-00039.safetensors +3 -0
  44. model-00038-of-00039.safetensors +3 -0
  45. model-00039-of-00039.safetensors +3 -0
  46. model.safetensors.index.json +0 -0
  47. tokenizer.json +3 -0
  48. tokenizer_config.json +64 -0
.cache/._huggingface ADDED
Binary file (4.1 kB). View file
 
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: Ex0bit/GLM-4.7-PRISM
4
+ model_name: Elbaz-GLM-4.7-PRISM
5
+ tags:
6
+ - abliteration
7
+ - SOTA Abliteration Pipeline - PRISM
8
+ - glm
9
+ - glm4_moe
10
+ - quantized
11
+ - finetuned
12
+ - uncensored
13
+ - abliterated
14
+ - mlx
15
+ - mlx-my-repo
16
+ language:
17
+ - en
18
+ - zh
19
+ library_name: transformers
20
+ pipeline_tag: text-generation
21
+ ---
22
+
23
+ # cs2764/GLM-4.7-PRISM-mlx-4Bit
24
+
25
+ The Model [cs2764/GLM-4.7-PRISM-mlx-4Bit](https://huggingface.co/cs2764/GLM-4.7-PRISM-mlx-4Bit) was converted to MLX format from [Ex0bit/GLM-4.7-PRISM](https://huggingface.co/Ex0bit/GLM-4.7-PRISM) using mlx-lm version **0.30.4**.
26
+
27
+ ## Quantization Details
28
+
29
+ This model was converted with the following quantization settings:
30
+
31
+ - **Quantization Strategy**: 4-bit quantization
32
+ - **Average bits per weight**: 4.502
33
+
34
+ ## Use with mlx
35
+
36
+ ```bash
37
+ pip install mlx-lm
38
+ ```
39
+
40
+ ```python
41
+ from mlx_lm import load, generate
42
+
43
+ model, tokenizer = load("cs2764/GLM-4.7-PRISM-mlx-4Bit")
44
+
45
+ prompt="hello"
46
+
47
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
48
+ messages = [{"role": "user", "content": prompt}]
49
+ prompt = tokenizer.apply_chat_template(
50
+ messages, tokenize=False, add_generation_prompt=True
51
+ )
52
+
53
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
54
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ <|system|>
4
+ # Tools
5
+
6
+ You may call one or more functions to assist with the user query.
7
+
8
+ You are provided with function signatures within <tools></tools> XML tags:
9
+ <tools>
10
+ {% for tool in tools %}
11
+ {{ tool | tojson(ensure_ascii=False) }}
12
+ {% endfor %}
13
+ </tools>
14
+
15
+ For each function call, output the function name and arguments within the following XML format:
16
+ <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 -%}
17
+ {%- macro visible_text(content) -%}
18
+ {%- if content is string -%}
19
+ {{- content }}
20
+ {%- elif content is iterable and content is not mapping -%}
21
+ {%- for item in content -%}
22
+ {%- if item is mapping and item.type == 'text' -%}
23
+ {{- item.text }}
24
+ {%- elif item is string -%}
25
+ {{- item }}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {%- else -%}
29
+ {{- content }}
30
+ {%- endif -%}
31
+ {%- endmacro -%}
32
+ {%- set ns = namespace(last_user_index=-1) %}
33
+ {%- for m in messages %}
34
+ {%- if m.role == 'user' %}
35
+ {% set ns.last_user_index = loop.index0 -%}
36
+ {%- endif %}
37
+ {%- endfor %}
38
+ {% for m in messages %}
39
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
40
+ {%- elif m.role == 'assistant' -%}
41
+ <|assistant|>
42
+ {%- set reasoning_content = '' %}
43
+ {%- set content = visible_text(m.content) %}
44
+ {%- if m.reasoning_content is string %}
45
+ {%- set reasoning_content = m.reasoning_content %}
46
+ {%- else %}
47
+ {%- if '</think>' in content %}
48
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
49
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content -%}
53
+ {{ '<think>' + reasoning_content.strip() + '</think>'}}
54
+ {%- else -%}
55
+ {{ '</think>' }}
56
+ {%- endif -%}
57
+ {%- if content.strip() -%}
58
+ {{ content.strip() }}
59
+ {%- endif -%}
60
+ {% if m.tool_calls %}
61
+ {% for tc in m.tool_calls %}
62
+ {%- if tc.function %}
63
+ {%- set tc = tc.function %}
64
+ {%- endif %}
65
+ {{- '<tool_call>' + tc.name -}}
66
+ {% 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 %}
67
+ {% endif %}
68
+ {%- elif m.role == 'tool' -%}
69
+ {%- if m.content is string -%}
70
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
71
+ {{- '<|observation|>' }}
72
+ {%- endif %}
73
+ {{- '<tool_response>' }}
74
+ {{- m.content }}
75
+ {{- '</tool_response>' }}
76
+ {%- else -%}
77
+ <|observation|>{% for tr in m.content %}
78
+ <tool_response>{{ tr.output if tr.output is defined else tr }}</tool_response>{% endfor -%}
79
+ {% endif -%}
80
+ {%- elif m.role == 'system' -%}
81
+ <|system|>{{ visible_text(m.content) }}
82
+ {%- endif -%}
83
+ {%- endfor -%}
84
+ {%- if add_generation_prompt -%}
85
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
86
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4MoeForCausalLM"
4
+ ],
5
+ "attention_bias": true,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": [
9
+ 151329,
10
+ 151336,
11
+ 151338
12
+ ],
13
+ "first_k_dense_replace": 3,
14
+ "head_dim": 128,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 5120,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 12288,
19
+ "max_position_embeddings": 202752,
20
+ "model_type": "glm4_moe",
21
+ "moe_intermediate_size": 1536,
22
+ "n_group": 1,
23
+ "n_routed_experts": 160,
24
+ "n_shared_experts": 1,
25
+ "norm_topk_prob": true,
26
+ "num_attention_heads": 96,
27
+ "num_experts_per_tok": 8,
28
+ "num_hidden_layers": 92,
29
+ "num_key_value_heads": 8,
30
+ "num_nextn_predict_layers": 0,
31
+ "pad_token_id": 151329,
32
+ "partial_rotary_factor": 0.5,
33
+ "quantization": {
34
+ "group_size": 64,
35
+ "bits": 4,
36
+ "mode": "affine"
37
+ },
38
+ "quantization_config": {
39
+ "group_size": 64,
40
+ "bits": 4,
41
+ "mode": "affine"
42
+ },
43
+ "rms_norm_eps": 1e-05,
44
+ "rope_scaling": null,
45
+ "rope_theta": 1000000,
46
+ "routed_scaling_factor": 2.5,
47
+ "tie_word_embeddings": false,
48
+ "topk_group": 1,
49
+ "transformers_version": "4.57.3",
50
+ "use_cache": true,
51
+ "use_qk_norm": true,
52
+ "vocab_size": 151552
53
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 151329,
5
+ 151336,
6
+ 151338
7
+ ],
8
+ "pad_token_id": 151329,
9
+ "transformers_version": "4.57.3"
10
+ }
model-00001-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9e28e0ac29735a6c8a96c540fc0edc107db8b942c7f490d1f2557e21cb07b4
3
+ size 5360926927
model-00002-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:851c1358a6c479b8338f9b7278d61ce46e588480eb9fd429fd45884649bfd904
3
+ size 5268767156
model-00003-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:193eb994f48724e37149c2f32affb2eea028ed056f6328117ab5517d99539bdb
3
+ size 5137805027
model-00004-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd2a287f688a911888fe444679d6d5ff3f41d40a2a02914f67517801033644f3
3
+ size 5229445502
model-00005-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ece5ba7d49cbe87a52f262346a873d9feb0be81483c47c204b12508dc17b2977
3
+ size 5137805040
model-00006-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62c3df1f8b54192fa3775eb61661b9d5110cb391bc168e34f12ac9872672f53e
3
+ size 5137805100
model-00007-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d8a5cf4192716cabfd851fdc50f1c04e7dee2064fc79c8f6587ecd4aa688ad5
3
+ size 5229445466
model-00008-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3ae5ac34ea36616181b273cad4a00b698bd4a900abe5b669f6f7b0381bd00d4
3
+ size 5137805116
model-00009-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bc817951ca515cf47ea5ac35bebe448db9901fc9893a4063694bb96d7382ec0
3
+ size 5137805108
model-00010-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bef060c00fd094db55f78f5a22162c79e9e440926b5dbb0bdc90b25a87b0a2b1
3
+ size 5229445506
model-00011-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52ff86532acb535978a97f521897a7c81b263cd2927fa0615b9bdb32f0ce0416
3
+ size 5137805052
model-00012-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d66dcf5f62b859efc77dcafc3e261309ef0a2ad0fe40ad1f77389ba2229f55
3
+ size 5137805146
model-00013-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4546bacc8185d1f6b77bc03a6c7dbffe2cde5993c7e9764db987520cdbbf0e03
3
+ size 5229445488
model-00014-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f0ef3c4f9c48228a0d6cbbead141702cf77479ad0c5560b5f7cfd8282275843
3
+ size 5137805116
model-00015-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e2d62c83d66a4dc56a0f44a61b5c8c0c8b98cf30b868a33098fd73eeb36de60
3
+ size 5137805104
model-00016-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1bedb1176bd816fbbf7b9c3250d2e7eca8913b303fc769588e335a6f6bf3a04
3
+ size 5229445468
model-00017-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9eac035010547ada0cc6b9a8a757d59446268b6204e7a9d0b51dcd2f2d243e79
3
+ size 5137805078
model-00018-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9e66aed10de05cc1af558a7c7371cdc05e02d5a978a3033c693ae8fbbc288ea
3
+ size 5137805108
model-00019-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecfa50af9cc844cb379b4534329143e34c2a7888a9841e15e93fd1d9f858bf50
3
+ size 5229445466
model-00020-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73a59e368edc7b50d484869f867b51c3b2d2cb85e6cb6ae54989e335882172d6
3
+ size 5137805112
model-00021-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca0c8038951e323082c8134ba2bc37cc03f37161a4520c4ac1383f8b52565fec
3
+ size 5137805076
model-00022-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dda634c13b337e0669c347362833eac39d0c68103aa114b468530291a9448bb
3
+ size 5229445422
model-00023-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11228fcf9ef93a248c96d0178432591bdc9467950328d890efcfd47a02651a98
3
+ size 5137805120
model-00024-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ded4dabced1201425b5c24fea9ecaf37bf8cc04b73326031be3920456838f30a
3
+ size 5137805152
model-00025-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1a657dba2f483f3bc1718664b978dabd2ff701953e5c2e34810a2ba02906bf7
3
+ size 5229445410
model-00026-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae31453bf8349e10643b6ae679eab2b3bc86391cc06dd627dfe032f439636c3f
3
+ size 5137805084
model-00027-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c143df01a75df46111a9b4842c1e41c6931b23d38fcece6c3479615d1d5778c5
3
+ size 5137805090
model-00028-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3df7ed08d516a2bccba3063cdead7e146101e1a7fb04706a007bf2fea2484679
3
+ size 5229445482
model-00029-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0b0c26b89d6531fb56526494a39e94d62ae4f5acb4406898bcb2bb479bcfac3
3
+ size 5137805080
model-00030-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:352bf8cff0996fced6e287f1d3f5a73e2da750bf6c643bb699d5932d7f34fa87
3
+ size 5137805150
model-00031-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3aa558934ccbf7bc41091fc534dd2702f8bcebbd21493dd44401581607d4684d
3
+ size 5229445498
model-00032-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c1a8e35eae711821e3fc4d2c3f6327ac34407617ea9768853bc09360d3551cc
3
+ size 5137805092
model-00033-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd78b549108b19d57b32ea42c13382eb16d5892cc0c8a1970c169a67ee781b29
3
+ size 5137805098
model-00034-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61e90f5cfd8006663f9064468ef439915bc5a3698cb8c2a5951ea8540ac70ddd
3
+ size 5229445500
model-00035-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66f60bec6963fe4769678e0e5df731f8c734f121e2fa16cc8f411811ceecd005
3
+ size 5137805124
model-00036-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:481674dafb0678878f1b6db32978d21da1c751269700154f7ed78c8979c93cd4
3
+ size 5137805150
model-00037-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e711d0cdedb56edb831af3aadc2f71d5f7585fff06ccc66a16e7d3ec8ebfc541
3
+ size 5229445492
model-00038-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e93892b4c72d15a6814ecea992da80b9aa8e1c8e745701346d6b311cc804d16b
3
+ size 5137805114
model-00039-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72b02f76fb66b429f137e129d81ece21379796cacd1555871dbd8a4e1342dac5
3
+ size 1866990890
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0ccf2252fe9cd23ada23a829ec409aab397dbd2ac4f372d3a1a23d1f7c72d6b
3
+ size 19970686
tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "[MASK]",
5
+ "[gMASK]",
6
+ "[sMASK]",
7
+ "<sop>",
8
+ "<eop>",
9
+ "<|system|>",
10
+ "<|user|>",
11
+ "<|assistant|>",
12
+ "<|observation|>",
13
+ "<|begin_of_image|>",
14
+ "<|end_of_image|>",
15
+ "<|begin_of_video|>",
16
+ "<|end_of_video|>",
17
+ "<|begin_of_audio|>",
18
+ "<|end_of_audio|>",
19
+ "<|begin_of_transcription|>",
20
+ "<|end_of_transcription|>",
21
+ "<|code_prefix|>",
22
+ "<|code_middle|>",
23
+ "<|code_suffix|>",
24
+ "<think>",
25
+ "</think>"
26
+ ],
27
+ "backend": "tokenizers",
28
+ "clean_up_tokenization_spaces": false,
29
+ "do_lower_case": false,
30
+ "eos_token": "<|endoftext|>",
31
+ "extra_special_tokens": [
32
+ "<|endoftext|>",
33
+ "[MASK]",
34
+ "[gMASK]",
35
+ "[sMASK]",
36
+ "<sop>",
37
+ "<eop>",
38
+ "<|system|>",
39
+ "<|user|>",
40
+ "<|assistant|>",
41
+ "<|observation|>",
42
+ "<|begin_of_image|>",
43
+ "<|end_of_image|>",
44
+ "<|begin_of_video|>",
45
+ "<|end_of_video|>",
46
+ "<|begin_of_audio|>",
47
+ "<|end_of_audio|>",
48
+ "<|begin_of_transcription|>",
49
+ "<|end_of_transcription|>",
50
+ "<|code_prefix|>",
51
+ "<|code_middle|>",
52
+ "<|code_suffix|>",
53
+ "<think>",
54
+ "</think>"
55
+ ],
56
+ "is_local": true,
57
+ "model_max_length": 128000,
58
+ "model_specific_special_tokens": {},
59
+ "pad_token": "<|endoftext|>",
60
+ "padding_side": "left",
61
+ "remove_space": false,
62
+ "tokenizer_class": "TokenizersBackend",
63
+ "tool_parser_type": "glm47"
64
+ }