Text Generation
Transformers
Safetensors
English
Chinese
glm_moe_dsa
conversational
Eval Results
fp8
Instructions to use zai-org/GLM-5.3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-5.3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zai-org/GLM-5.3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zai-org/GLM-5.3") model = AutoModelForCausalLM.from_pretrained("zai-org/GLM-5.3", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zai-org/GLM-5.3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zai-org/GLM-5.3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zai-org/GLM-5.3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zai-org/GLM-5.3
- SGLang
How to use zai-org/GLM-5.3 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "zai-org/GLM-5.3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zai-org/GLM-5.3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "zai-org/GLM-5.3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zai-org/GLM-5.3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zai-org/GLM-5.3 with Docker Model Runner:
docker model run hf.co/zai-org/GLM-5.3
Commit ·
7cda819
0
Parent(s):
Initial commit 0828
Browse filesCo-authored-by: zRzRzRzRzRzRzR <zRzRzRzRzRzRzR@users.noreply.huggingface.co>
This view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +37 -0
- LICENSE +27 -0
- README.md +12 -0
- chat_template.jinja +251 -0
- config.json +776 -0
- generation_config.json +12 -0
- model-00001-of-00141.safetensors +3 -0
- model-00002-of-00141.safetensors +3 -0
- model-00003-of-00141.safetensors +3 -0
- model-00004-of-00141.safetensors +3 -0
- model-00005-of-00141.safetensors +3 -0
- model-00006-of-00141.safetensors +3 -0
- model-00007-of-00141.safetensors +3 -0
- model-00008-of-00141.safetensors +3 -0
- model-00009-of-00141.safetensors +3 -0
- model-00010-of-00141.safetensors +3 -0
- model-00011-of-00141.safetensors +3 -0
- model-00012-of-00141.safetensors +3 -0
- model-00013-of-00141.safetensors +3 -0
- model-00014-of-00141.safetensors +3 -0
- model-00015-of-00141.safetensors +3 -0
- model-00016-of-00141.safetensors +3 -0
- model-00017-of-00141.safetensors +3 -0
- model-00018-of-00141.safetensors +3 -0
- model-00019-of-00141.safetensors +3 -0
- model-00020-of-00141.safetensors +3 -0
- model-00021-of-00141.safetensors +3 -0
- model-00022-of-00141.safetensors +3 -0
- model-00023-of-00141.safetensors +3 -0
- model-00024-of-00141.safetensors +3 -0
- model-00025-of-00141.safetensors +3 -0
- model-00026-of-00141.safetensors +3 -0
- model-00027-of-00141.safetensors +3 -0
- model-00028-of-00141.safetensors +3 -0
- model-00029-of-00141.safetensors +3 -0
- model-00030-of-00141.safetensors +3 -0
- model-00031-of-00141.safetensors +3 -0
- model-00032-of-00141.safetensors +3 -0
- model-00033-of-00141.safetensors +3 -0
- model-00034-of-00141.safetensors +3 -0
- model-00035-of-00141.safetensors +3 -0
- model-00036-of-00141.safetensors +3 -0
- model-00037-of-00141.safetensors +3 -0
- model-00038-of-00141.safetensors +3 -0
- model-00039-of-00141.safetensors +3 -0
- model-00040-of-00141.safetensors +3 -0
- model-00041-of-00141.safetensors +3 -0
- model-00042-of-00141.safetensors +3 -0
- model-00043-of-00141.safetensors +3 -0
- model-00044-of-00141.safetensors +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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
|
| 37 |
+
model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2026 Z.AI
|
| 2 |
+
|
| 3 |
+
Permission is hereby granted, free of charge, to any person or entity (the "Licensee") obtaining a copy of this software — including the model weights, parameters, configuration files, inference and training code, and associated documentation (collectively, the "Software") — to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software; to run, deploy, fine-tune, or otherwise modify the Software and create derivative works from it; and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
| 4 |
+
|
| 5 |
+
1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. The Licensee's use of the Software must comply with applicable laws and regulations.
|
| 6 |
+
|
| 7 |
+
2. "Model as a Service" means giving a third party access to language model inference or fine-tuning (e.g., via API) in a manner that allows such third party to exercise meaningful control over the inputs, parameters, or training data. This does not include (a) end-user products with model capabilities solely embedded within specific features or harnesses, or (b) mere relaying of requests to models hosted by others.
|
| 8 |
+
If the Licensee or any of its affiliates operates a Model as a Service business, and the aggregate revenue of the Licensee and its affiliates exceeds 10 billion US dollars (or the equivalent in other currencies) in total over any consecutive 12 months, the Licensee must pass Z.AI's security review before using the Software or its derivative works for any commercial purpose. The scope and method of the security review shall be reasonably determined by Z.AI.
|
| 9 |
+
|
| 10 |
+
3. THE SOFTWARE AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL Z.AI OR ITS AFFILIATES OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
| 11 |
+
|
| 12 |
+
For any questions regarding this license, please contact glmlicense@z.ai.
|
| 13 |
+
|
| 14 |
+
-----
|
| 15 |
+
|
| 16 |
+
版权所有 (c) 2026 Z.AI
|
| 17 |
+
|
| 18 |
+
特此免费授予任何获得本软件副本的个人或实体("被许可方")—— 包括模型权重、参数、配置文件、推理和训练代码及相关文档(统称"软件")——不受限制地处理本软件的权利,包括但不限于:使用、复制、修改、合并、发布、分发、再许可和/或销售软件副本;运行、部署、微调或以其他方式修改软件并创建衍生作品;以及允许获得软件的其他人行使上述权利,但须遵守以下条件:
|
| 19 |
+
|
| 20 |
+
1. 上述版权声明和本许可声明应包含在软件的所有副本或实质性部分中。被许可方对软件的使用必须符合适用法律法规。
|
| 21 |
+
|
| 22 |
+
2. "模型即服务"指以允许第三方对输入、参数或训练数据行使实质性控制的方式,向第三方提供语言模型推理或微调服务(如通过API)。不包括:(a) 模型能力仅嵌入特定功能或框架中的终端用户产品,或(b) 单纯转发请求至他人托管的模型。
|
| 23 |
+
若被许可方或其关联方运营"模型即服务"业务,且被许可方及关联方在任意连续12 个月内累计总收入超过 100亿美元(或等值其他货币),则被许可方在使用软件或其衍生作品进行任何商业用途之前,须通过 Z.AI 的安全审查。安全审查的范围和方式由 Z.AI 合理确定。
|
| 24 |
+
|
| 25 |
+
3. 软件及其任何输出和结果均按"现状"提供,不附带任何形式的保证,无论是明示还是暗示,包括但不限于适销性、特定用途适用性和不侵权的保证。在任何情况下,Z.AI 或其关联方或版权持有人均不对任何索赔、损害或其他责任承担责任,无论该责任是基于合同、侵权或其他方式,因软件或使用软件而产生或与之相关。
|
| 26 |
+
|
| 27 |
+
如对本许可有任何疑问,请联系 glmlicense@z.ai。
|
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- zh
|
| 5 |
+
library_name: transformers
|
| 6 |
+
license: other
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
release_date: "2026-08-28T15:00:00Z"
|
| 9 |
+
description: "GLM-5.3: Frontier Coding with Emergent Cyber Capabilities"
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# GLM-5.3
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[gMASK]<sop>
|
| 2 |
+
{%- set effective_reasoning_effort = reasoning_effort if reasoning_effort is defined and reasoning_effort in ['low', 'high'] else 'max' -%}
|
| 3 |
+
{%- if effective_reasoning_effort is not none -%}<|system|>Reasoning Effort: {{ effective_reasoning_effort | capitalize }}{%- endif -%}
|
| 4 |
+
{%- set clear_thinking = clear_thinking if clear_thinking is defined else false -%}
|
| 5 |
+
{%- if tools -%}
|
| 6 |
+
{%- macro tool_to_json(tool) -%}
|
| 7 |
+
{%- set ns_tool = namespace(first=true) -%}
|
| 8 |
+
{{ '{' -}}
|
| 9 |
+
{%- for k, v in tool.items() -%}
|
| 10 |
+
{%- if k != 'defer_loading' and k != 'strict' -%}
|
| 11 |
+
{%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
|
| 12 |
+
{%- set ns_tool.first = false -%}
|
| 13 |
+
"{{ k }}": {{ v | tojson(ensure_ascii=False) }}
|
| 14 |
+
{%- endif -%}
|
| 15 |
+
{%- endfor -%}
|
| 16 |
+
{{- '}' -}}
|
| 17 |
+
{%- endmacro -%}
|
| 18 |
+
{%- macro tool_references_to_response(refs) -%}
|
| 19 |
+
{{- '<tool_response><tools>\n' -}}
|
| 20 |
+
{%- for tr in refs -%}
|
| 21 |
+
{%- for tool in tools -%}
|
| 22 |
+
{%- if 'function' in tool -%}
|
| 23 |
+
{%- set tool = tool['function'] -%}
|
| 24 |
+
{%- endif -%}
|
| 25 |
+
{%- if tool.name == tr.name -%}
|
| 26 |
+
{{- tool_to_json(tool) + '\n' -}}
|
| 27 |
+
{%- endif -%}
|
| 28 |
+
{%- endfor -%}
|
| 29 |
+
{%- endfor -%}
|
| 30 |
+
{{- '</tools></tool_response>' -}}
|
| 31 |
+
{%- endmacro -%}
|
| 32 |
+
<|system|>
|
| 33 |
+
# Tools
|
| 34 |
+
|
| 35 |
+
You may call one or more functions to assist with the user query.
|
| 36 |
+
|
| 37 |
+
You are provided with function signatures within <tools></tools> XML tags:
|
| 38 |
+
<tools>
|
| 39 |
+
{% for tool in tools %}
|
| 40 |
+
{%- if 'function' in tool -%}
|
| 41 |
+
{%- set tool = tool['function'] -%}
|
| 42 |
+
{%- endif -%}
|
| 43 |
+
{% if tool.defer_loading is not defined or not tool.defer_loading %}
|
| 44 |
+
{{ tool_to_json(tool) }}
|
| 45 |
+
{% endif %}
|
| 46 |
+
{% endfor %}
|
| 47 |
+
</tools>
|
| 48 |
+
|
| 49 |
+
For each function call, output the function name and arguments within the following XML format:
|
| 50 |
+
<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 -%}
|
| 51 |
+
{%- macro visible_text(content) -%}
|
| 52 |
+
{%- if content is string -%}
|
| 53 |
+
{{- content }}
|
| 54 |
+
{%- elif content is iterable and content is not mapping -%}
|
| 55 |
+
{%- for item in content -%}
|
| 56 |
+
{%- if item is mapping and item.type == 'text' -%}
|
| 57 |
+
{{- item.text }}
|
| 58 |
+
{%- elif item is string -%}
|
| 59 |
+
{{- item }}
|
| 60 |
+
{%- elif item is mapping and item.type in ['image', 'image_url', 'video', 'video_url', 'audio', 'audio_url', 'input_audio'] -%}
|
| 61 |
+
{%- set media_type = item.type | replace('_url', '') | replace('input_', '') -%}
|
| 62 |
+
{{- "<reminder>You are unable to process this " ~ media_type ~ " because you don't have multi-modal input ability. Try different methods.</reminder>" }}
|
| 63 |
+
{%- endif -%}
|
| 64 |
+
{%- endfor -%}
|
| 65 |
+
{%- else -%}
|
| 66 |
+
{{- content }}
|
| 67 |
+
{%- endif -%}
|
| 68 |
+
{%- endmacro -%}
|
| 69 |
+
{%- macro tool_response(text) -%}
|
| 70 |
+
{{- '<tool_response>' + text + '</tool_response>' -}}
|
| 71 |
+
{%- endmacro -%}
|
| 72 |
+
{%- macro render_tool_response(m) -%}
|
| 73 |
+
{%- if m.content is string -%}
|
| 74 |
+
{{- tool_response(m.content) -}}
|
| 75 |
+
{%- elif m.content and m.content is not mapping and m.content.0.type == "tool_reference" -%}
|
| 76 |
+
{{- tool_references_to_response(m.content) -}}
|
| 77 |
+
{%- elif is_list_of_outputs(m) -%}
|
| 78 |
+
{%- for tr in m.content -%}
|
| 79 |
+
{%- if tr.output is iterable and tr.output is not string and tr.output is not mapping and tr.output and tr.output.0.type == "tool_reference" -%}
|
| 80 |
+
{{- tool_references_to_response(tr.output) -}}
|
| 81 |
+
{%- else -%}
|
| 82 |
+
{{- tool_response(visible_text(tr.output)) -}}
|
| 83 |
+
{%- endif -%}
|
| 84 |
+
{%- endfor -%}
|
| 85 |
+
{%- else -%}
|
| 86 |
+
{{- tool_response(visible_text(m.content)) -}}
|
| 87 |
+
{%- endif -%}
|
| 88 |
+
{%- endmacro -%}
|
| 89 |
+
{%- macro id_of(obj) -%}
|
| 90 |
+
{%- if obj.tool_call_id -%}
|
| 91 |
+
{{- obj.tool_call_id -}}
|
| 92 |
+
{%- elif obj.id -%}
|
| 93 |
+
{{- obj.id -}}
|
| 94 |
+
{%- endif -%}
|
| 95 |
+
{%- endmacro -%}
|
| 96 |
+
{%- macro is_list_of_outputs(m) -%}
|
| 97 |
+
{%- if m.content and m.content.0.output is defined -%}1{%- endif -%}
|
| 98 |
+
{%- endmacro -%}
|
| 99 |
+
{%- macro has_dup_tool_result_id(lo, hi, target) -%}
|
| 100 |
+
{%- set ns_cnt = namespace(n=0) -%}
|
| 101 |
+
{%- for k in range(lo, hi + 1) -%}
|
| 102 |
+
{%- set m = messages[k] -%}
|
| 103 |
+
{%- if is_list_of_outputs(m) -%}
|
| 104 |
+
{%- for entry in m.content -%}
|
| 105 |
+
{%- if id_of(entry) == target -%}
|
| 106 |
+
{%- set ns_cnt.n = ns_cnt.n + 1 -%}
|
| 107 |
+
{%- endif -%}
|
| 108 |
+
{%- endfor -%}
|
| 109 |
+
{%- elif id_of(m) == target -%}
|
| 110 |
+
{%- set ns_cnt.n = ns_cnt.n + 1 -%}
|
| 111 |
+
{%- endif -%}
|
| 112 |
+
{%- if ns_cnt.n > 1 -%}{%- break -%}{%- endif -%}
|
| 113 |
+
{%- endfor -%}
|
| 114 |
+
{%- if ns_cnt.n > 1 -%}1{%- endif -%}
|
| 115 |
+
{%- endmacro -%}
|
| 116 |
+
{%- macro tc_id_exists(tcs, target) -%}
|
| 117 |
+
{%- set ns_f = namespace(found=false) -%}
|
| 118 |
+
{%- for tc in tcs -%}
|
| 119 |
+
{%- if id_of(tc) == target -%}
|
| 120 |
+
{%- set ns_f.found = true -%}
|
| 121 |
+
{%- break -%}
|
| 122 |
+
{%- endif -%}
|
| 123 |
+
{%- endfor -%}
|
| 124 |
+
{%- if ns_f.found -%}1{%- endif -%}
|
| 125 |
+
{%- endmacro -%}
|
| 126 |
+
{%- set ns = namespace(last_user_index=-1) -%}
|
| 127 |
+
{%- for m in messages %}
|
| 128 |
+
{%- if m.role == 'user' %}
|
| 129 |
+
{%- set ns.last_user_index = loop.index0 -%}
|
| 130 |
+
{%- endif %}
|
| 131 |
+
{%- endfor %}
|
| 132 |
+
{%- for m in messages -%}
|
| 133 |
+
{%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
|
| 134 |
+
{%- elif m.role == 'assistant' -%}
|
| 135 |
+
<|assistant|>
|
| 136 |
+
{%- set content = visible_text(m.content) %}
|
| 137 |
+
{%- if m.reasoning_content is string %}
|
| 138 |
+
{%- set reasoning_content = m.reasoning_content %}
|
| 139 |
+
{%- elif '</think>' in content %}
|
| 140 |
+
{%- set reasoning_content = content.split('</think>')[0].split('<think>')[-1] %}
|
| 141 |
+
{%- set content = content.split('</think>')[-1] %}
|
| 142 |
+
{%- endif %}
|
| 143 |
+
{%- if (not clear_thinking or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
|
| 144 |
+
{{ '<think>' + reasoning_content + '</think>'}}
|
| 145 |
+
{%- else -%}
|
| 146 |
+
{{ '<think></think>' }}
|
| 147 |
+
{%- endif -%}
|
| 148 |
+
{%- if content.strip() -%}
|
| 149 |
+
{{ content.strip() }}
|
| 150 |
+
{%- endif -%}
|
| 151 |
+
{% if m.tool_calls %}
|
| 152 |
+
{% for tc in m.tool_calls %}
|
| 153 |
+
{%- if tc.function %}
|
| 154 |
+
{%- set tc = tc.function %}
|
| 155 |
+
{%- endif %}
|
| 156 |
+
{{- '<tool_call>' + tc.name -}}
|
| 157 |
+
{% 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 %}
|
| 158 |
+
{% endif %}
|
| 159 |
+
{%- elif m.role == 'tool' -%}
|
| 160 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 161 |
+
{{- '<|observation|>' -}}
|
| 162 |
+
{%- set block_start = loop.index0 -%}
|
| 163 |
+
{%- set ns_blk = namespace(end=block_start) -%}
|
| 164 |
+
{%- for j in range(block_start, messages|length) -%}
|
| 165 |
+
{%- if messages[j].role == 'tool' -%}
|
| 166 |
+
{%- set ns_blk.end = j -%}
|
| 167 |
+
{%- else -%}
|
| 168 |
+
{%- break -%}
|
| 169 |
+
{%- endif -%}
|
| 170 |
+
{%- endfor -%}
|
| 171 |
+
{%- set ns_a = namespace(tool_calls=none) -%}
|
| 172 |
+
{%- if block_start > 0 and messages[block_start - 1].role == 'assistant' and messages[block_start - 1].tool_calls -%}
|
| 173 |
+
{%- set ns_a.tool_calls = messages[block_start - 1].tool_calls -%}
|
| 174 |
+
{%- endif -%}
|
| 175 |
+
{%- set ns_chk = namespace(can_sort=true) -%}
|
| 176 |
+
{%- if not ns_a.tool_calls -%}
|
| 177 |
+
{%- set ns_chk.can_sort = false -%}
|
| 178 |
+
{%- else -%}
|
| 179 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 180 |
+
{%- set m = messages[k] -%}
|
| 181 |
+
{%- if is_list_of_outputs(m) -%}
|
| 182 |
+
{%- for entry in m.content -%}
|
| 183 |
+
{%- set eid = id_of(entry) -%}
|
| 184 |
+
{%- if not eid -%}
|
| 185 |
+
{%- set ns_chk.can_sort = false -%}
|
| 186 |
+
{%- elif has_dup_tool_result_id(block_start, ns_blk.end, eid) -%}
|
| 187 |
+
{%- set ns_chk.can_sort = false -%}
|
| 188 |
+
{%- elif not tc_id_exists(ns_a.tool_calls, eid) -%}
|
| 189 |
+
{%- set ns_chk.can_sort = false -%}
|
| 190 |
+
{%- endif -%}
|
| 191 |
+
{%- endfor -%}
|
| 192 |
+
{%- else -%}
|
| 193 |
+
{%- set tk_id = id_of(m) -%}
|
| 194 |
+
{%- if not tk_id -%}
|
| 195 |
+
{%- set ns_chk.can_sort = false -%}
|
| 196 |
+
{%- elif has_dup_tool_result_id(block_start, ns_blk.end, tk_id) -%}
|
| 197 |
+
{%- set ns_chk.can_sort = false -%}
|
| 198 |
+
{%- elif not tc_id_exists(ns_a.tool_calls, tk_id) -%}
|
| 199 |
+
{%- set ns_chk.can_sort = false -%}
|
| 200 |
+
{%- endif -%}
|
| 201 |
+
{%- endif -%}
|
| 202 |
+
{%- endfor -%}
|
| 203 |
+
{%- for i in range(ns_a.tool_calls | length) -%}
|
| 204 |
+
{%- set tc_id = id_of(ns_a.tool_calls[i]) -%}
|
| 205 |
+
{%- if not tc_id -%}
|
| 206 |
+
{%- set ns_chk.can_sort = false -%}
|
| 207 |
+
{%- endif -%}
|
| 208 |
+
{%- for j in range(i + 1, ns_a.tool_calls | length) -%}
|
| 209 |
+
{%- if id_of(ns_a.tool_calls[j]) == tc_id -%}
|
| 210 |
+
{%- set ns_chk.can_sort = false -%}
|
| 211 |
+
{%- endif -%}
|
| 212 |
+
{%- endfor -%}
|
| 213 |
+
{%- endfor -%}
|
| 214 |
+
{%- endif -%}
|
| 215 |
+
{%- if ns_chk.can_sort -%}
|
| 216 |
+
{%- for tc in ns_a.tool_calls -%}
|
| 217 |
+
{%- set tc_id = id_of(tc) -%}
|
| 218 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 219 |
+
{%- set m = messages[k] -%}
|
| 220 |
+
{%- if is_list_of_outputs(m) -%}
|
| 221 |
+
{%- for entry in m.content -%}
|
| 222 |
+
{%- set eid = id_of(entry) -%}
|
| 223 |
+
{%- if eid == tc_id -%}
|
| 224 |
+
{%- if entry.output is iterable and entry.output is not string and entry.output is not mapping and entry.output and entry.output.0.type == "tool_reference" -%}
|
| 225 |
+
{{- tool_references_to_response(entry.output) -}}
|
| 226 |
+
{%- else -%}
|
| 227 |
+
{{- tool_response(visible_text(entry.output)) -}}
|
| 228 |
+
{%- endif -%}
|
| 229 |
+
{%- endif -%}
|
| 230 |
+
{%- endfor -%}
|
| 231 |
+
{%- else -%}
|
| 232 |
+
{%- set tk_id = id_of(m) -%}
|
| 233 |
+
{%- if tk_id == tc_id -%}
|
| 234 |
+
{{- render_tool_response(m) -}}
|
| 235 |
+
{%- endif -%}
|
| 236 |
+
{%- endif -%}
|
| 237 |
+
{%- endfor -%}
|
| 238 |
+
{%- endfor -%}
|
| 239 |
+
{%- else -%}
|
| 240 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 241 |
+
{{- render_tool_response(messages[k]) -}}
|
| 242 |
+
{%- endfor -%}
|
| 243 |
+
{%- endif -%}
|
| 244 |
+
{% endif -%}
|
| 245 |
+
{%- elif m.role == 'system' -%}
|
| 246 |
+
<|system|>{{ visible_text(m.content) }}
|
| 247 |
+
{%- endif -%}
|
| 248 |
+
{%- endfor -%}
|
| 249 |
+
{%- if add_generation_prompt -%}
|
| 250 |
+
<|assistant|>{{- '<think>' -}}
|
| 251 |
+
{%- endif -%}
|
config.json
ADDED
|
@@ -0,0 +1,776 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 192,
|
| 16 |
+
"hidden_act": "silu",
|
| 17 |
+
"hidden_size": 6144,
|
| 18 |
+
"index_head_dim": 128,
|
| 19 |
+
"index_n_heads": 32,
|
| 20 |
+
"index_share_for_mtp_iteration": true,
|
| 21 |
+
"index_skip_topk_offset": 3,
|
| 22 |
+
"index_topk": 2048,
|
| 23 |
+
"index_topk_freq": 4,
|
| 24 |
+
"index_topk_pattern": null,
|
| 25 |
+
"indexer_rope_interleave": true,
|
| 26 |
+
"indexer_types": [
|
| 27 |
+
"full",
|
| 28 |
+
"full",
|
| 29 |
+
"full",
|
| 30 |
+
"shared",
|
| 31 |
+
"shared",
|
| 32 |
+
"shared",
|
| 33 |
+
"full",
|
| 34 |
+
"shared",
|
| 35 |
+
"shared",
|
| 36 |
+
"shared",
|
| 37 |
+
"full",
|
| 38 |
+
"shared",
|
| 39 |
+
"shared",
|
| 40 |
+
"shared",
|
| 41 |
+
"full",
|
| 42 |
+
"shared",
|
| 43 |
+
"shared",
|
| 44 |
+
"shared",
|
| 45 |
+
"full",
|
| 46 |
+
"shared",
|
| 47 |
+
"shared",
|
| 48 |
+
"shared",
|
| 49 |
+
"full",
|
| 50 |
+
"shared",
|
| 51 |
+
"shared",
|
| 52 |
+
"shared",
|
| 53 |
+
"full",
|
| 54 |
+
"shared",
|
| 55 |
+
"shared",
|
| 56 |
+
"shared",
|
| 57 |
+
"full",
|
| 58 |
+
"shared",
|
| 59 |
+
"shared",
|
| 60 |
+
"shared",
|
| 61 |
+
"full",
|
| 62 |
+
"shared",
|
| 63 |
+
"shared",
|
| 64 |
+
"shared",
|
| 65 |
+
"full",
|
| 66 |
+
"shared",
|
| 67 |
+
"shared",
|
| 68 |
+
"shared",
|
| 69 |
+
"full",
|
| 70 |
+
"shared",
|
| 71 |
+
"shared",
|
| 72 |
+
"shared",
|
| 73 |
+
"full",
|
| 74 |
+
"shared",
|
| 75 |
+
"shared",
|
| 76 |
+
"shared",
|
| 77 |
+
"full",
|
| 78 |
+
"shared",
|
| 79 |
+
"shared",
|
| 80 |
+
"shared",
|
| 81 |
+
"full",
|
| 82 |
+
"shared",
|
| 83 |
+
"shared",
|
| 84 |
+
"shared",
|
| 85 |
+
"full",
|
| 86 |
+
"shared",
|
| 87 |
+
"shared",
|
| 88 |
+
"shared",
|
| 89 |
+
"full",
|
| 90 |
+
"shared",
|
| 91 |
+
"shared",
|
| 92 |
+
"shared",
|
| 93 |
+
"full",
|
| 94 |
+
"shared",
|
| 95 |
+
"shared",
|
| 96 |
+
"shared",
|
| 97 |
+
"full",
|
| 98 |
+
"shared",
|
| 99 |
+
"shared",
|
| 100 |
+
"shared",
|
| 101 |
+
"full",
|
| 102 |
+
"shared",
|
| 103 |
+
"shared",
|
| 104 |
+
"shared"
|
| 105 |
+
],
|
| 106 |
+
"initializer_range": 0.02,
|
| 107 |
+
"intermediate_size": 12288,
|
| 108 |
+
"kv_lora_rank": 512,
|
| 109 |
+
"max_position_embeddings": 1048576,
|
| 110 |
+
"mlp_layer_types": [
|
| 111 |
+
"dense",
|
| 112 |
+
"dense",
|
| 113 |
+
"dense",
|
| 114 |
+
"sparse",
|
| 115 |
+
"sparse",
|
| 116 |
+
"sparse",
|
| 117 |
+
"sparse",
|
| 118 |
+
"sparse",
|
| 119 |
+
"sparse",
|
| 120 |
+
"sparse",
|
| 121 |
+
"sparse",
|
| 122 |
+
"sparse",
|
| 123 |
+
"sparse",
|
| 124 |
+
"sparse",
|
| 125 |
+
"sparse",
|
| 126 |
+
"sparse",
|
| 127 |
+
"sparse",
|
| 128 |
+
"sparse",
|
| 129 |
+
"sparse",
|
| 130 |
+
"sparse",
|
| 131 |
+
"sparse",
|
| 132 |
+
"sparse",
|
| 133 |
+
"sparse",
|
| 134 |
+
"sparse",
|
| 135 |
+
"sparse",
|
| 136 |
+
"sparse",
|
| 137 |
+
"sparse",
|
| 138 |
+
"sparse",
|
| 139 |
+
"sparse",
|
| 140 |
+
"sparse",
|
| 141 |
+
"sparse",
|
| 142 |
+
"sparse",
|
| 143 |
+
"sparse",
|
| 144 |
+
"sparse",
|
| 145 |
+
"sparse",
|
| 146 |
+
"sparse",
|
| 147 |
+
"sparse",
|
| 148 |
+
"sparse",
|
| 149 |
+
"sparse",
|
| 150 |
+
"sparse",
|
| 151 |
+
"sparse",
|
| 152 |
+
"sparse",
|
| 153 |
+
"sparse",
|
| 154 |
+
"sparse",
|
| 155 |
+
"sparse",
|
| 156 |
+
"sparse",
|
| 157 |
+
"sparse",
|
| 158 |
+
"sparse",
|
| 159 |
+
"sparse",
|
| 160 |
+
"sparse",
|
| 161 |
+
"sparse",
|
| 162 |
+
"sparse",
|
| 163 |
+
"sparse",
|
| 164 |
+
"sparse",
|
| 165 |
+
"sparse",
|
| 166 |
+
"sparse",
|
| 167 |
+
"sparse",
|
| 168 |
+
"sparse",
|
| 169 |
+
"sparse",
|
| 170 |
+
"sparse",
|
| 171 |
+
"sparse",
|
| 172 |
+
"sparse",
|
| 173 |
+
"sparse",
|
| 174 |
+
"sparse",
|
| 175 |
+
"sparse",
|
| 176 |
+
"sparse",
|
| 177 |
+
"sparse",
|
| 178 |
+
"sparse",
|
| 179 |
+
"sparse",
|
| 180 |
+
"sparse",
|
| 181 |
+
"sparse",
|
| 182 |
+
"sparse",
|
| 183 |
+
"sparse",
|
| 184 |
+
"sparse",
|
| 185 |
+
"sparse",
|
| 186 |
+
"sparse",
|
| 187 |
+
"sparse",
|
| 188 |
+
"sparse"
|
| 189 |
+
],
|
| 190 |
+
"model_type": "glm_moe_dsa",
|
| 191 |
+
"moe_intermediate_size": 2048,
|
| 192 |
+
"moe_layer_freq": 1,
|
| 193 |
+
"moe_router_dtype": "float32",
|
| 194 |
+
"n_group": 1,
|
| 195 |
+
"n_routed_experts": 256,
|
| 196 |
+
"n_shared_experts": 1,
|
| 197 |
+
"norm_topk_prob": true,
|
| 198 |
+
"num_attention_heads": 64,
|
| 199 |
+
"num_experts_per_tok": 8,
|
| 200 |
+
"num_hidden_layers": 78,
|
| 201 |
+
"num_key_value_heads": 64,
|
| 202 |
+
"num_nextn_predict_layers": 1,
|
| 203 |
+
"pad_token_id": 154820,
|
| 204 |
+
"pretraining_tp": 1,
|
| 205 |
+
"q_lora_rank": 2048,
|
| 206 |
+
"qk_head_dim": 256,
|
| 207 |
+
"qk_nope_head_dim": 192,
|
| 208 |
+
"qk_rope_head_dim": 64,
|
| 209 |
+
"rms_norm_eps": 1e-05,
|
| 210 |
+
"rope_interleave": true,
|
| 211 |
+
"rope_parameters": {
|
| 212 |
+
"rope_theta": 8000000,
|
| 213 |
+
"rope_type": "default"
|
| 214 |
+
},
|
| 215 |
+
"routed_scaling_factor": 2.5,
|
| 216 |
+
"scoring_func": "sigmoid",
|
| 217 |
+
"tie_word_embeddings": false,
|
| 218 |
+
"topk_group": 1,
|
| 219 |
+
"topk_method": "noaux_tc",
|
| 220 |
+
"transformers_version": "5.15.0",
|
| 221 |
+
"use_cache": true,
|
| 222 |
+
"v_head_dim": 256,
|
| 223 |
+
"vocab_size": 154880,
|
| 224 |
+
"quantization_config": {
|
| 225 |
+
"activation_scheme": "dynamic",
|
| 226 |
+
"fmt": "e4m3",
|
| 227 |
+
"quant_method": "fp8",
|
| 228 |
+
"weight_block_size": [
|
| 229 |
+
128,
|
| 230 |
+
128
|
| 231 |
+
],
|
| 232 |
+
"modules_to_not_convert": [
|
| 233 |
+
"model.layers.59.post_attention_layernorm",
|
| 234 |
+
"model.layers.47.mlp.gate.e_score_correction_bias",
|
| 235 |
+
"model.layers.71.self_attn.kv_a_layernorm",
|
| 236 |
+
"model.layers.46.mlp.gate.e_score_correction_bias",
|
| 237 |
+
"model.layers.30.self_attn.kv_a_layernorm",
|
| 238 |
+
"model.layers.23.self_attn.kv_a_layernorm",
|
| 239 |
+
"model.layers.73.mlp.gate.e_score_correction_bias",
|
| 240 |
+
"model.layers.36.mlp.gate",
|
| 241 |
+
"model.layers.12.self_attn.q_a_layernorm",
|
| 242 |
+
"model.layers.51.mlp.gate",
|
| 243 |
+
"model.layers.47.self_attn.kv_a_layernorm",
|
| 244 |
+
"model.layers.45.self_attn.q_a_layernorm",
|
| 245 |
+
"model.layers.15.self_attn.q_a_layernorm",
|
| 246 |
+
"model.layers.39.input_layernorm",
|
| 247 |
+
"model.layers.50.self_attn.kv_a_layernorm",
|
| 248 |
+
"model.layers.19.post_attention_layernorm",
|
| 249 |
+
"model.layers.71.input_layernorm",
|
| 250 |
+
"model.layers.72.self_attn.kv_a_layernorm",
|
| 251 |
+
"model.layers.70.mlp.gate",
|
| 252 |
+
"model.layers.52.input_layernorm",
|
| 253 |
+
"model.layers.78.self_attn.kv_a_layernorm",
|
| 254 |
+
"model.layers.48.post_attention_layernorm",
|
| 255 |
+
"model.layers.4.self_attn.q_a_layernorm",
|
| 256 |
+
"model.layers.62.self_attn.q_a_layernorm",
|
| 257 |
+
"model.layers.4.post_attention_layernorm",
|
| 258 |
+
"model.layers.38.self_attn.indexers_proj",
|
| 259 |
+
"model.layers.61.mlp.gate.e_score_correction_bias",
|
| 260 |
+
"model.layers.14.mlp.gate.e_score_correction_bias",
|
| 261 |
+
"model.layers.36.self_attn.kv_a_layernorm",
|
| 262 |
+
"model.layers.65.mlp.gate",
|
| 263 |
+
"model.layers.13.self_attn.kv_a_layernorm",
|
| 264 |
+
"model.layers.57.mlp.gate",
|
| 265 |
+
"model.layers.65.self_attn.kv_a_layernorm",
|
| 266 |
+
"model.layers.68.input_layernorm",
|
| 267 |
+
"model.layers.70.self_attn.kv_a_layernorm",
|
| 268 |
+
"model.layers.24.mlp.gate.e_score_correction_bias",
|
| 269 |
+
"model.layers.4.input_layernorm",
|
| 270 |
+
"model.layers.20.input_layernorm",
|
| 271 |
+
"model.layers.65.self_attn.q_a_layernorm",
|
| 272 |
+
"model.layers.38.mlp.gate",
|
| 273 |
+
"model.layers.76.mlp.gate.e_score_correction_bias",
|
| 274 |
+
"model.layers.62.input_layernorm",
|
| 275 |
+
"model.layers.45.input_layernorm",
|
| 276 |
+
"model.layers.68.post_attention_layernorm",
|
| 277 |
+
"model.layers.72.input_layernorm",
|
| 278 |
+
"model.layers.32.mlp.gate.e_score_correction_bias",
|
| 279 |
+
"model.layers.27.input_layernorm",
|
| 280 |
+
"model.layers.16.post_attention_layernorm",
|
| 281 |
+
"model.layers.35.self_attn.q_a_layernorm",
|
| 282 |
+
"model.layers.58.self_attn.indexers_proj",
|
| 283 |
+
"model.layers.3.mlp.gate.e_score_correction_bias",
|
| 284 |
+
"model.layers.49.self_attn.q_a_layernorm",
|
| 285 |
+
"model.layers.66.mlp.gate.e_score_correction_bias",
|
| 286 |
+
"model.layers.10.self_attn.q_a_layernorm",
|
| 287 |
+
"model.layers.51.mlp.gate.e_score_correction_bias",
|
| 288 |
+
"model.layers.64.self_attn.q_a_layernorm",
|
| 289 |
+
"model.layers.70.input_layernorm",
|
| 290 |
+
"model.layers.71.post_attention_layernorm",
|
| 291 |
+
"model.layers.67.post_attention_layernorm",
|
| 292 |
+
"model.layers.6.self_attn.indexer.k_norm",
|
| 293 |
+
"model.layers.3.mlp.gate",
|
| 294 |
+
"model.layers.11.mlp.gate",
|
| 295 |
+
"model.layers.17.input_layernorm",
|
| 296 |
+
"model.layers.13.mlp.gate",
|
| 297 |
+
"model.layers.15.mlp.gate",
|
| 298 |
+
"model.layers.71.self_attn.q_a_layernorm",
|
| 299 |
+
"model.layers.33.mlp.gate.e_score_correction_bias",
|
| 300 |
+
"model.layers.72.mlp.gate.e_score_correction_bias",
|
| 301 |
+
"model.layers.65.post_attention_layernorm",
|
| 302 |
+
"model.layers.78.hnorm",
|
| 303 |
+
"model.layers.40.post_attention_layernorm",
|
| 304 |
+
"model.layers.12.mlp.gate.e_score_correction_bias",
|
| 305 |
+
"model.layers.8.input_layernorm",
|
| 306 |
+
"model.layers.73.mlp.gate",
|
| 307 |
+
"model.layers.11.post_attention_layernorm",
|
| 308 |
+
"model.layers.61.input_layernorm",
|
| 309 |
+
"model.layers.14.self_attn.kv_a_layernorm",
|
| 310 |
+
"model.layers.39.self_attn.kv_a_layernorm",
|
| 311 |
+
"model.layers.70.self_attn.indexer.k_norm",
|
| 312 |
+
"model.layers.45.mlp.gate",
|
| 313 |
+
"model.layers.51.self_attn.q_a_layernorm",
|
| 314 |
+
"model.layers.64.post_attention_layernorm",
|
| 315 |
+
"model.layers.20.post_attention_layernorm",
|
| 316 |
+
"model.layers.66.self_attn.kv_a_layernorm",
|
| 317 |
+
"model.layers.10.self_attn.indexer.k_norm.bias",
|
| 318 |
+
"model.layers.23.input_layernorm",
|
| 319 |
+
"model.layers.38.self_attn.indexer.k_norm",
|
| 320 |
+
"model.layers.19.self_attn.kv_a_layernorm",
|
| 321 |
+
"model.layers.40.self_attn.q_a_layernorm",
|
| 322 |
+
"model.layers.10.self_attn.indexer.k_norm",
|
| 323 |
+
"model.layers.44.post_attention_layernorm",
|
| 324 |
+
"model.layers.70.post_attention_layernorm",
|
| 325 |
+
"model.layers.41.mlp.gate.e_score_correction_bias",
|
| 326 |
+
"model.layers.36.post_attention_layernorm",
|
| 327 |
+
"model.layers.30.self_attn.indexer.k_norm.bias",
|
| 328 |
+
"model.layers.54.self_attn.q_a_layernorm",
|
| 329 |
+
"model.layers.59.mlp.gate",
|
| 330 |
+
"model.layers.69.post_attention_layernorm",
|
| 331 |
+
"lm_head",
|
| 332 |
+
"model.layers.77.self_attn.kv_a_layernorm",
|
| 333 |
+
"model.layers.75.self_attn.q_a_layernorm",
|
| 334 |
+
"model.layers.56.self_attn.q_a_layernorm",
|
| 335 |
+
"model.layers.50.self_attn.indexer.k_norm.bias",
|
| 336 |
+
"model.layers.54.mlp.gate",
|
| 337 |
+
"model.layers.6.self_attn.indexer.k_norm.bias",
|
| 338 |
+
"model.layers.15.input_layernorm",
|
| 339 |
+
"model.layers.29.self_attn.q_a_layernorm",
|
| 340 |
+
"model.layers.54.self_attn.indexers_proj",
|
| 341 |
+
"model.layers.73.self_attn.kv_a_layernorm",
|
| 342 |
+
"model.layers.0.self_attn.indexer.k_norm",
|
| 343 |
+
"model.layers.58.self_attn.indexer.k_norm",
|
| 344 |
+
"model.layers.36.input_layernorm",
|
| 345 |
+
"model.layers.47.self_attn.q_a_layernorm",
|
| 346 |
+
"model.layers.26.mlp.gate.e_score_correction_bias",
|
| 347 |
+
"model.layers.50.input_layernorm",
|
| 348 |
+
"model.layers.16.self_attn.q_a_layernorm",
|
| 349 |
+
"model.layers.19.mlp.gate.e_score_correction_bias",
|
| 350 |
+
"model.layers.78.input_layernorm",
|
| 351 |
+
"model.layers.27.mlp.gate",
|
| 352 |
+
"model.layers.19.self_attn.q_a_layernorm",
|
| 353 |
+
"model.layers.25.input_layernorm",
|
| 354 |
+
"model.layers.33.self_attn.kv_a_layernorm",
|
| 355 |
+
"model.layers.32.mlp.gate",
|
| 356 |
+
"model.layers.61.self_attn.kv_a_layernorm",
|
| 357 |
+
"model.layers.50.self_attn.indexers_proj",
|
| 358 |
+
"model.layers.34.self_attn.indexers_proj",
|
| 359 |
+
"model.layers.4.mlp.gate.e_score_correction_bias",
|
| 360 |
+
"model.layers.76.post_attention_layernorm",
|
| 361 |
+
"model.layers.57.post_attention_layernorm",
|
| 362 |
+
"model.layers.73.post_attention_layernorm",
|
| 363 |
+
"model.layers.68.mlp.gate.e_score_correction_bias",
|
| 364 |
+
"model.layers.34.self_attn.kv_a_layernorm",
|
| 365 |
+
"model.layers.78.enorm",
|
| 366 |
+
"model.layers.30.mlp.gate",
|
| 367 |
+
"model.layers.10.self_attn.indexers_proj",
|
| 368 |
+
"model.layers.34.input_layernorm",
|
| 369 |
+
"model.layers.34.post_attention_layernorm",
|
| 370 |
+
"model.layers.20.mlp.gate.e_score_correction_bias",
|
| 371 |
+
"model.layers.54.self_attn.indexer.k_norm.bias",
|
| 372 |
+
"model.layers.44.mlp.gate",
|
| 373 |
+
"model.layers.25.mlp.gate.e_score_correction_bias",
|
| 374 |
+
"model.layers.26.self_attn.indexers_proj",
|
| 375 |
+
"model.layers.66.self_attn.indexer.k_norm.bias",
|
| 376 |
+
"model.layers.41.post_attention_layernorm",
|
| 377 |
+
"model.layers.51.post_attention_layernorm",
|
| 378 |
+
"model.layers.22.self_attn.indexer.k_norm.bias",
|
| 379 |
+
"model.layers.21.mlp.gate.e_score_correction_bias",
|
| 380 |
+
"model.layers.15.self_attn.kv_a_layernorm",
|
| 381 |
+
"model.layers.25.self_attn.kv_a_layernorm",
|
| 382 |
+
"model.layers.55.mlp.gate",
|
| 383 |
+
"model.layers.11.self_attn.q_a_layernorm",
|
| 384 |
+
"model.layers.72.mlp.gate",
|
| 385 |
+
"model.layers.21.self_attn.kv_a_layernorm",
|
| 386 |
+
"model.layers.59.mlp.gate.e_score_correction_bias",
|
| 387 |
+
"model.layers.2.input_layernorm",
|
| 388 |
+
"model.layers.5.mlp.gate",
|
| 389 |
+
"model.layers.54.self_attn.kv_a_layernorm",
|
| 390 |
+
"model.layers.0.self_attn.indexers_proj",
|
| 391 |
+
"model.layers.71.mlp.gate.e_score_correction_bias",
|
| 392 |
+
"model.layers.6.self_attn.q_a_layernorm",
|
| 393 |
+
"model.layers.14.mlp.gate",
|
| 394 |
+
"model.layers.44.self_attn.kv_a_layernorm",
|
| 395 |
+
"model.layers.61.post_attention_layernorm",
|
| 396 |
+
"model.layers.64.self_attn.kv_a_layernorm",
|
| 397 |
+
"model.layers.1.post_attention_layernorm",
|
| 398 |
+
"model.layers.4.mlp.gate",
|
| 399 |
+
"model.layers.22.post_attention_layernorm",
|
| 400 |
+
"model.layers.21.self_attn.q_a_layernorm",
|
| 401 |
+
"model.layers.74.self_attn.q_a_layernorm",
|
| 402 |
+
"model.layers.18.self_attn.indexers_proj",
|
| 403 |
+
"model.layers.75.input_layernorm",
|
| 404 |
+
"model.layers.70.self_attn.q_a_layernorm",
|
| 405 |
+
"model.layers.22.self_attn.indexer.k_norm",
|
| 406 |
+
"model.layers.42.mlp.gate.e_score_correction_bias",
|
| 407 |
+
"model.layers.5.self_attn.kv_a_layernorm",
|
| 408 |
+
"model.layers.31.mlp.gate.e_score_correction_bias",
|
| 409 |
+
"model.layers.62.self_attn.indexer.k_norm.bias",
|
| 410 |
+
"model.layers.29.post_attention_layernorm",
|
| 411 |
+
"model.layers.6.self_attn.kv_a_layernorm",
|
| 412 |
+
"model.layers.48.input_layernorm",
|
| 413 |
+
"model.layers.74.self_attn.indexer.k_norm.bias",
|
| 414 |
+
"model.layers.7.input_layernorm",
|
| 415 |
+
"model.layers.39.self_attn.q_a_layernorm",
|
| 416 |
+
"model.layers.41.input_layernorm",
|
| 417 |
+
"model.layers.54.self_attn.indexer.k_norm",
|
| 418 |
+
"model.layers.32.self_attn.q_a_layernorm",
|
| 419 |
+
"model.layers.39.mlp.gate.e_score_correction_bias",
|
| 420 |
+
"model.layers.42.input_layernorm",
|
| 421 |
+
"model.layers.43.mlp.gate",
|
| 422 |
+
"model.layers.72.self_attn.q_a_layernorm",
|
| 423 |
+
"model.layers.37.mlp.gate.e_score_correction_bias",
|
| 424 |
+
"model.layers.5.post_attention_layernorm",
|
| 425 |
+
"model.layers.28.mlp.gate",
|
| 426 |
+
"model.layers.2.post_attention_layernorm",
|
| 427 |
+
"model.layers.49.post_attention_layernorm",
|
| 428 |
+
"model.layers.43.self_attn.kv_a_layernorm",
|
| 429 |
+
"model.layers.12.input_layernorm",
|
| 430 |
+
"model.layers.56.mlp.gate",
|
| 431 |
+
"model.layers.5.input_layernorm",
|
| 432 |
+
"model.layers.29.mlp.gate.e_score_correction_bias",
|
| 433 |
+
"model.layers.4.self_attn.kv_a_layernorm",
|
| 434 |
+
"model.layers.20.self_attn.q_a_layernorm",
|
| 435 |
+
"model.layers.59.self_attn.q_a_layernorm",
|
| 436 |
+
"model.layers.68.mlp.gate",
|
| 437 |
+
"model.layers.21.post_attention_layernorm",
|
| 438 |
+
"model.layers.26.self_attn.q_a_layernorm",
|
| 439 |
+
"model.layers.52.self_attn.q_a_layernorm",
|
| 440 |
+
"model.layers.29.self_attn.kv_a_layernorm",
|
| 441 |
+
"model.layers.24.input_layernorm",
|
| 442 |
+
"model.layers.34.self_attn.indexer.k_norm.bias",
|
| 443 |
+
"model.layers.43.input_layernorm",
|
| 444 |
+
"model.layers.27.self_attn.kv_a_layernorm",
|
| 445 |
+
"model.layers.31.input_layernorm",
|
| 446 |
+
"model.layers.69.mlp.gate",
|
| 447 |
+
"model.layers.26.post_attention_layernorm",
|
| 448 |
+
"model.layers.3.self_attn.q_a_layernorm",
|
| 449 |
+
"model.layers.37.post_attention_layernorm",
|
| 450 |
+
"model.layers.52.mlp.gate",
|
| 451 |
+
"model.layers.73.input_layernorm",
|
| 452 |
+
"model.layers.19.input_layernorm",
|
| 453 |
+
"model.layers.13.self_attn.q_a_layernorm",
|
| 454 |
+
"model.layers.76.input_layernorm",
|
| 455 |
+
"model.layers.8.mlp.gate",
|
| 456 |
+
"model.layers.63.post_attention_layernorm",
|
| 457 |
+
"model.layers.58.mlp.gate",
|
| 458 |
+
"model.layers.31.post_attention_layernorm",
|
| 459 |
+
"model.layers.23.mlp.gate.e_score_correction_bias",
|
| 460 |
+
"model.layers.34.self_attn.q_a_layernorm",
|
| 461 |
+
"model.layers.78.self_attn.indexer.k_norm.bias",
|
| 462 |
+
"model.layers.13.mlp.gate.e_score_correction_bias",
|
| 463 |
+
"model.layers.71.mlp.gate",
|
| 464 |
+
"model.layers.14.input_layernorm",
|
| 465 |
+
"model.layers.17.mlp.gate.e_score_correction_bias",
|
| 466 |
+
"model.layers.8.post_attention_layernorm",
|
| 467 |
+
"model.layers.45.self_attn.kv_a_layernorm",
|
| 468 |
+
"model.layers.46.self_attn.indexer.k_norm",
|
| 469 |
+
"model.layers.20.self_attn.kv_a_layernorm",
|
| 470 |
+
"model.layers.78.self_attn.indexer.k_norm",
|
| 471 |
+
"model.layers.37.mlp.gate",
|
| 472 |
+
"model.layers.7.mlp.gate",
|
| 473 |
+
"model.layers.30.mlp.gate.e_score_correction_bias",
|
| 474 |
+
"model.layers.67.mlp.gate",
|
| 475 |
+
"model.layers.73.self_attn.q_a_layernorm",
|
| 476 |
+
"model.layers.10.self_attn.kv_a_layernorm",
|
| 477 |
+
"model.layers.61.mlp.gate",
|
| 478 |
+
"model.layers.22.mlp.gate.e_score_correction_bias",
|
| 479 |
+
"model.layers.58.input_layernorm",
|
| 480 |
+
"model.layers.8.self_attn.kv_a_layernorm",
|
| 481 |
+
"model.layers.33.self_attn.q_a_layernorm",
|
| 482 |
+
"model.layers.55.self_attn.q_a_layernorm",
|
| 483 |
+
"model.layers.32.input_layernorm",
|
| 484 |
+
"model.layers.17.self_attn.kv_a_layernorm",
|
| 485 |
+
"model.layers.46.self_attn.indexer.k_norm.bias",
|
| 486 |
+
"model.layers.11.mlp.gate.e_score_correction_bias",
|
| 487 |
+
"model.layers.9.input_layernorm",
|
| 488 |
+
"model.layers.77.input_layernorm",
|
| 489 |
+
"model.layers.16.self_attn.kv_a_layernorm",
|
| 490 |
+
"model.layers.45.post_attention_layernorm",
|
| 491 |
+
"model.layers.74.mlp.gate",
|
| 492 |
+
"model.layers.68.self_attn.q_a_layernorm",
|
| 493 |
+
"model.layers.55.self_attn.kv_a_layernorm",
|
| 494 |
+
"model.layers.44.input_layernorm",
|
| 495 |
+
"model.layers.60.self_attn.kv_a_layernorm",
|
| 496 |
+
"model.layers.14.post_attention_layernorm",
|
| 497 |
+
"model.layers.62.self_attn.indexers_proj",
|
| 498 |
+
"model.layers.0.self_attn.q_a_layernorm",
|
| 499 |
+
"model.layers.72.post_attention_layernorm",
|
| 500 |
+
"model.layers.78.post_attention_layernorm",
|
| 501 |
+
"model.layers.60.mlp.gate.e_score_correction_bias",
|
| 502 |
+
"model.layers.26.self_attn.indexer.k_norm.bias",
|
| 503 |
+
"model.layers.38.post_attention_layernorm",
|
| 504 |
+
"model.layers.50.post_attention_layernorm",
|
| 505 |
+
"model.layers.28.input_layernorm",
|
| 506 |
+
"model.layers.30.self_attn.indexer.k_norm",
|
| 507 |
+
"model.layers.37.self_attn.q_a_layernorm",
|
| 508 |
+
"model.layers.56.input_layernorm",
|
| 509 |
+
"model.layers.27.post_attention_layernorm",
|
| 510 |
+
"model.layers.74.input_layernorm",
|
| 511 |
+
"model.layers.78.self_attn.q_a_layernorm",
|
| 512 |
+
"model.layers.42.self_attn.q_a_layernorm",
|
| 513 |
+
"model.layers.26.self_attn.indexer.k_norm",
|
| 514 |
+
"model.layers.42.self_attn.kv_a_layernorm",
|
| 515 |
+
"model.layers.1.self_attn.indexer.k_norm",
|
| 516 |
+
"model.layers.39.post_attention_layernorm",
|
| 517 |
+
"model.layers.48.mlp.gate.e_score_correction_bias",
|
| 518 |
+
"model.layers.74.post_attention_layernorm",
|
| 519 |
+
"model.layers.69.self_attn.q_a_layernorm",
|
| 520 |
+
"model.layers.13.input_layernorm",
|
| 521 |
+
"model.layers.74.self_attn.indexer.k_norm",
|
| 522 |
+
"model.layers.29.mlp.gate",
|
| 523 |
+
"model.layers.7.mlp.gate.e_score_correction_bias",
|
| 524 |
+
"model.layers.3.self_attn.kv_a_layernorm",
|
| 525 |
+
"model.layers.35.self_attn.kv_a_layernorm",
|
| 526 |
+
"model.layers.46.self_attn.indexers_proj",
|
| 527 |
+
"model.layers.0.self_attn.kv_a_layernorm",
|
| 528 |
+
"model.layers.43.self_attn.q_a_layernorm",
|
| 529 |
+
"model.norm",
|
| 530 |
+
"model.layers.1.self_attn.kv_a_layernorm",
|
| 531 |
+
"model.layers.38.self_attn.indexer.k_norm.bias",
|
| 532 |
+
"model.layers.30.self_attn.q_a_layernorm",
|
| 533 |
+
"model.layers.0.input_layernorm",
|
| 534 |
+
"model.layers.47.input_layernorm",
|
| 535 |
+
"model.layers.8.self_attn.q_a_layernorm",
|
| 536 |
+
"model.layers.61.self_attn.q_a_layernorm",
|
| 537 |
+
"model.layers.1.self_attn.indexer.k_norm.bias",
|
| 538 |
+
"model.layers.62.mlp.gate.e_score_correction_bias",
|
| 539 |
+
"model.layers.66.self_attn.q_a_layernorm",
|
| 540 |
+
"model.layers.46.self_attn.kv_a_layernorm",
|
| 541 |
+
"model.layers.66.mlp.gate",
|
| 542 |
+
"model.layers.69.input_layernorm",
|
| 543 |
+
"model.layers.69.self_attn.kv_a_layernorm",
|
| 544 |
+
"model.layers.22.input_layernorm",
|
| 545 |
+
"model.layers.30.post_attention_layernorm",
|
| 546 |
+
"model.layers.24.self_attn.q_a_layernorm",
|
| 547 |
+
"model.layers.48.mlp.gate",
|
| 548 |
+
"model.layers.7.self_attn.kv_a_layernorm",
|
| 549 |
+
"model.layers.67.input_layernorm",
|
| 550 |
+
"model.layers.27.self_attn.q_a_layernorm",
|
| 551 |
+
"model.layers.23.mlp.gate",
|
| 552 |
+
"model.layers.45.mlp.gate.e_score_correction_bias",
|
| 553 |
+
"model.layers.76.self_attn.kv_a_layernorm",
|
| 554 |
+
"model.layers.22.self_attn.q_a_layernorm",
|
| 555 |
+
"model.layers.78.mlp.gate",
|
| 556 |
+
"model.layers.9.mlp.gate",
|
| 557 |
+
"model.layers.57.self_attn.q_a_layernorm",
|
| 558 |
+
"model.layers.78.mlp.gate.e_score_correction_bias",
|
| 559 |
+
"model.layers.23.post_attention_layernorm",
|
| 560 |
+
"model.layers.38.self_attn.q_a_layernorm",
|
| 561 |
+
"model.layers.53.mlp.gate",
|
| 562 |
+
"model.layers.77.self_attn.q_a_layernorm",
|
| 563 |
+
"model.layers.62.self_attn.kv_a_layernorm",
|
| 564 |
+
"model.layers.12.mlp.gate",
|
| 565 |
+
"model.layers.34.self_attn.indexer.k_norm",
|
| 566 |
+
"model.layers.46.self_attn.q_a_layernorm",
|
| 567 |
+
"model.layers.36.self_attn.q_a_layernorm",
|
| 568 |
+
"model.layers.58.self_attn.indexer.k_norm.bias",
|
| 569 |
+
"model.layers.60.post_attention_layernorm",
|
| 570 |
+
"model.layers.28.post_attention_layernorm",
|
| 571 |
+
"model.layers.2.self_attn.kv_a_layernorm",
|
| 572 |
+
"model.layers.70.self_attn.indexers_proj",
|
| 573 |
+
"model.layers.16.mlp.gate.e_score_correction_bias",
|
| 574 |
+
"model.layers.2.self_attn.indexer.k_norm",
|
| 575 |
+
"model.layers.31.self_attn.kv_a_layernorm",
|
| 576 |
+
"model.layers.64.input_layernorm",
|
| 577 |
+
"model.layers.6.mlp.gate.e_score_correction_bias",
|
| 578 |
+
"model.layers.50.self_attn.indexer.k_norm",
|
| 579 |
+
"model.layers.58.self_attn.q_a_layernorm",
|
| 580 |
+
"model.layers.57.mlp.gate.e_score_correction_bias",
|
| 581 |
+
"model.layers.13.post_attention_layernorm",
|
| 582 |
+
"model.layers.28.self_attn.kv_a_layernorm",
|
| 583 |
+
"model.layers.31.self_attn.q_a_layernorm",
|
| 584 |
+
"model.layers.1.self_attn.q_a_layernorm",
|
| 585 |
+
"model.layers.17.mlp.gate",
|
| 586 |
+
"model.layers.15.post_attention_layernorm",
|
| 587 |
+
"model.layers.18.self_attn.indexer.k_norm.bias",
|
| 588 |
+
"model.layers.18.self_attn.indexer.k_norm",
|
| 589 |
+
"model.layers.43.mlp.gate.e_score_correction_bias",
|
| 590 |
+
"model.layers.11.input_layernorm",
|
| 591 |
+
"model.layers.9.post_attention_layernorm",
|
| 592 |
+
"model.layers.33.input_layernorm",
|
| 593 |
+
"model.layers.66.input_layernorm",
|
| 594 |
+
"model.layers.78.self_attn.indexers_proj",
|
| 595 |
+
"model.layers.54.post_attention_layernorm",
|
| 596 |
+
"model.layers.53.mlp.gate.e_score_correction_bias",
|
| 597 |
+
"model.layers.5.mlp.gate.e_score_correction_bias",
|
| 598 |
+
"model.layers.19.mlp.gate",
|
| 599 |
+
"model.layers.49.mlp.gate",
|
| 600 |
+
"model.layers.66.self_attn.indexers_proj",
|
| 601 |
+
"model.layers.14.self_attn.indexer.k_norm.bias",
|
| 602 |
+
"model.layers.41.mlp.gate",
|
| 603 |
+
"model.layers.42.self_attn.indexer.k_norm.bias",
|
| 604 |
+
"model.layers.65.input_layernorm",
|
| 605 |
+
"model.layers.75.mlp.gate",
|
| 606 |
+
"model.layers.12.self_attn.kv_a_layernorm",
|
| 607 |
+
"model.layers.53.input_layernorm",
|
| 608 |
+
"model.layers.58.self_attn.kv_a_layernorm",
|
| 609 |
+
"model.layers.60.self_attn.q_a_layernorm",
|
| 610 |
+
"model.layers.6.mlp.gate",
|
| 611 |
+
"model.layers.49.self_attn.kv_a_layernorm",
|
| 612 |
+
"model.layers.16.mlp.gate",
|
| 613 |
+
"model.layers.22.mlp.gate",
|
| 614 |
+
"model.layers.58.post_attention_layernorm",
|
| 615 |
+
"model.layers.15.mlp.gate.e_score_correction_bias",
|
| 616 |
+
"model.layers.26.input_layernorm",
|
| 617 |
+
"model.layers.3.post_attention_layernorm",
|
| 618 |
+
"model.layers.6.input_layernorm",
|
| 619 |
+
"model.layers.22.self_attn.kv_a_layernorm",
|
| 620 |
+
"model.layers.16.input_layernorm",
|
| 621 |
+
"model.layers.33.post_attention_layernorm",
|
| 622 |
+
"model.layers.17.post_attention_layernorm",
|
| 623 |
+
"model.layers.35.mlp.gate",
|
| 624 |
+
"model.layers.56.post_attention_layernorm",
|
| 625 |
+
"model.layers.7.self_attn.q_a_layernorm",
|
| 626 |
+
"model.layers.24.mlp.gate",
|
| 627 |
+
"model.layers.24.post_attention_layernorm",
|
| 628 |
+
"model.layers.36.mlp.gate.e_score_correction_bias",
|
| 629 |
+
"model.layers.56.mlp.gate.e_score_correction_bias",
|
| 630 |
+
"model.layers.32.post_attention_layernorm",
|
| 631 |
+
"model.layers.47.post_attention_layernorm",
|
| 632 |
+
"model.layers.40.mlp.gate",
|
| 633 |
+
"model.layers.41.self_attn.kv_a_layernorm",
|
| 634 |
+
"model.layers.52.self_attn.kv_a_layernorm",
|
| 635 |
+
"model.layers.9.self_attn.kv_a_layernorm",
|
| 636 |
+
"model.layers.77.mlp.gate.e_score_correction_bias",
|
| 637 |
+
"model.layers.78.shared_head.norm",
|
| 638 |
+
"model.layers.53.post_attention_layernorm",
|
| 639 |
+
"model.layers.63.self_attn.kv_a_layernorm",
|
| 640 |
+
"model.layers.48.self_attn.kv_a_layernorm",
|
| 641 |
+
"model.layers.28.mlp.gate.e_score_correction_bias",
|
| 642 |
+
"model.layers.8.mlp.gate.e_score_correction_bias",
|
| 643 |
+
"model.layers.52.mlp.gate.e_score_correction_bias",
|
| 644 |
+
"model.layers.52.post_attention_layernorm",
|
| 645 |
+
"model.layers.18.self_attn.q_a_layernorm",
|
| 646 |
+
"model.layers.50.mlp.gate.e_score_correction_bias",
|
| 647 |
+
"model.layers.64.mlp.gate.e_score_correction_bias",
|
| 648 |
+
"model.layers.38.mlp.gate.e_score_correction_bias",
|
| 649 |
+
"model.layers.59.input_layernorm",
|
| 650 |
+
"model.layers.21.input_layernorm",
|
| 651 |
+
"model.layers.39.mlp.gate",
|
| 652 |
+
"model.layers.77.post_attention_layernorm",
|
| 653 |
+
"model.layers.76.self_attn.q_a_layernorm",
|
| 654 |
+
"model.layers.12.post_attention_layernorm",
|
| 655 |
+
"model.layers.43.post_attention_layernorm",
|
| 656 |
+
"model.layers.35.input_layernorm",
|
| 657 |
+
"model.layers.62.mlp.gate",
|
| 658 |
+
"model.layers.38.self_attn.kv_a_layernorm",
|
| 659 |
+
"model.layers.63.mlp.gate",
|
| 660 |
+
"model.layers.27.mlp.gate.e_score_correction_bias",
|
| 661 |
+
"model.layers.18.mlp.gate",
|
| 662 |
+
"model.layers.25.post_attention_layernorm",
|
| 663 |
+
"model.layers.55.mlp.gate.e_score_correction_bias",
|
| 664 |
+
"model.layers.66.self_attn.indexer.k_norm",
|
| 665 |
+
"model.layers.48.self_attn.q_a_layernorm",
|
| 666 |
+
"model.layers.78.eh_proj",
|
| 667 |
+
"model.layers.77.mlp.gate",
|
| 668 |
+
"model.layers.6.self_attn.indexers_proj",
|
| 669 |
+
"model.layers.14.self_attn.q_a_layernorm",
|
| 670 |
+
"model.layers.2.self_attn.q_a_layernorm",
|
| 671 |
+
"model.layers.42.mlp.gate",
|
| 672 |
+
"model.layers.54.mlp.gate.e_score_correction_bias",
|
| 673 |
+
"model.layers.60.input_layernorm",
|
| 674 |
+
"model.layers.40.self_attn.kv_a_layernorm",
|
| 675 |
+
"model.layers.51.self_attn.kv_a_layernorm",
|
| 676 |
+
"model.layers.18.input_layernorm",
|
| 677 |
+
"model.layers.30.self_attn.indexers_proj",
|
| 678 |
+
"model.layers.53.self_attn.kv_a_layernorm",
|
| 679 |
+
"model.layers.6.post_attention_layernorm",
|
| 680 |
+
"model.layers.70.self_attn.indexer.k_norm.bias",
|
| 681 |
+
"model.layers.54.input_layernorm",
|
| 682 |
+
"model.layers.41.self_attn.q_a_layernorm",
|
| 683 |
+
"model.layers.18.mlp.gate.e_score_correction_bias",
|
| 684 |
+
"model.layers.34.mlp.gate.e_score_correction_bias",
|
| 685 |
+
"model.layers.47.mlp.gate",
|
| 686 |
+
"model.layers.46.mlp.gate",
|
| 687 |
+
"model.layers.25.self_attn.q_a_layernorm",
|
| 688 |
+
"model.layers.63.mlp.gate.e_score_correction_bias",
|
| 689 |
+
"model.layers.66.post_attention_layernorm",
|
| 690 |
+
"model.layers.76.mlp.gate",
|
| 691 |
+
"model.embed_tokens",
|
| 692 |
+
"model.layers.67.self_attn.kv_a_layernorm",
|
| 693 |
+
"model.layers.67.mlp.gate.e_score_correction_bias",
|
| 694 |
+
"model.layers.26.self_attn.kv_a_layernorm",
|
| 695 |
+
"model.layers.31.mlp.gate",
|
| 696 |
+
"model.layers.18.self_attn.kv_a_layernorm",
|
| 697 |
+
"model.layers.34.mlp.gate",
|
| 698 |
+
"model.layers.55.post_attention_layernorm",
|
| 699 |
+
"model.layers.30.input_layernorm",
|
| 700 |
+
"model.layers.50.mlp.gate",
|
| 701 |
+
"model.layers.63.input_layernorm",
|
| 702 |
+
"model.layers.11.self_attn.kv_a_layernorm",
|
| 703 |
+
"model.layers.24.self_attn.kv_a_layernorm",
|
| 704 |
+
"model.layers.75.mlp.gate.e_score_correction_bias",
|
| 705 |
+
"model.layers.10.post_attention_layernorm",
|
| 706 |
+
"model.layers.1.self_attn.indexers_proj",
|
| 707 |
+
"model.layers.42.self_attn.indexers_proj",
|
| 708 |
+
"model.layers.46.input_layernorm",
|
| 709 |
+
"model.layers.23.self_attn.q_a_layernorm",
|
| 710 |
+
"model.layers.63.self_attn.q_a_layernorm",
|
| 711 |
+
"model.layers.14.self_attn.indexer.k_norm",
|
| 712 |
+
"model.layers.14.self_attn.indexers_proj",
|
| 713 |
+
"model.layers.60.mlp.gate",
|
| 714 |
+
"model.layers.70.mlp.gate.e_score_correction_bias",
|
| 715 |
+
"model.layers.53.self_attn.q_a_layernorm",
|
| 716 |
+
"model.layers.0.post_attention_layernorm",
|
| 717 |
+
"model.layers.35.mlp.gate.e_score_correction_bias",
|
| 718 |
+
"model.layers.75.self_attn.kv_a_layernorm",
|
| 719 |
+
"model.layers.1.input_layernorm",
|
| 720 |
+
"model.layers.42.post_attention_layernorm",
|
| 721 |
+
"model.layers.37.input_layernorm",
|
| 722 |
+
"model.layers.9.mlp.gate.e_score_correction_bias",
|
| 723 |
+
"model.layers.46.post_attention_layernorm",
|
| 724 |
+
"model.layers.26.mlp.gate",
|
| 725 |
+
"model.layers.65.mlp.gate.e_score_correction_bias",
|
| 726 |
+
"model.layers.67.self_attn.q_a_layernorm",
|
| 727 |
+
"model.layers.44.mlp.gate.e_score_correction_bias",
|
| 728 |
+
"model.layers.33.mlp.gate",
|
| 729 |
+
"model.layers.29.input_layernorm",
|
| 730 |
+
"model.layers.18.post_attention_layernorm",
|
| 731 |
+
"model.layers.75.post_attention_layernorm",
|
| 732 |
+
"model.layers.44.self_attn.q_a_layernorm",
|
| 733 |
+
"model.layers.10.mlp.gate",
|
| 734 |
+
"model.layers.21.mlp.gate",
|
| 735 |
+
"model.layers.58.mlp.gate.e_score_correction_bias",
|
| 736 |
+
"model.layers.7.post_attention_layernorm",
|
| 737 |
+
"model.layers.50.self_attn.q_a_layernorm",
|
| 738 |
+
"model.layers.9.self_attn.q_a_layernorm",
|
| 739 |
+
"model.layers.2.self_attn.indexers_proj",
|
| 740 |
+
"model.layers.0.self_attn.indexer.k_norm.bias",
|
| 741 |
+
"model.layers.74.self_attn.kv_a_layernorm",
|
| 742 |
+
"model.layers.74.mlp.gate.e_score_correction_bias",
|
| 743 |
+
"model.layers.49.mlp.gate.e_score_correction_bias",
|
| 744 |
+
"model.layers.62.post_attention_layernorm",
|
| 745 |
+
"model.layers.57.self_attn.kv_a_layernorm",
|
| 746 |
+
"model.layers.40.input_layernorm",
|
| 747 |
+
"model.layers.69.mlp.gate.e_score_correction_bias",
|
| 748 |
+
"model.layers.35.post_attention_layernorm",
|
| 749 |
+
"model.layers.74.self_attn.indexers_proj",
|
| 750 |
+
"model.layers.55.input_layernorm",
|
| 751 |
+
"model.layers.49.input_layernorm",
|
| 752 |
+
"model.layers.40.mlp.gate.e_score_correction_bias",
|
| 753 |
+
"model.layers.25.mlp.gate",
|
| 754 |
+
"model.layers.2.self_attn.indexer.k_norm.bias",
|
| 755 |
+
"model.layers.68.self_attn.kv_a_layernorm",
|
| 756 |
+
"model.layers.51.input_layernorm",
|
| 757 |
+
"model.layers.22.self_attn.indexers_proj",
|
| 758 |
+
"model.layers.10.input_layernorm",
|
| 759 |
+
"model.layers.42.self_attn.indexer.k_norm",
|
| 760 |
+
"model.layers.56.self_attn.kv_a_layernorm",
|
| 761 |
+
"model.layers.17.self_attn.q_a_layernorm",
|
| 762 |
+
"model.layers.59.self_attn.kv_a_layernorm",
|
| 763 |
+
"model.layers.3.input_layernorm",
|
| 764 |
+
"model.layers.57.input_layernorm",
|
| 765 |
+
"model.layers.38.input_layernorm",
|
| 766 |
+
"model.layers.62.self_attn.indexer.k_norm",
|
| 767 |
+
"model.layers.20.mlp.gate",
|
| 768 |
+
"model.layers.64.mlp.gate",
|
| 769 |
+
"model.layers.28.self_attn.q_a_layernorm",
|
| 770 |
+
"model.layers.32.self_attn.kv_a_layernorm",
|
| 771 |
+
"model.layers.10.mlp.gate.e_score_correction_bias",
|
| 772 |
+
"model.layers.5.self_attn.q_a_layernorm",
|
| 773 |
+
"model.layers.37.self_attn.kv_a_layernorm"
|
| 774 |
+
]
|
| 775 |
+
}
|
| 776 |
+
}
|
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.12.0"
|
| 12 |
+
}
|
model-00001-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29c537abddf4fc94689defddbdd03694b287385c620072a7805d63a3dcd7d5b6
|
| 3 |
+
size 5363940952
|
model-00002-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dedd05754d9013db7e444cada55ebf671bf3a1171c0728ee4ea9384bb7818afe
|
| 3 |
+
size 5361736696
|
model-00003-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8b0aac7fdc8018492034d58e39f3441b021a76a871ea00e27212d5f3d2052e6
|
| 3 |
+
size 5363339120
|
model-00004-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43155b1b8fd824776fbddcefb59e557419404aa3c5f377000cf8693e74ae5cb8
|
| 3 |
+
size 5361736640
|
model-00005-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ef7a74c4d73583f3ef5c9c1322bc0470aa17b6780ce56e4b8fcdb0a7644fe76
|
| 3 |
+
size 5366353560
|
model-00006-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6d12ad601a6c1e6867461d0ffac95ff5f56eae86f8bbceaf5ed1586a402a6e3
|
| 3 |
+
size 5361736504
|
model-00007-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5930833775b24939899696a815d908009f84945fbc639e479d3b394885c962f
|
| 3 |
+
size 5366353704
|
model-00008-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c70bd39043245761a0885402bbb6a90e621fba99003ccbb25b7fbbde901f54c0
|
| 3 |
+
size 5361736368
|
model-00009-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3174f361cc94e7cfd02902bed5d67273f21cdfbde36db01fa422710b29a4caf
|
| 3 |
+
size 5366353832
|
model-00010-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52fc7f5a00da86bd3339d721b22ebb043e64afdf433afc2d8907d40799067e51
|
| 3 |
+
size 5361736232
|
model-00011-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0fb8066c93ba2423ce7c3a7b9700a0b7c7f90ffa89faa55ebc03b8a320d0cce
|
| 3 |
+
size 5363339600
|
model-00012-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b00d5dc53dc706af6f4ba10e3ac0fe3249674e6d97e1bebb53044eae125aa3aa
|
| 3 |
+
size 5366353488
|
model-00013-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5c86c0a3691912ed2e6e5f4a3492672e1a6f4b6e75b1d49928d4f35ca21b05b
|
| 3 |
+
size 5361736696
|
model-00014-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97c98b26dd6784e2954dd5025f359748e49cc36166e0d3f497a639b3871bbe46
|
| 3 |
+
size 5366353496
|
model-00015-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08c11bb2165020b017c5976a961551a3b550a9ad057ea82b7fbd2b6fd2fc7088
|
| 3 |
+
size 5361736680
|
model-00016-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2496b285f6111f24ee2e25490f91e463cdb5d05c5088d7c5cd9d8b1bbb162cb9
|
| 3 |
+
size 5366353520
|
model-00017-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0642d34c281b16e9db2110996b978f357d1aee543cc5ff9c1f2187430333f196
|
| 3 |
+
size 5361736544
|
model-00018-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1755443ec0acf585f005ec1bc17b7c3689983c34cd001610a7108fd8f15cff26
|
| 3 |
+
size 5363339264
|
model-00019-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bd772671cce412a6af8661db72ec1432982cc95896697d83f5f00af7684704f
|
| 3 |
+
size 5361736408
|
model-00020-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b29f71186de8a69156c9ba19cbb8b31246c06db7470668b8b8091ead510b4d76
|
| 3 |
+
size 5364805840
|
model-00021-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52a10d45444bf9eaf7b24585d43461f172f1d46846acc549e6166bd0866e402b
|
| 3 |
+
size 5361736336
|
model-00022-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51e81bc5beaa90043e12d4666fed74040ba6617507507a2e6c02ccb3b163ed0e
|
| 3 |
+
size 5366353872
|
model-00023-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b5bee00ed2e620539755ab39b8572975588d3e9f923d7de8591a65c9e39bb00
|
| 3 |
+
size 5357948328
|
model-00024-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3aa762520255d1509cf79528f30052fd2be8225b0dcf8affaf2963c51b6c13e2
|
| 3 |
+
size 5357555688
|
model-00025-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29031699298a9e5517a89a0baf400782a250db70b53a8cd29f8519bde62de607
|
| 3 |
+
size 5363339104
|
model-00026-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4d5c305f39b22dcb32ea1fdcad76062dd18892dc69af0e0221626383dd9c83f
|
| 3 |
+
size 5361736696
|
model-00027-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2652b27a61aa7b86f0a53e6bd9c139732b3d1e17388f06e92d1d98c7c3f9c6a1
|
| 3 |
+
size 5366353504
|
model-00028-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2aadd7705973b5934fa8fdb18b13109ff18bc460e8169475aeed9f668d3945c5
|
| 3 |
+
size 5361736648
|
model-00029-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f7f418937f893768c9d26f432ec8be70d25f2d3fe0b78e0ebc1f3067dd497c9
|
| 3 |
+
size 5366353560
|
model-00030-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d9c553bc388cc7069cf50d126a86907bb351e31e26e78b91f3ed29abee9a8c1
|
| 3 |
+
size 5361736512
|
model-00031-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d16a2c2d98a41b822192eac18902e1b33ae45561a67652fc26ac8d2cbadf4e66
|
| 3 |
+
size 5366353688
|
model-00032-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d890300d1c49787848d9ed81b90f20699f7dd6a237f0bb8f5f915584e47ddf6
|
| 3 |
+
size 5361736376
|
model-00033-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:503a2745947e74340d1e4328a5bcb8854f0c57185141b704c0755399a5c1c6e8
|
| 3 |
+
size 5363339440
|
model-00034-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:436240414a63d7d3312c74ff4929f6d72f7bdb4e0a91989ff4b59ee212f190ee
|
| 3 |
+
size 5361736240
|
model-00035-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fda066767b805686224e38cad3ee7f357f0b53c398710d07b40a5b75392daecb
|
| 3 |
+
size 5366353976
|
model-00036-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43294735fb32f40e1196848e31b9e527958480cc63a2dbe4f75005b3e40467ad
|
| 3 |
+
size 5366353488
|
model-00037-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c9e2ecb1c450d959b2ff81936442cd1cff952c9b7897fcde4ecbc94dc11f69c
|
| 3 |
+
size 5361736696
|
model-00038-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e97f6e12233173645263c8cb25ae809c8393c19545669dd0f116a27282c781d1
|
| 3 |
+
size 5366353304
|
model-00039-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb6f9c9987cf738974a55869fdb4299d3ae04addf3c0a38903178f94a7cbe3ae
|
| 3 |
+
size 5361735832
|
model-00040-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77db405ecf43966c2be50ce6dbb5cdd7992e6aefc1c6b666917dfe4ac16fcc92
|
| 3 |
+
size 5366353016
|
model-00041-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb4f9019124dea06e8506081d93ffe0d408dc652a241fe7be89e15fa65ff56de
|
| 3 |
+
size 5361736552
|
model-00042-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16a7cdda8b21ddbe934b49e9725bed3738c28a350376290e8ca350da60cbadc8
|
| 3 |
+
size 5363339264
|
model-00043-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f8bf5154605ddd7c91a6703223626f6e68ff6b14aac6c5ad89ef9fa19106355
|
| 3 |
+
size 5361736416
|
model-00044-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d1645412f18a8981c9f03c3cd3ec4df8ca575f3536dd724a6d8d77cb73ffc2c
|
| 3 |
+
size 5366353776
|