Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +1 -0
- README.md +39 -0
- chat_template.jinja +103 -0
- config.json +51 -0
- generation_config.json +10 -0
- model-00001-of-00090.safetensors +3 -0
- model-00003-of-00090.safetensors +3 -0
- model-00004-of-00090.safetensors +3 -0
- model-00005-of-00090.safetensors +3 -0
- model-00009-of-00090.safetensors +3 -0
- model-00011-of-00090.safetensors +3 -0
- model-00012-of-00090.safetensors +3 -0
- model-00017-of-00090.safetensors +3 -0
- model-00019-of-00090.safetensors +3 -0
- model-00021-of-00090.safetensors +3 -0
- model-00024-of-00090.safetensors +3 -0
- model-00025-of-00090.safetensors +3 -0
- model-00031-of-00090.safetensors +3 -0
- model-00032-of-00090.safetensors +3 -0
- model-00033-of-00090.safetensors +3 -0
- model-00034-of-00090.safetensors +3 -0
- model-00036-of-00090.safetensors +3 -0
- model-00037-of-00090.safetensors +3 -0
- model-00038-of-00090.safetensors +3 -0
- model-00039-of-00090.safetensors +3 -0
- model-00040-of-00090.safetensors +3 -0
- model-00041-of-00090.safetensors +3 -0
- model-00044-of-00090.safetensors +3 -0
- model-00045-of-00090.safetensors +3 -0
- model-00048-of-00090.safetensors +3 -0
- model-00052-of-00090.safetensors +3 -0
- model-00053-of-00090.safetensors +3 -0
- model-00056-of-00090.safetensors +3 -0
- model-00057-of-00090.safetensors +3 -0
- model-00058-of-00090.safetensors +3 -0
- model-00059-of-00090.safetensors +3 -0
- model-00064-of-00090.safetensors +3 -0
- model-00065-of-00090.safetensors +3 -0
- model-00070-of-00090.safetensors +3 -0
- model-00072-of-00090.safetensors +3 -0
- model-00073-of-00090.safetensors +3 -0
- model-00078-of-00090.safetensors +3 -0
- model-00079-of-00090.safetensors +3 -0
- model-00080-of-00090.safetensors +3 -0
- model-00081-of-00090.safetensors +3 -0
- model-00084-of-00090.safetensors +3 -0
- model-00085-of-00090.safetensors +3 -0
- model-00089-of-00090.safetensors +3 -0
- special_tokens_map.json +40 -0
- tokenizer.json +3 -0
.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,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-4.5
|
9 |
+
tags:
|
10 |
+
- mlx
|
11 |
+
---
|
12 |
+
|
13 |
+
# sjug/GLM-4.5-MLX-9bit
|
14 |
+
|
15 |
+
This model [sjug/GLM-4.5-MLX-9bit](https://huggingface.co/sjug/GLM-4.5-MLX-9bit) was
|
16 |
+
converted to MLX format from [zai-org/GLM-4.5](https://huggingface.co/zai-org/GLM-4.5)
|
17 |
+
using mlx-lm version **0.26.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("sjug/GLM-4.5-MLX-9bit")
|
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
|
36 |
+
)
|
37 |
+
|
38 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
39 |
+
```
|
chat_template.jinja
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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}
|
17 |
+
<arg_key>{arg-key-1}</arg_key>
|
18 |
+
<arg_value>{arg-value-1}</arg_value>
|
19 |
+
<arg_key>{arg-key-2}</arg_key>
|
20 |
+
<arg_value>{arg-value-2}</arg_value>
|
21 |
+
...
|
22 |
+
</tool_call>{%- endif -%}
|
23 |
+
{%- macro visible_text(content) -%}
|
24 |
+
{%- if content is string -%}
|
25 |
+
{{- content }}
|
26 |
+
{%- elif content is iterable and content is not mapping -%}
|
27 |
+
{%- for item in content -%}
|
28 |
+
{%- if item is mapping and item.type == 'text' -%}
|
29 |
+
{{- item.text }}
|
30 |
+
{%- elif item is string -%}
|
31 |
+
{{- item }}
|
32 |
+
{%- endif -%}
|
33 |
+
{%- endfor -%}
|
34 |
+
{%- else -%}
|
35 |
+
{{- content }}
|
36 |
+
{%- endif -%}
|
37 |
+
{%- endmacro -%}
|
38 |
+
{%- set ns = namespace(last_user_index=-1) %}
|
39 |
+
{%- for m in messages %}
|
40 |
+
{%- if m.role == 'user' %}
|
41 |
+
{% set ns.last_user_index = loop.index0 -%}
|
42 |
+
{%- endif %}
|
43 |
+
{%- endfor %}
|
44 |
+
{% for m in messages %}
|
45 |
+
{%- if m.role == 'user' -%}<|user|>
|
46 |
+
{{ visible_text(m.content) }}
|
47 |
+
{{- '/nothink' if (enable_thinking is defined and not enable_thinking and not visible_text(m.content).endswith("/nothink")) else '' -}}
|
48 |
+
{%- elif m.role == 'assistant' -%}
|
49 |
+
<|assistant|>
|
50 |
+
{%- set reasoning_content = '' %}
|
51 |
+
{%- set content = visible_text(m.content) %}
|
52 |
+
{%- if m.reasoning_content is string %}
|
53 |
+
{%- set reasoning_content = m.reasoning_content %}
|
54 |
+
{%- else %}
|
55 |
+
{%- if '</think>' in content %}
|
56 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
57 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
58 |
+
{%- endif %}
|
59 |
+
{%- endif %}
|
60 |
+
{%- if loop.index0 > ns.last_user_index and reasoning_content -%}
|
61 |
+
{{ '\n<think>' + reasoning_content.strip() + '</think>'}}
|
62 |
+
{%- else -%}
|
63 |
+
{{ '\n<think></think>' }}
|
64 |
+
{%- endif -%}
|
65 |
+
{%- if content.strip() -%}
|
66 |
+
{{ '\n' + content.strip() }}
|
67 |
+
{%- endif -%}
|
68 |
+
{% if m.tool_calls %}
|
69 |
+
{% for tc in m.tool_calls %}
|
70 |
+
{%- if tc.function %}
|
71 |
+
{%- set tc = tc.function %}
|
72 |
+
{%- endif %}
|
73 |
+
{{ '\n<tool_call>' + tc.name }}
|
74 |
+
{% set _args = tc.arguments %}
|
75 |
+
{% for k, v in _args.items() %}
|
76 |
+
<arg_key>{{ k }}</arg_key>
|
77 |
+
<arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>
|
78 |
+
{% endfor %}
|
79 |
+
</tool_call>{% endfor %}
|
80 |
+
{% endif %}
|
81 |
+
{%- elif m.role == 'tool' -%}
|
82 |
+
{%- if m.content is string -%}
|
83 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
84 |
+
{{- '<|observation|>' }}
|
85 |
+
{%- endif %}
|
86 |
+
{{- '\n<tool_response>\n' }}
|
87 |
+
{{- m.content }}
|
88 |
+
{{- '\n</tool_response>' }}
|
89 |
+
{%- else -%}
|
90 |
+
<|observation|>{% for tr in m.content %}
|
91 |
+
|
92 |
+
<tool_response>
|
93 |
+
{{ tr.output if tr.output is defined else tr }}
|
94 |
+
</tool_response>{% endfor -%}
|
95 |
+
{% endif -%}
|
96 |
+
{%- elif m.role == 'system' -%}
|
97 |
+
<|system|>
|
98 |
+
{{ visible_text(m.content) }}
|
99 |
+
{%- endif -%}
|
100 |
+
{%- endfor -%}
|
101 |
+
{%- if add_generation_prompt -%}
|
102 |
+
<|assistant|>{{- '\n<think></think>' if (enable_thinking is defined and not enable_thinking) else '' -}}
|
103 |
+
{%- endif -%}
|
config.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Glm4MoeForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": true,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"eos_token_id": [
|
8 |
+
151329,
|
9 |
+
151336,
|
10 |
+
151338
|
11 |
+
],
|
12 |
+
"first_k_dense_replace": 3,
|
13 |
+
"head_dim": 128,
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 5120,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 12288,
|
18 |
+
"max_position_embeddings": 131072,
|
19 |
+
"model_type": "glm4_moe",
|
20 |
+
"moe_intermediate_size": 1536,
|
21 |
+
"n_group": 1,
|
22 |
+
"n_routed_experts": 160,
|
23 |
+
"n_shared_experts": 1,
|
24 |
+
"norm_topk_prob": true,
|
25 |
+
"num_attention_heads": 96,
|
26 |
+
"num_experts_per_tok": 8,
|
27 |
+
"num_hidden_layers": 92,
|
28 |
+
"num_key_value_heads": 8,
|
29 |
+
"num_nextn_predict_layers": 1,
|
30 |
+
"pad_token_id": 151329,
|
31 |
+
"partial_rotary_factor": 0.5,
|
32 |
+
"quantization": {
|
33 |
+
"group_size": 32,
|
34 |
+
"bits": 8
|
35 |
+
},
|
36 |
+
"quantization_config": {
|
37 |
+
"group_size": 32,
|
38 |
+
"bits": 8
|
39 |
+
},
|
40 |
+
"rms_norm_eps": 1e-05,
|
41 |
+
"rope_scaling": null,
|
42 |
+
"rope_theta": 1000000,
|
43 |
+
"routed_scaling_factor": 2.5,
|
44 |
+
"tie_word_embeddings": false,
|
45 |
+
"topk_group": 1,
|
46 |
+
"torch_dtype": "bfloat16",
|
47 |
+
"transformers_version": "4.54.0",
|
48 |
+
"use_cache": true,
|
49 |
+
"use_qk_norm": true,
|
50 |
+
"vocab_size": 151552
|
51 |
+
}
|
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.54.0"
|
10 |
+
}
|
model-00001-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c9fddc82c31d007499c4755eed47928619703699fd53fe4bb41db4b3affc8d0
|
3 |
+
size 4954712391
|
model-00003-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5e838427be1bb6af81b9dfb07e0ca599b85d4b7949720e8b139fa0d1b9a4e094
|
3 |
+
size 4428322532
|
model-00004-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a91bf3c5bedc836b13ec4207cf5eb74f3eea6091a8ff44d8c1b8a4555492c1bd
|
3 |
+
size 4428322548
|
model-00005-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fc0fd6ffd1a3ef4ac850207708d21a48f6f3fc3c3448dc707fb2fb3f1e3b97d
|
3 |
+
size 4428322540
|
model-00009-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2edef8ea0fa869900e1b2dcd565021c635a807497f53390ab6ad14764d71b2cd
|
3 |
+
size 4428322587
|
model-00011-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f1111972ac5dbbb46e0cb9086400e18d4b0bd58de9df3829ac004b0d72a3f18d
|
3 |
+
size 4428322555
|
model-00012-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:55e4efe03b6f456135c6314ffe3da9c1403052d6d058c5c6374f7a073c3651f7
|
3 |
+
size 4428322567
|
model-00017-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:33cf073ca14a01827ea33eea7ed868285eff819dec12f1ad9fb1cb57a4ce0d46
|
3 |
+
size 4428322583
|
model-00019-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f7ebe675c1cdac9e21116056ee1219ff01d0269a23164c1887e2e1b6c2f4349f
|
3 |
+
size 4428322583
|
model-00021-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:333b37d0b190720ef41be7a35a86cf5ee637c11b4a0f11295176b304e1053f09
|
3 |
+
size 4428322583
|
model-00024-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6a7d9dc05e17d7efdae1f734f6ceaadf87366f853df827445abf5fddaaa06a84
|
3 |
+
size 4428322567
|
model-00025-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:edda667ef0e139c312553f5b4cfaeecc30630cd32ab0f18400f31817e03aabf7
|
3 |
+
size 4428322583
|
model-00031-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfc9bb74da1bd05055ce1b892336d4a60a85e039310c1e0ad13b763ac6eabfcf
|
3 |
+
size 4428322577
|
model-00032-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad3f8dedb731d9c1d112699ff6af7e87715a8c80de7d6d7adc2bd9218f90af43
|
3 |
+
size 4428322577
|
model-00033-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32adac83ea8bfe2140346d0bbd49474b721f66961b0e6520753f61f6a3725d30
|
3 |
+
size 4428322583
|
model-00034-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef96b4fbf6ee9e129e5002ca8258dce4fd93b7215becf66614dc1b55fa5db11e
|
3 |
+
size 4428322569
|
model-00036-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7afa32e6b637c808888a380a94fcc6e2f245c70358e872377fb32ce2daff8109
|
3 |
+
size 4428322581
|
model-00037-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:943f697e0325a953358c642ccb7bef68b03f4f08a1b333160289f87e4e245fd0
|
3 |
+
size 4428322531
|
model-00038-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:293266e2e07c27d67ddf8b4c57e0c3b5b685b246b6557ecb9647ed8af5599179
|
3 |
+
size 4428322583
|
model-00039-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aba2009504e0fd6695600de6453d699854772bf3c56bf5680f5c4a2a7add2069
|
3 |
+
size 4428322583
|
model-00040-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:818c03a384057c4257e9ae85ab2973c8de621a4d387fbbcdd4609c2f1571d77b
|
3 |
+
size 4428322583
|
model-00041-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:576a215e5b87482b97efafb00e446559bbec00fc5586d3a3b58271597aff1115
|
3 |
+
size 4428322551
|
model-00044-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b324460965fc140f7ab6d99a161a9fddcd353cb5f3c3d3033484d267de7c48d3
|
3 |
+
size 4428322587
|
model-00045-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68f70a410ff7314920e7eb713c47c00638cdebaaf90bb19b2b59baceef2040d1
|
3 |
+
size 4428322561
|
model-00048-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6c48a15999b5d2a98fd001a527cee3a5be87543e423b7f5dc686edd623961092
|
3 |
+
size 4428322579
|
model-00052-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fa2c21e97ba79bebbd79dcf026dca0517617f596541d6e447af181d4716c846
|
3 |
+
size 4428322583
|
model-00053-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:11450d28b7e6244070435b0c890a9b2094adfe9c5b3d6a6b700f2c3831863aad
|
3 |
+
size 4428322545
|
model-00056-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c6fde9243cc664fd731b3dfe4bc5725bde3e8ae58b8380449d47b68ff423357
|
3 |
+
size 4428322583
|
model-00057-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7638c5d9653e755d3280ca7c9ab5675b4685eacd7afb609d2861dea216bd4fb7
|
3 |
+
size 4428322583
|
model-00058-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3cbfa05f47a516b120a187a723d2fac4b38870334dcc70441aa9ffe68e57741
|
3 |
+
size 4428322579
|
model-00059-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:30d325daba917f7dc8235ce2e1d198bd82aaff29c2483103b73af5531f91e0cc
|
3 |
+
size 4428322581
|
model-00064-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69d488ef9d957dcc24794feddedd4cc78e509f4b994e21532bf7480dd2b626ea
|
3 |
+
size 4428322581
|
model-00065-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c64ed9b3b6106a123fe6373c8c2d275d6b5a3cbc60ed6eb801bc031580edb280
|
3 |
+
size 4428322587
|
model-00070-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52f33277cb89be8a7c7d66e5f1276c0692ec44e93a3b2e8d79547885bbbf6b1a
|
3 |
+
size 4428322587
|
model-00072-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a28a1de376e52de4f49e02581f5ec3ca1552f3ecac1465b67b50437c4c223a8
|
3 |
+
size 4428322583
|
model-00073-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4554c9cbe657c9267aff1a60e6354f5ec0bd925cd5688f4c4235291fb0244fb5
|
3 |
+
size 4428322587
|
model-00078-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:39dc65abdd9fab0621b99ced713d88c2d95bd1ded8c18dd4f4943d2d85f89d17
|
3 |
+
size 4428322587
|
model-00079-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:339a275d0f0e89bf090ce804318b398f4b4f7b7fcf8c54348c73ef5126d71ca3
|
3 |
+
size 4428322579
|
model-00080-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f854cafc4c10fa98a2e7fc09c5461fea643d92355627df7069acd9455cdec9b5
|
3 |
+
size 4428322579
|
model-00081-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b7a1c55a363dad7a056b6d365e2e430521a123ea1e71385158435cdaf6ddbf94
|
3 |
+
size 4428322583
|
model-00084-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:464adc444b7319ccf8d5247bf00929bb7ede84047aeb88a1e89d160bdeea103b
|
3 |
+
size 4428322579
|
model-00085-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:66aaab6c49a68c629411d9c517b50536ce75ee0cb12489d5bc56a65ef3ff5336
|
3 |
+
size 4428322561
|
model-00089-of-00090.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a22903eb0c121ea6d1cd5f25368eb8627514256ed91ea1859c43d1d851bdad41
|
3 |
+
size 4428322569
|
special_tokens_map.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"/nothink"
|
25 |
+
],
|
26 |
+
"eos_token": {
|
27 |
+
"content": "<|endoftext|>",
|
28 |
+
"lstrip": false,
|
29 |
+
"normalized": false,
|
30 |
+
"rstrip": false,
|
31 |
+
"single_word": false
|
32 |
+
},
|
33 |
+
"pad_token": {
|
34 |
+
"content": "<|endoftext|>",
|
35 |
+
"lstrip": false,
|
36 |
+
"normalized": false,
|
37 |
+
"rstrip": false,
|
38 |
+
"single_word": false
|
39 |
+
}
|
40 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bda8e2146c3bb7b7e0fc96dcc4f0aeff041c6c27952e3ace0665663ebff346ba
|
3 |
+
size 19970700
|