Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- .mdl +0 -0
- .msc +0 -0
- .mv +1 -0
- README.md +105 -0
- chat_template.jinja +103 -0
- config.json +60 -0
- configuration.json +1 -0
- model-00001-of-00015.safetensors +3 -0
- model-00002-of-00015.safetensors +3 -0
- model-00003-of-00015.safetensors +3 -0
- model-00004-of-00015.safetensors +3 -0
- model-00005-of-00015.safetensors +3 -0
- model-00006-of-00015.safetensors +3 -0
- model-00007-of-00015.safetensors +3 -0
- model-00008-of-00015.safetensors +3 -0
- model-00009-of-00015.safetensors +3 -0
- model-00010-of-00015.safetensors +3 -0
- model-00011-of-00015.safetensors +3 -0
- model-00012-of-00015.safetensors +3 -0
- model-00013-of-00015.safetensors +3 -0
- model-00014-of-00015.safetensors +3 -0
- model-00015-of-00015.safetensors +3 -0
- model.safetensors.index.json +0 -0
- tokenizer.json +3 -0
- tokenizer_config.json +325 -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
|
.mdl
ADDED
Binary file (61 Bytes). View file
|
|
.msc
ADDED
Binary file (1.82 kB). View file
|
|
.mv
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Revision:master,CreatedAt:1753847623
|
README.md
ADDED
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: transformers
|
3 |
+
pipeline_tag: text-generation
|
4 |
+
tags:
|
5 |
+
- glm4_moe
|
6 |
+
- GPTQ
|
7 |
+
- Int4-Int8Mix
|
8 |
+
- 量化修复
|
9 |
+
- vLLM
|
10 |
+
base_model:
|
11 |
+
- ZhipuAI/GLM-4.5-Air
|
12 |
+
base_model_relation: quantized
|
13 |
+
---
|
14 |
+
# GLM-4.5-Air-GPTQ-Int4-Int8Mix
|
15 |
+
基础型 [ZhipuAI/GLM-4.5-Air](https://www.modelscope.cn/models/ZhipuAI/GLM-4.5-Air)
|
16 |
+
|
17 |
+
|
18 |
+
### 【Vllm 单机8卡启动命令】
|
19 |
+
<i>注: 启动该模型一定要跟`--enable-expert-parallel` ,否则其专家张量TP整除除不尽;即使是2卡也需要。 </i>
|
20 |
+
```
|
21 |
+
$CONTEXT_LENGTH=32768
|
22 |
+
|
23 |
+
vllm serve \
|
24 |
+
tclf90/GLM-4.5-Air-GPTQ-Int4-Int8Mix \
|
25 |
+
--served-model-name GLM-4.5-Air-GPTQ-Int4-Int8Mix \
|
26 |
+
--enable-expert-parallel \
|
27 |
+
--swap-space 16 \
|
28 |
+
--max-num-seqs 512 \
|
29 |
+
--max-model-len $CONTEXT_LENGTH \
|
30 |
+
--max-seq-len-to-capture $CONTEXT_LENGTH \
|
31 |
+
--gpu-memory-utilization 0.9 \
|
32 |
+
--tensor-parallel-size 8 \
|
33 |
+
--trust-remote-code \
|
34 |
+
--disable-log-requests \
|
35 |
+
--host 0.0.0.0 \
|
36 |
+
--port 8000
|
37 |
+
```
|
38 |
+
|
39 |
+
### 【依赖】
|
40 |
+
|
41 |
+
```
|
42 |
+
vllm==0.10.0
|
43 |
+
```
|
44 |
+
|
45 |
+
### 【模型更新日期】
|
46 |
+
```
|
47 |
+
2025-07-30
|
48 |
+
1. 首次commit
|
49 |
+
```
|
50 |
+
|
51 |
+
### 【模型列表】
|
52 |
+
|
53 |
+
| 文件大小 | 最近更新时间 |
|
54 |
+
|--------|--------------|
|
55 |
+
| `67GB` | `2025-07-30` |
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
### 【模型下载】
|
60 |
+
|
61 |
+
```python
|
62 |
+
from modelscope import snapshot_download
|
63 |
+
snapshot_download('tclf90/GLM-4.5-Air-GPTQ-Int4-Int8Mix', cache_dir="本地路径")
|
64 |
+
```
|
65 |
+
|
66 |
+
|
67 |
+
### 【介绍】
|
68 |
+
|
69 |
+
# GLM-4.5
|
70 |
+
|
71 |
+
<div align="center">
|
72 |
+
<img src=https://raw.githubusercontent.com/zai-org/GLM-4.5/refs/heads/main/resources/logo.svg width="15%"/>
|
73 |
+
</div>
|
74 |
+
<p align="center">
|
75 |
+
👋 加入我们的<a href="https://github.com/zai-org/GLM-4.5/blob/main/resources/WECHAT.md" target="_blank"> 微信群 </a>。
|
76 |
+
<br>
|
77 |
+
📖 查看GLM-4.5<a href="https://z.ai/blog/glm-4.5" target="_blank"> 技术博客 </a>。
|
78 |
+
<br>
|
79 |
+
📍 在<a href="https://docs.bigmodel.cn/cn/guide/models/text/glm-4.5"> 智谱AI开放平台 </a>上使用GLM-4.5 API服务。
|
80 |
+
<br>
|
81 |
+
👉 一键体验 <a href="https://chat.z.ai" >GLM-4.5 </a>。
|
82 |
+
</p>
|
83 |
+
|
84 |
+
## 模型介绍
|
85 |
+
|
86 |
+
**GLM-4.5** 系列模型是专为智能体设计的基础模型。GLM-4.5拥有 **3550** 亿总参数量,其中 **320** 亿活跃参数;GLM-4.5-Air采用更紧凑的设计,拥有
|
87 |
+
**1060** 亿总参数量,其中 **120** 亿活跃参数。GLM-4.5模型统一了推理、编码和智能体能力,以满足智能体应用的复杂需求。
|
88 |
+
|
89 |
+
GLM-4.5 和 GLM-4.5-Air 都是混合推理模型,提供两种模式:用于复杂推理和工具使用的思考模式,以及用于即时响应的非思考模式。
|
90 |
+
|
91 |
+
我们已开源了 GLM-4.5 和 GLM-4.5-Air 的基础模型、混合推理模型以及混合推理模型的FP8版本。它们采用MIT开源许可证发布,可用于商业用途和二次开发。
|
92 |
+
|
93 |
+
在我们对12项行业标准基准的全面评估中,GLM-4.5表现卓越,得分 **63.2**,在所有专有和开源模型中排名**第3**
|
94 |
+
。值得注意的是,GLM-4.5-Air在保持优异效率的同时,仍取得了 **59.8** 的竞争性成绩。
|
95 |
+
|
96 |
+

|
97 |
+
|
98 |
+
如需了解更多评估结果、展示案例和技术细节,请访问我们的 [技术博客](https://z.ai/blog/glm-4.5)。技术报告将很快发布。
|
99 |
+
|
100 |
+
模型代码、工具解析器和推理解析器可在 [transformers](https://github.com/huggingface/transformers/tree/main/src/transformers/models/glm4_moe)、 [vLLM](https://github.com/vllm-project/vllm/blob/main/vllm/model_executor/models/glm4_moe_mtp.py)
|
101 |
+
和 [SGLang](https://github.com/sgl-project/sglang/blob/main/python/sglang/srt/models/glm4_moe.py) 的实现中找到。
|
102 |
+
|
103 |
+
## 快速开始
|
104 |
+
|
105 |
+
请参考我们的[github](https://github.com/zai-org/GLM-4.5)项目。
|
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,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name_or_path": "tclf90/GLM-4.5-Air-GPTQ-Int4-Int8Mix",
|
3 |
+
"architectures": [
|
4 |
+
"Glm4MoeForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": true,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"pad_token_id": 151329,
|
9 |
+
"eos_token_id": [
|
10 |
+
151329,
|
11 |
+
151336,
|
12 |
+
151338
|
13 |
+
],
|
14 |
+
"head_dim": 128,
|
15 |
+
"hidden_act": "silu",
|
16 |
+
"hidden_size": 4096,
|
17 |
+
"partial_rotary_factor": 0.5,
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 11264,
|
20 |
+
"max_position_embeddings": 131072,
|
21 |
+
"model_type": "glm4_moe",
|
22 |
+
"moe_intermediate_size": 1408,
|
23 |
+
"norm_topk_prob": true,
|
24 |
+
"num_attention_heads": 96,
|
25 |
+
"n_group": 1,
|
26 |
+
"topk_group": 1,
|
27 |
+
"n_routed_experts": 128,
|
28 |
+
"n_shared_experts": 1,
|
29 |
+
"routed_scaling_factor": 1.0,
|
30 |
+
"num_experts_per_tok": 8,
|
31 |
+
"first_k_dense_replace": 1,
|
32 |
+
"num_hidden_layers": 46,
|
33 |
+
"num_key_value_heads": 8,
|
34 |
+
"rms_norm_eps": 1e-05,
|
35 |
+
"rope_scaling": null,
|
36 |
+
"rope_theta": 1000000,
|
37 |
+
"num_nextn_predict_layers": 1,
|
38 |
+
"tie_word_embeddings": false,
|
39 |
+
"torch_dtype": "float16",
|
40 |
+
"transformers_version": "4.54.0",
|
41 |
+
"use_cache": true,
|
42 |
+
"use_qk_norm": false,
|
43 |
+
"vocab_size": 151552,
|
44 |
+
"quantization_config": {
|
45 |
+
"quant_method": "gptq_marlin",
|
46 |
+
"bits": 4,
|
47 |
+
"group_size": 128,
|
48 |
+
"sym": true,
|
49 |
+
"desc_act": false,
|
50 |
+
"dynamic": {
|
51 |
+
"-:model.embed_tokens.weight": {},
|
52 |
+
"-:.*shared_experts": {},
|
53 |
+
"-:.*shared_head": {},
|
54 |
+
"-:lm_head.weight": {},
|
55 |
+
"+:model[.]layers[.]([0-4]|4[4-6])[.].*": {
|
56 |
+
"bits": 8
|
57 |
+
}
|
58 |
+
}
|
59 |
+
}
|
60 |
+
}
|
configuration.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"framework":"Pytorch","task":"text-generation"}
|
model-00001-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1e801e5ba362855c9eae5174c9413d6393507f9feab5d8752f296cdded26687
|
3 |
+
size 4996300592
|
model-00002-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c016a9c08a89a576ab46a15c6e0af628343f0249b00eb5056a22d9892309b2c9
|
3 |
+
size 4997241512
|
model-00003-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c2e80b7f452d3dda9d43fe6f188cf2b872d8dcaa8f8e4708d392cda70a30308
|
3 |
+
size 4999482888
|
model-00004-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e44b9d227f7ec156707d44fa8eb13d08d2cf0085c8b571c2e28ebe368af961d
|
3 |
+
size 4998434648
|
model-00005-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b292eeaf08bfe53c8f0d8e4e0f858ad56f6733b2d7b458a14f7931075657c452
|
3 |
+
size 4998449992
|
model-00006-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec1493675971ae6b73f96f234e43714c20c5a8c6090745af3781cb5c6612398c
|
3 |
+
size 4998439232
|
model-00007-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:83d55438ad27a5cf42760f56f3ece76960bc35f29a1450f4b2e1123c52fbdda3
|
3 |
+
size 4998439232
|
model-00008-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4746a72dbc1a7584629f9377d1e985777916108667482dfad64d83dff10b0b7
|
3 |
+
size 4998449992
|
model-00009-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0337c656faad0a6500e2b82d0e5eb3f95111f7b7b02b9f24b8e86a651e426af
|
3 |
+
size 4998439232
|
model-00010-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f143bc8469c5b7f46060d299cb2e4b5370686349598cc1fafc08345545f699de
|
3 |
+
size 4998439224
|
model-00011-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b526125c9a02bc81330bf4ef357b789ac3f20faabe9742ae5f19fc2b94aa027
|
3 |
+
size 4998449992
|
model-00012-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:99d0d6313c5ee25ba0ed3bd85e7ed9bdb5700dcaf72b3673dc172d153c589be1
|
3 |
+
size 4998439240
|
model-00013-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49159948785dbb4b3dd01d1f9377b18fae452098da57db3f8e335ddc63d404c3
|
3 |
+
size 4994983976
|
model-00014-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e430d70f47eaae6ffd0b8896f05dffd4e21ecdca60f3a9c10605570d9d95bc0
|
3 |
+
size 4999508280
|
model-00015-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:03712679108f07582fed478a06d33553a8ec8fed4b7fac08ff3b8859bee668f8
|
3 |
+
size 922342368
|
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:9340665016419c825c4bdabbcc9acc43b7ca2c68ce142724afa829abb1be5efd
|
3 |
+
size 19970699
|
tokenizer_config.json
ADDED
@@ -0,0 +1,325 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"151329": {
|
4 |
+
"content": "<|endoftext|>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"151330": {
|
12 |
+
"content": "[MASK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"151331": {
|
20 |
+
"content": "[gMASK]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"151332": {
|
28 |
+
"content": "[sMASK]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"151333": {
|
36 |
+
"content": "<sop>",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
},
|
43 |
+
"151334": {
|
44 |
+
"content": "<eop>",
|
45 |
+
"lstrip": false,
|
46 |
+
"normalized": false,
|
47 |
+
"rstrip": false,
|
48 |
+
"single_word": false,
|
49 |
+
"special": true
|
50 |
+
},
|
51 |
+
"151335": {
|
52 |
+
"content": "<|system|>",
|
53 |
+
"lstrip": false,
|
54 |
+
"normalized": false,
|
55 |
+
"rstrip": false,
|
56 |
+
"single_word": false,
|
57 |
+
"special": true
|
58 |
+
},
|
59 |
+
"151336": {
|
60 |
+
"content": "<|user|>",
|
61 |
+
"lstrip": false,
|
62 |
+
"normalized": false,
|
63 |
+
"rstrip": false,
|
64 |
+
"single_word": false,
|
65 |
+
"special": true
|
66 |
+
},
|
67 |
+
"151337": {
|
68 |
+
"content": "<|assistant|>",
|
69 |
+
"lstrip": false,
|
70 |
+
"normalized": false,
|
71 |
+
"rstrip": false,
|
72 |
+
"single_word": false,
|
73 |
+
"special": true
|
74 |
+
},
|
75 |
+
"151338": {
|
76 |
+
"content": "<|observation|>",
|
77 |
+
"lstrip": false,
|
78 |
+
"normalized": false,
|
79 |
+
"rstrip": false,
|
80 |
+
"single_word": false,
|
81 |
+
"special": true
|
82 |
+
},
|
83 |
+
"151339": {
|
84 |
+
"content": "<|begin_of_image|>",
|
85 |
+
"lstrip": false,
|
86 |
+
"normalized": false,
|
87 |
+
"rstrip": false,
|
88 |
+
"single_word": false,
|
89 |
+
"special": true
|
90 |
+
},
|
91 |
+
"151340": {
|
92 |
+
"content": "<|end_of_image|>",
|
93 |
+
"lstrip": false,
|
94 |
+
"normalized": false,
|
95 |
+
"rstrip": false,
|
96 |
+
"single_word": false,
|
97 |
+
"special": true
|
98 |
+
},
|
99 |
+
"151341": {
|
100 |
+
"content": "<|begin_of_video|>",
|
101 |
+
"lstrip": false,
|
102 |
+
"normalized": false,
|
103 |
+
"rstrip": false,
|
104 |
+
"single_word": false,
|
105 |
+
"special": true
|
106 |
+
},
|
107 |
+
"151342": {
|
108 |
+
"content": "<|end_of_video|>",
|
109 |
+
"lstrip": false,
|
110 |
+
"normalized": false,
|
111 |
+
"rstrip": false,
|
112 |
+
"single_word": false,
|
113 |
+
"special": true
|
114 |
+
},
|
115 |
+
"151343": {
|
116 |
+
"content": "<|begin_of_audio|>",
|
117 |
+
"lstrip": false,
|
118 |
+
"normalized": false,
|
119 |
+
"rstrip": false,
|
120 |
+
"single_word": false,
|
121 |
+
"special": true
|
122 |
+
},
|
123 |
+
"151344": {
|
124 |
+
"content": "<|end_of_audio|>",
|
125 |
+
"lstrip": false,
|
126 |
+
"normalized": false,
|
127 |
+
"rstrip": false,
|
128 |
+
"single_word": false,
|
129 |
+
"special": true
|
130 |
+
},
|
131 |
+
"151345": {
|
132 |
+
"content": "<|begin_of_transcription|>",
|
133 |
+
"lstrip": false,
|
134 |
+
"normalized": false,
|
135 |
+
"rstrip": false,
|
136 |
+
"single_word": false,
|
137 |
+
"special": true
|
138 |
+
},
|
139 |
+
"151346": {
|
140 |
+
"content": "<|end_of_transcription|>",
|
141 |
+
"lstrip": false,
|
142 |
+
"normalized": false,
|
143 |
+
"rstrip": false,
|
144 |
+
"single_word": false,
|
145 |
+
"special": true
|
146 |
+
},
|
147 |
+
"151347": {
|
148 |
+
"content": "<|code_prefix|>",
|
149 |
+
"lstrip": false,
|
150 |
+
"normalized": false,
|
151 |
+
"rstrip": false,
|
152 |
+
"single_word": false,
|
153 |
+
"special": true
|
154 |
+
},
|
155 |
+
"151348": {
|
156 |
+
"content": "<|code_middle|>",
|
157 |
+
"lstrip": false,
|
158 |
+
"normalized": false,
|
159 |
+
"rstrip": false,
|
160 |
+
"single_word": false,
|
161 |
+
"special": true
|
162 |
+
},
|
163 |
+
"151349": {
|
164 |
+
"content": "<|code_suffix|>",
|
165 |
+
"lstrip": false,
|
166 |
+
"normalized": false,
|
167 |
+
"rstrip": false,
|
168 |
+
"single_word": false,
|
169 |
+
"special": true
|
170 |
+
},
|
171 |
+
"151350": {
|
172 |
+
"content": "<think>",
|
173 |
+
"lstrip": false,
|
174 |
+
"normalized": false,
|
175 |
+
"rstrip": false,
|
176 |
+
"single_word": false,
|
177 |
+
"special": false
|
178 |
+
},
|
179 |
+
"151351": {
|
180 |
+
"content": "</think>",
|
181 |
+
"lstrip": false,
|
182 |
+
"normalized": false,
|
183 |
+
"rstrip": false,
|
184 |
+
"single_word": false,
|
185 |
+
"special": false
|
186 |
+
},
|
187 |
+
"151352": {
|
188 |
+
"content": "<tool_call>",
|
189 |
+
"lstrip": false,
|
190 |
+
"normalized": false,
|
191 |
+
"rstrip": false,
|
192 |
+
"single_word": false,
|
193 |
+
"special": false
|
194 |
+
},
|
195 |
+
"151353": {
|
196 |
+
"content": "</tool_call>",
|
197 |
+
"lstrip": false,
|
198 |
+
"normalized": false,
|
199 |
+
"rstrip": false,
|
200 |
+
"single_word": false,
|
201 |
+
"special": false
|
202 |
+
},
|
203 |
+
"151354": {
|
204 |
+
"content": "<tool_response>",
|
205 |
+
"lstrip": false,
|
206 |
+
"normalized": false,
|
207 |
+
"rstrip": false,
|
208 |
+
"single_word": false,
|
209 |
+
"special": false
|
210 |
+
},
|
211 |
+
"151355": {
|
212 |
+
"content": "</tool_response>",
|
213 |
+
"lstrip": false,
|
214 |
+
"normalized": false,
|
215 |
+
"rstrip": false,
|
216 |
+
"single_word": false,
|
217 |
+
"special": false
|
218 |
+
},
|
219 |
+
"151356": {
|
220 |
+
"content": "<arg_key>",
|
221 |
+
"lstrip": false,
|
222 |
+
"normalized": false,
|
223 |
+
"rstrip": false,
|
224 |
+
"single_word": false,
|
225 |
+
"special": false
|
226 |
+
},
|
227 |
+
"151357": {
|
228 |
+
"content": "</arg_key>",
|
229 |
+
"lstrip": false,
|
230 |
+
"normalized": false,
|
231 |
+
"rstrip": false,
|
232 |
+
"single_word": false,
|
233 |
+
"special": false
|
234 |
+
},
|
235 |
+
"151358": {
|
236 |
+
"content": "<arg_value>",
|
237 |
+
"lstrip": false,
|
238 |
+
"normalized": false,
|
239 |
+
"rstrip": false,
|
240 |
+
"single_word": false,
|
241 |
+
"special": false
|
242 |
+
},
|
243 |
+
"151359": {
|
244 |
+
"content": "</arg_value>",
|
245 |
+
"lstrip": false,
|
246 |
+
"normalized": false,
|
247 |
+
"rstrip": false,
|
248 |
+
"single_word": false,
|
249 |
+
"special": false
|
250 |
+
},
|
251 |
+
"151360": {
|
252 |
+
"content": "/nothink",
|
253 |
+
"lstrip": false,
|
254 |
+
"normalized": false,
|
255 |
+
"rstrip": false,
|
256 |
+
"single_word": false,
|
257 |
+
"special": true
|
258 |
+
},
|
259 |
+
"151361": {
|
260 |
+
"content": "<|begin_of_box|>",
|
261 |
+
"lstrip": false,
|
262 |
+
"normalized": false,
|
263 |
+
"rstrip": false,
|
264 |
+
"single_word": false,
|
265 |
+
"special": false
|
266 |
+
},
|
267 |
+
"151362": {
|
268 |
+
"content": "<|end_of_box|>",
|
269 |
+
"lstrip": false,
|
270 |
+
"normalized": false,
|
271 |
+
"rstrip": false,
|
272 |
+
"single_word": false,
|
273 |
+
"special": false
|
274 |
+
},
|
275 |
+
"151363": {
|
276 |
+
"content": "<|image|>",
|
277 |
+
"lstrip": false,
|
278 |
+
"normalized": false,
|
279 |
+
"rstrip": false,
|
280 |
+
"single_word": false,
|
281 |
+
"special": false
|
282 |
+
},
|
283 |
+
"151364": {
|
284 |
+
"content": "<|video|>",
|
285 |
+
"lstrip": false,
|
286 |
+
"normalized": false,
|
287 |
+
"rstrip": false,
|
288 |
+
"single_word": false,
|
289 |
+
"special": false
|
290 |
+
}
|
291 |
+
},
|
292 |
+
"additional_special_tokens": [
|
293 |
+
"<|endoftext|>",
|
294 |
+
"[MASK]",
|
295 |
+
"[gMASK]",
|
296 |
+
"[sMASK]",
|
297 |
+
"<sop>",
|
298 |
+
"<eop>",
|
299 |
+
"<|system|>",
|
300 |
+
"<|user|>",
|
301 |
+
"<|assistant|>",
|
302 |
+
"<|observation|>",
|
303 |
+
"<|begin_of_image|>",
|
304 |
+
"<|end_of_image|>",
|
305 |
+
"<|begin_of_video|>",
|
306 |
+
"<|end_of_video|>",
|
307 |
+
"<|begin_of_audio|>",
|
308 |
+
"<|end_of_audio|>",
|
309 |
+
"<|begin_of_transcription|>",
|
310 |
+
"<|end_of_transcription|>",
|
311 |
+
"<|code_prefix|>",
|
312 |
+
"<|code_middle|>",
|
313 |
+
"<|code_suffix|>",
|
314 |
+
"/nothink"
|
315 |
+
],
|
316 |
+
"clean_up_tokenization_spaces": false,
|
317 |
+
"do_lower_case": false,
|
318 |
+
"eos_token": "<|endoftext|>",
|
319 |
+
"extra_special_tokens": {},
|
320 |
+
"model_max_length": 128000,
|
321 |
+
"pad_token": "<|endoftext|>",
|
322 |
+
"padding_side": "left",
|
323 |
+
"remove_space": false,
|
324 |
+
"tokenizer_class": "PreTrainedTokenizer"
|
325 |
+
}
|