Text Generation
Transformers
Safetensors
English
Chinese
glm5_next
image-text-to-text
conversational
Eval Results
fp8
Instructions to use zai-org/GLM-5.3-Flash with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-5.3-Flash with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zai-org/GLM-5.3-Flash") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("zai-org/GLM-5.3-Flash") model = AutoModelForMultimodalLM.from_pretrained("zai-org/GLM-5.3-Flash", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.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-Flash 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-Flash" # 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-Flash", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zai-org/GLM-5.3-Flash
- SGLang
How to use zai-org/GLM-5.3-Flash 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-Flash" \ --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-Flash", "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-Flash" \ --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-Flash", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zai-org/GLM-5.3-Flash with Docker Model Runner:
docker model run hf.co/zai-org/GLM-5.3-Flash
Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +1 -0
- chat_template.jinja +257 -0
- config.json +1759 -0
- generation_config.json +12 -0
- model-00001-of-00062.safetensors +3 -0
- model-00002-of-00062.safetensors +3 -0
- model-00003-of-00062.safetensors +3 -0
- model-00004-of-00062.safetensors +3 -0
- model-00005-of-00062.safetensors +3 -0
- model-00007-of-00062.safetensors +3 -0
- model-00011-of-00062.safetensors +3 -0
- model-00012-of-00062.safetensors +3 -0
- model-00013-of-00062.safetensors +3 -0
- model-00014-of-00062.safetensors +3 -0
- model-00015-of-00062.safetensors +3 -0
- model-00016-of-00062.safetensors +3 -0
- model-00018-of-00062.safetensors +3 -0
- model-00019-of-00062.safetensors +3 -0
- model-00020-of-00062.safetensors +3 -0
- model-00024-of-00062.safetensors +3 -0
- model-00025-of-00062.safetensors +3 -0
- model-00026-of-00062.safetensors +3 -0
- model-00028-of-00062.safetensors +3 -0
- model-00029-of-00062.safetensors +3 -0
- model-00030-of-00062.safetensors +3 -0
- model-00031-of-00062.safetensors +3 -0
- model-00033-of-00062.safetensors +3 -0
- model-00034-of-00062.safetensors +3 -0
- model-00037-of-00062.safetensors +3 -0
- model-00039-of-00062.safetensors +3 -0
- model-00040-of-00062.safetensors +3 -0
- model-00041-of-00062.safetensors +3 -0
- model-00042-of-00062.safetensors +3 -0
- model-00044-of-00062.safetensors +3 -0
- model-00045-of-00062.safetensors +3 -0
- model-00046-of-00062.safetensors +3 -0
- model-00047-of-00062.safetensors +3 -0
- model-00048-of-00062.safetensors +3 -0
- model-00050-of-00062.safetensors +3 -0
- model-00052-of-00062.safetensors +3 -0
- model-00053-of-00062.safetensors +3 -0
- model-00055-of-00062.safetensors +3 -0
- model-00056-of-00062.safetensors +3 -0
- model-00057-of-00062.safetensors +3 -0
- model-00058-of-00062.safetensors +3 -0
- model-00061-of-00062.safetensors +3 -0
- model-00062-of-00062.safetensors +3 -0
- model.safetensors.index.json +0 -0
- processor_config.json +44 -0
- tokenizer.json +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 emit_image() -%}<|begin_of_image|><|image|><|end_of_image|>{%- endmacro -%}
|
| 52 |
+
{%- macro emit_video() -%}<|begin_of_video|><|video|><|end_of_video|>{%- endmacro -%}
|
| 53 |
+
{%- macro emit_audio() -%}<|begin_of_audio|><|end_of_audio|>{%- endmacro -%}
|
| 54 |
+
{%- macro visible_text(content) -%}
|
| 55 |
+
{%- if content is string -%}
|
| 56 |
+
{{- content -}}
|
| 57 |
+
{%- elif content is iterable and content is not mapping -%}
|
| 58 |
+
{%- for item in content -%}
|
| 59 |
+
{%- if item is mapping and item.type == 'text' -%}
|
| 60 |
+
{{- item.text -}}
|
| 61 |
+
{%- elif item is string -%}
|
| 62 |
+
{{- item -}}
|
| 63 |
+
{%- elif item is mapping and item.type in ['image', 'image_url'] -%}
|
| 64 |
+
{{- emit_image() -}}
|
| 65 |
+
{%- elif item is mapping and item.type in ['video', 'video_url'] -%}
|
| 66 |
+
{{- emit_video() -}}
|
| 67 |
+
{%- elif item is mapping and item.type in ['audio', 'audio_url', 'input_audio'] -%}
|
| 68 |
+
{{- emit_audio() -}}
|
| 69 |
+
{%- endif -%}
|
| 70 |
+
{%- endfor -%}
|
| 71 |
+
{%- else -%}
|
| 72 |
+
{{- content }}
|
| 73 |
+
{%- endif -%}
|
| 74 |
+
{%- endmacro -%}
|
| 75 |
+
{%- macro tool_response(text) -%}
|
| 76 |
+
{{- '<tool_response>' + text + '</tool_response>' -}}
|
| 77 |
+
{%- endmacro -%}
|
| 78 |
+
{%- macro render_tool_response(m) -%}
|
| 79 |
+
{%- if m.content is string -%}
|
| 80 |
+
{{- tool_response(m.content) -}}
|
| 81 |
+
{%- elif m.content and m.content is not mapping and m.content.0.type == "tool_reference" -%}
|
| 82 |
+
{{- tool_references_to_response(m.content) -}}
|
| 83 |
+
{%- elif is_list_of_outputs(m) -%}
|
| 84 |
+
{%- for tr in m.content -%}
|
| 85 |
+
{%- 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" -%}
|
| 86 |
+
{{- tool_references_to_response(tr.output) -}}
|
| 87 |
+
{%- else -%}
|
| 88 |
+
{{- tool_response(visible_text(tr.output)) -}}
|
| 89 |
+
{%- endif -%}
|
| 90 |
+
{%- endfor -%}
|
| 91 |
+
{%- else -%}
|
| 92 |
+
{{- tool_response(visible_text(m.content)) -}}
|
| 93 |
+
{%- endif -%}
|
| 94 |
+
{%- endmacro -%}
|
| 95 |
+
{%- macro id_of(obj) -%}
|
| 96 |
+
{%- if obj.tool_call_id -%}
|
| 97 |
+
{{- obj.tool_call_id -}}
|
| 98 |
+
{%- elif obj.id -%}
|
| 99 |
+
{{- obj.id -}}
|
| 100 |
+
{%- endif -%}
|
| 101 |
+
{%- endmacro -%}
|
| 102 |
+
{%- macro is_list_of_outputs(m) -%}
|
| 103 |
+
{%- if m.content and m.content.0.output is defined -%}1{%- endif -%}
|
| 104 |
+
{%- endmacro -%}
|
| 105 |
+
{%- macro has_dup_tool_result_id(lo, hi, target) -%}
|
| 106 |
+
{%- set ns_cnt = namespace(n=0) -%}
|
| 107 |
+
{%- for k in range(lo, hi + 1) -%}
|
| 108 |
+
{%- set m = messages[k] -%}
|
| 109 |
+
{%- if is_list_of_outputs(m) -%}
|
| 110 |
+
{%- for entry in m.content -%}
|
| 111 |
+
{%- if id_of(entry) == target -%}
|
| 112 |
+
{%- set ns_cnt.n = ns_cnt.n + 1 -%}
|
| 113 |
+
{%- endif -%}
|
| 114 |
+
{%- endfor -%}
|
| 115 |
+
{%- elif id_of(m) == target -%}
|
| 116 |
+
{%- set ns_cnt.n = ns_cnt.n + 1 -%}
|
| 117 |
+
{%- endif -%}
|
| 118 |
+
{%- if ns_cnt.n > 1 -%}{%- break -%}{%- endif -%}
|
| 119 |
+
{%- endfor -%}
|
| 120 |
+
{%- if ns_cnt.n > 1 -%}1{%- endif -%}
|
| 121 |
+
{%- endmacro -%}
|
| 122 |
+
{%- macro tc_id_exists(tcs, target) -%}
|
| 123 |
+
{%- set ns_f = namespace(found=false) -%}
|
| 124 |
+
{%- for tc in tcs -%}
|
| 125 |
+
{%- if id_of(tc) == target -%}
|
| 126 |
+
{%- set ns_f.found = true -%}
|
| 127 |
+
{%- break -%}
|
| 128 |
+
{%- endif -%}
|
| 129 |
+
{%- endfor -%}
|
| 130 |
+
{%- if ns_f.found -%}1{%- endif -%}
|
| 131 |
+
{%- endmacro -%}
|
| 132 |
+
{%- set ns = namespace(last_user_index=-1) -%}
|
| 133 |
+
{%- for m in messages %}
|
| 134 |
+
{%- if m.role == 'user' %}
|
| 135 |
+
{%- set ns.last_user_index = loop.index0 -%}
|
| 136 |
+
{%- endif %}
|
| 137 |
+
{%- endfor %}
|
| 138 |
+
{%- for m in messages -%}
|
| 139 |
+
{%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
|
| 140 |
+
{%- elif m.role == 'assistant' -%}
|
| 141 |
+
<|assistant|>
|
| 142 |
+
{%- set content = visible_text(m.content) %}
|
| 143 |
+
{%- if m.reasoning_content is string %}
|
| 144 |
+
{%- set reasoning_content = m.reasoning_content %}
|
| 145 |
+
{%- elif '</think>' in content %}
|
| 146 |
+
{%- set reasoning_content = content.split('</think>')[0].split('<think>')[-1] %}
|
| 147 |
+
{%- set content = content.split('</think>')[-1] %}
|
| 148 |
+
{%- endif %}
|
| 149 |
+
{%- if (not clear_thinking or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
|
| 150 |
+
{{ '<think>' + reasoning_content + '</think>'}}
|
| 151 |
+
{%- else -%}
|
| 152 |
+
{{ '<think></think>' }}
|
| 153 |
+
{%- endif -%}
|
| 154 |
+
{%- if content.strip() -%}
|
| 155 |
+
{{ content.strip() }}
|
| 156 |
+
{%- endif -%}
|
| 157 |
+
{% if m.tool_calls %}
|
| 158 |
+
{% for tc in m.tool_calls %}
|
| 159 |
+
{%- if tc.function %}
|
| 160 |
+
{%- set tc = tc.function %}
|
| 161 |
+
{%- endif %}
|
| 162 |
+
{{- '<tool_call>' + tc.name -}}
|
| 163 |
+
{% 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 %}
|
| 164 |
+
{% endif %}
|
| 165 |
+
{%- elif m.role == 'tool' -%}
|
| 166 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 167 |
+
{{- '<|observation|>' -}}
|
| 168 |
+
{%- set block_start = loop.index0 -%}
|
| 169 |
+
{%- set ns_blk = namespace(end=block_start) -%}
|
| 170 |
+
{%- for j in range(block_start, messages|length) -%}
|
| 171 |
+
{%- if messages[j].role == 'tool' -%}
|
| 172 |
+
{%- set ns_blk.end = j -%}
|
| 173 |
+
{%- else -%}
|
| 174 |
+
{%- break -%}
|
| 175 |
+
{%- endif -%}
|
| 176 |
+
{%- endfor -%}
|
| 177 |
+
{%- set ns_a = namespace(tool_calls=none) -%}
|
| 178 |
+
{%- if block_start > 0 and messages[block_start - 1].role == 'assistant' and messages[block_start - 1].tool_calls -%}
|
| 179 |
+
{%- set ns_a.tool_calls = messages[block_start - 1].tool_calls -%}
|
| 180 |
+
{%- endif -%}
|
| 181 |
+
{%- set ns_chk = namespace(can_sort=true) -%}
|
| 182 |
+
{%- if not ns_a.tool_calls -%}
|
| 183 |
+
{%- set ns_chk.can_sort = false -%}
|
| 184 |
+
{%- else -%}
|
| 185 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 186 |
+
{%- set m = messages[k] -%}
|
| 187 |
+
{%- if is_list_of_outputs(m) -%}
|
| 188 |
+
{%- for entry in m.content -%}
|
| 189 |
+
{%- set eid = id_of(entry) -%}
|
| 190 |
+
{%- if not eid -%}
|
| 191 |
+
{%- set ns_chk.can_sort = false -%}
|
| 192 |
+
{%- elif has_dup_tool_result_id(block_start, ns_blk.end, eid) -%}
|
| 193 |
+
{%- set ns_chk.can_sort = false -%}
|
| 194 |
+
{%- elif not tc_id_exists(ns_a.tool_calls, eid) -%}
|
| 195 |
+
{%- set ns_chk.can_sort = false -%}
|
| 196 |
+
{%- endif -%}
|
| 197 |
+
{%- endfor -%}
|
| 198 |
+
{%- else -%}
|
| 199 |
+
{%- set tk_id = id_of(m) -%}
|
| 200 |
+
{%- if not tk_id -%}
|
| 201 |
+
{%- set ns_chk.can_sort = false -%}
|
| 202 |
+
{%- elif has_dup_tool_result_id(block_start, ns_blk.end, tk_id) -%}
|
| 203 |
+
{%- set ns_chk.can_sort = false -%}
|
| 204 |
+
{%- elif not tc_id_exists(ns_a.tool_calls, tk_id) -%}
|
| 205 |
+
{%- set ns_chk.can_sort = false -%}
|
| 206 |
+
{%- endif -%}
|
| 207 |
+
{%- endif -%}
|
| 208 |
+
{%- endfor -%}
|
| 209 |
+
{%- for i in range(ns_a.tool_calls | length) -%}
|
| 210 |
+
{%- set tc_id = id_of(ns_a.tool_calls[i]) -%}
|
| 211 |
+
{%- if not tc_id -%}
|
| 212 |
+
{%- set ns_chk.can_sort = false -%}
|
| 213 |
+
{%- endif -%}
|
| 214 |
+
{%- for j in range(i + 1, ns_a.tool_calls | length) -%}
|
| 215 |
+
{%- if id_of(ns_a.tool_calls[j]) == tc_id -%}
|
| 216 |
+
{%- set ns_chk.can_sort = false -%}
|
| 217 |
+
{%- endif -%}
|
| 218 |
+
{%- endfor -%}
|
| 219 |
+
{%- endfor -%}
|
| 220 |
+
{%- endif -%}
|
| 221 |
+
{%- if ns_chk.can_sort -%}
|
| 222 |
+
{%- for tc in ns_a.tool_calls -%}
|
| 223 |
+
{%- set tc_id = id_of(tc) -%}
|
| 224 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 225 |
+
{%- set m = messages[k] -%}
|
| 226 |
+
{%- if is_list_of_outputs(m) -%}
|
| 227 |
+
{%- for entry in m.content -%}
|
| 228 |
+
{%- set eid = id_of(entry) -%}
|
| 229 |
+
{%- if eid == tc_id -%}
|
| 230 |
+
{%- 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" -%}
|
| 231 |
+
{{- tool_references_to_response(entry.output) -}}
|
| 232 |
+
{%- else -%}
|
| 233 |
+
{{- tool_response(visible_text(entry.output)) -}}
|
| 234 |
+
{%- endif -%}
|
| 235 |
+
{%- endif -%}
|
| 236 |
+
{%- endfor -%}
|
| 237 |
+
{%- else -%}
|
| 238 |
+
{%- set tk_id = id_of(m) -%}
|
| 239 |
+
{%- if tk_id == tc_id -%}
|
| 240 |
+
{{- render_tool_response(m) -}}
|
| 241 |
+
{%- endif -%}
|
| 242 |
+
{%- endif -%}
|
| 243 |
+
{%- endfor -%}
|
| 244 |
+
{%- endfor -%}
|
| 245 |
+
{%- else -%}
|
| 246 |
+
{%- for k in range(block_start, ns_blk.end + 1) -%}
|
| 247 |
+
{{- render_tool_response(messages[k]) -}}
|
| 248 |
+
{%- endfor -%}
|
| 249 |
+
{%- endif -%}
|
| 250 |
+
{% endif -%}
|
| 251 |
+
{%- elif m.role == 'system' -%}
|
| 252 |
+
<|system|>{{ visible_text(m.content) }}
|
| 253 |
+
{%- endif -%}
|
| 254 |
+
{%- endfor -%}
|
| 255 |
+
{%- if add_generation_prompt -%}
|
| 256 |
+
<|assistant|>{{- '<think>' -}}
|
| 257 |
+
{%- endif -%}
|
config.json
ADDED
|
@@ -0,0 +1,1759 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Glm5NextForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"text_config": {
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"bos_token_id": null,
|
| 9 |
+
"dtype": "bfloat16",
|
| 10 |
+
"eos_token_id": [
|
| 11 |
+
154820,
|
| 12 |
+
154827,
|
| 13 |
+
154829
|
| 14 |
+
],
|
| 15 |
+
"first_k_dense_replace": 3,
|
| 16 |
+
"hc_eps": 1e-06,
|
| 17 |
+
"hc_mult": 4,
|
| 18 |
+
"hc_sinkhorn_iters": 20,
|
| 19 |
+
"head_dim": 0,
|
| 20 |
+
"hidden_act": "silu",
|
| 21 |
+
"hidden_size": 4096,
|
| 22 |
+
"index_head_dim": 128,
|
| 23 |
+
"index_kpool": 4,
|
| 24 |
+
"index_kpool_always_select_tail": true,
|
| 25 |
+
"index_kpool_compress": true,
|
| 26 |
+
"index_n_heads": 32,
|
| 27 |
+
"index_topk": 2048,
|
| 28 |
+
"index_share_for_mtp_iteration": true,
|
| 29 |
+
"indexer_rope_interleave": true,
|
| 30 |
+
"indexer_types": [
|
| 31 |
+
"full",
|
| 32 |
+
"full",
|
| 33 |
+
"full",
|
| 34 |
+
"full",
|
| 35 |
+
"full",
|
| 36 |
+
"full",
|
| 37 |
+
"full",
|
| 38 |
+
"full",
|
| 39 |
+
"full",
|
| 40 |
+
"full",
|
| 41 |
+
"full",
|
| 42 |
+
"full",
|
| 43 |
+
"full",
|
| 44 |
+
"full",
|
| 45 |
+
"full",
|
| 46 |
+
"full",
|
| 47 |
+
"full",
|
| 48 |
+
"full",
|
| 49 |
+
"full",
|
| 50 |
+
"full",
|
| 51 |
+
"full",
|
| 52 |
+
"full",
|
| 53 |
+
"full",
|
| 54 |
+
"full",
|
| 55 |
+
"full",
|
| 56 |
+
"full",
|
| 57 |
+
"full",
|
| 58 |
+
"full",
|
| 59 |
+
"full",
|
| 60 |
+
"full",
|
| 61 |
+
"full",
|
| 62 |
+
"full",
|
| 63 |
+
"full",
|
| 64 |
+
"full",
|
| 65 |
+
"full",
|
| 66 |
+
"full",
|
| 67 |
+
"full",
|
| 68 |
+
"full",
|
| 69 |
+
"full",
|
| 70 |
+
"full",
|
| 71 |
+
"full",
|
| 72 |
+
"full",
|
| 73 |
+
"full",
|
| 74 |
+
"full",
|
| 75 |
+
"full"
|
| 76 |
+
],
|
| 77 |
+
"initializer_range": 0.02,
|
| 78 |
+
"intermediate_size": 12288,
|
| 79 |
+
"kv_lora_rank": 512,
|
| 80 |
+
"layer_types": [
|
| 81 |
+
"linear_attention",
|
| 82 |
+
"linear_attention",
|
| 83 |
+
"linear_attention",
|
| 84 |
+
"deepseek_sparse_attention",
|
| 85 |
+
"linear_attention",
|
| 86 |
+
"linear_attention",
|
| 87 |
+
"linear_attention",
|
| 88 |
+
"deepseek_sparse_attention",
|
| 89 |
+
"linear_attention",
|
| 90 |
+
"linear_attention",
|
| 91 |
+
"linear_attention",
|
| 92 |
+
"deepseek_sparse_attention",
|
| 93 |
+
"linear_attention",
|
| 94 |
+
"linear_attention",
|
| 95 |
+
"linear_attention",
|
| 96 |
+
"deepseek_sparse_attention",
|
| 97 |
+
"linear_attention",
|
| 98 |
+
"linear_attention",
|
| 99 |
+
"linear_attention",
|
| 100 |
+
"deepseek_sparse_attention",
|
| 101 |
+
"linear_attention",
|
| 102 |
+
"linear_attention",
|
| 103 |
+
"linear_attention",
|
| 104 |
+
"deepseek_sparse_attention",
|
| 105 |
+
"linear_attention",
|
| 106 |
+
"linear_attention",
|
| 107 |
+
"linear_attention",
|
| 108 |
+
"deepseek_sparse_attention",
|
| 109 |
+
"linear_attention",
|
| 110 |
+
"linear_attention",
|
| 111 |
+
"linear_attention",
|
| 112 |
+
"deepseek_sparse_attention",
|
| 113 |
+
"linear_attention",
|
| 114 |
+
"linear_attention",
|
| 115 |
+
"linear_attention",
|
| 116 |
+
"deepseek_sparse_attention",
|
| 117 |
+
"linear_attention",
|
| 118 |
+
"linear_attention",
|
| 119 |
+
"linear_attention",
|
| 120 |
+
"deepseek_sparse_attention",
|
| 121 |
+
"linear_attention",
|
| 122 |
+
"linear_attention",
|
| 123 |
+
"linear_attention",
|
| 124 |
+
"deepseek_sparse_attention",
|
| 125 |
+
"linear_attention"
|
| 126 |
+
],
|
| 127 |
+
"linear_conv_kernel_dim": 4,
|
| 128 |
+
"linear_head_dim": 128,
|
| 129 |
+
"linear_lower_bound": -5.0,
|
| 130 |
+
"linear_num_heads": 64,
|
| 131 |
+
"max_position_embeddings": 1048576,
|
| 132 |
+
"mhc": true,
|
| 133 |
+
"mlp_layer_types": [
|
| 134 |
+
"dense",
|
| 135 |
+
"dense",
|
| 136 |
+
"dense",
|
| 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 |
+
],
|
| 180 |
+
"model_type": "glm5_next_text",
|
| 181 |
+
"moe_intermediate_size": 2048,
|
| 182 |
+
"moe_router_dtype": "float32",
|
| 183 |
+
"n_group": 1,
|
| 184 |
+
"n_routed_experts": 288,
|
| 185 |
+
"n_shared_experts": 1,
|
| 186 |
+
"norm_topk_prob": true,
|
| 187 |
+
"num_attention_heads": 64,
|
| 188 |
+
"num_experts_per_tok": 8,
|
| 189 |
+
"num_hidden_layers": 45,
|
| 190 |
+
"num_key_value_heads": 64,
|
| 191 |
+
"num_nextn_predict_layers": 1,
|
| 192 |
+
"output_router_logits": false,
|
| 193 |
+
"pad_token_id": 154820,
|
| 194 |
+
"q_lora_rank": 1536,
|
| 195 |
+
"qk_head_dim": 256,
|
| 196 |
+
"qk_nope_head_dim": 256,
|
| 197 |
+
"qk_rope_head_dim": 0,
|
| 198 |
+
"rms_norm_eps": 1e-05,
|
| 199 |
+
"routed_scaling_factor": 2.5,
|
| 200 |
+
"router_aux_loss_coef": 0.001,
|
| 201 |
+
"scoring_func": "sigmoid",
|
| 202 |
+
"swiglu_limit": 10.0,
|
| 203 |
+
"tie_word_embeddings": false,
|
| 204 |
+
"topk_group": 1,
|
| 205 |
+
"topk_method": "noaux_tc",
|
| 206 |
+
"use_cache": true,
|
| 207 |
+
"v_head_dim": 256,
|
| 208 |
+
"vocab_size": 154880
|
| 209 |
+
},
|
| 210 |
+
"vision_config": {
|
| 211 |
+
"attention_bias": true,
|
| 212 |
+
"attention_dropout": 0.0,
|
| 213 |
+
"depth": 24,
|
| 214 |
+
"hidden_act": "silu",
|
| 215 |
+
"hidden_size": 1024,
|
| 216 |
+
"image_size": 448,
|
| 217 |
+
"in_channels": 3,
|
| 218 |
+
"initializer_range": 0.02,
|
| 219 |
+
"intermediate_size": 4096,
|
| 220 |
+
"model_type": "glm5_next_vision",
|
| 221 |
+
"num_heads": 16,
|
| 222 |
+
"out_hidden_size": 4096,
|
| 223 |
+
"patch_size": 14,
|
| 224 |
+
"projection_intermediate_size": 10240,
|
| 225 |
+
"rms_norm_eps": 1e-05,
|
| 226 |
+
"spatial_merge_size": 2,
|
| 227 |
+
"swiglu_limit": 10.0,
|
| 228 |
+
"temporal_patch_size": 2
|
| 229 |
+
},
|
| 230 |
+
"image_token_id": 154854,
|
| 231 |
+
"video_token_id": 154855,
|
| 232 |
+
"image_start_token_id": 154830,
|
| 233 |
+
"image_end_token_id": 154831,
|
| 234 |
+
"video_start_token_id": 154832,
|
| 235 |
+
"video_end_token_id": 154833,
|
| 236 |
+
"tie_word_embeddings": false,
|
| 237 |
+
"model_type": "glm5_next",
|
| 238 |
+
"transformers_version": "5.16.0",
|
| 239 |
+
"quantization_config": {
|
| 240 |
+
"activation_scheme": "dynamic",
|
| 241 |
+
"fmt": "e4m3",
|
| 242 |
+
"modules_to_not_convert": [
|
| 243 |
+
"attn_mha",
|
| 244 |
+
"attn_mqa",
|
| 245 |
+
"dt_bias",
|
| 246 |
+
"hyper_connection",
|
| 247 |
+
"lm_head",
|
| 248 |
+
"mapping_proj",
|
| 249 |
+
"model.embed_tokens",
|
| 250 |
+
"model.layers.0.hc_attn_base",
|
| 251 |
+
"model.layers.0.hc_attn_fn",
|
| 252 |
+
"model.layers.0.hc_attn_scale",
|
| 253 |
+
"model.layers.0.hc_ffn_base",
|
| 254 |
+
"model.layers.0.hc_ffn_fn",
|
| 255 |
+
"model.layers.0.hc_ffn_scale",
|
| 256 |
+
"model.layers.0.input_layernorm",
|
| 257 |
+
"model.layers.0.post_attention_layernorm",
|
| 258 |
+
"model.layers.0.self_attn.A_log",
|
| 259 |
+
"model.layers.0.self_attn.b_proj",
|
| 260 |
+
"model.layers.0.self_attn.dt_bias",
|
| 261 |
+
"model.layers.0.self_attn.f_a_proj",
|
| 262 |
+
"model.layers.0.self_attn.f_b_proj",
|
| 263 |
+
"model.layers.0.self_attn.fused_qkvbfg_a_proj",
|
| 264 |
+
"model.layers.0.self_attn.g_a_proj",
|
| 265 |
+
"model.layers.0.self_attn.g_b_proj",
|
| 266 |
+
"model.layers.0.self_attn.k_conv1d",
|
| 267 |
+
"model.layers.0.self_attn.k_proj",
|
| 268 |
+
"model.layers.0.self_attn.o_norm",
|
| 269 |
+
"model.layers.0.self_attn.o_proj",
|
| 270 |
+
"model.layers.0.self_attn.q_conv1d",
|
| 271 |
+
"model.layers.0.self_attn.q_proj",
|
| 272 |
+
"model.layers.0.self_attn.qkv_proj",
|
| 273 |
+
"model.layers.0.self_attn.v_conv1d",
|
| 274 |
+
"model.layers.0.self_attn.v_proj",
|
| 275 |
+
"model.layers.1.hc_attn_base",
|
| 276 |
+
"model.layers.1.hc_attn_fn",
|
| 277 |
+
"model.layers.1.hc_attn_scale",
|
| 278 |
+
"model.layers.1.hc_ffn_base",
|
| 279 |
+
"model.layers.1.hc_ffn_fn",
|
| 280 |
+
"model.layers.1.hc_ffn_scale",
|
| 281 |
+
"model.layers.1.input_layernorm",
|
| 282 |
+
"model.layers.1.post_attention_layernorm",
|
| 283 |
+
"model.layers.1.self_attn.A_log",
|
| 284 |
+
"model.layers.1.self_attn.b_proj",
|
| 285 |
+
"model.layers.1.self_attn.dt_bias",
|
| 286 |
+
"model.layers.1.self_attn.f_a_proj",
|
| 287 |
+
"model.layers.1.self_attn.f_b_proj",
|
| 288 |
+
"model.layers.1.self_attn.fused_qkvbfg_a_proj",
|
| 289 |
+
"model.layers.1.self_attn.g_a_proj",
|
| 290 |
+
"model.layers.1.self_attn.g_b_proj",
|
| 291 |
+
"model.layers.1.self_attn.k_conv1d",
|
| 292 |
+
"model.layers.1.self_attn.k_proj",
|
| 293 |
+
"model.layers.1.self_attn.o_norm",
|
| 294 |
+
"model.layers.1.self_attn.o_proj",
|
| 295 |
+
"model.layers.1.self_attn.q_conv1d",
|
| 296 |
+
"model.layers.1.self_attn.q_proj",
|
| 297 |
+
"model.layers.1.self_attn.qkv_proj",
|
| 298 |
+
"model.layers.1.self_attn.v_conv1d",
|
| 299 |
+
"model.layers.1.self_attn.v_proj",
|
| 300 |
+
"model.layers.10.hc_attn_base",
|
| 301 |
+
"model.layers.10.hc_attn_fn",
|
| 302 |
+
"model.layers.10.hc_attn_scale",
|
| 303 |
+
"model.layers.10.hc_ffn_base",
|
| 304 |
+
"model.layers.10.hc_ffn_fn",
|
| 305 |
+
"model.layers.10.hc_ffn_scale",
|
| 306 |
+
"model.layers.10.input_layernorm",
|
| 307 |
+
"model.layers.10.mlp.gate",
|
| 308 |
+
"model.layers.10.mlp.gate.e_score_correction_bias",
|
| 309 |
+
"model.layers.10.post_attention_layernorm",
|
| 310 |
+
"model.layers.10.self_attn.A_log",
|
| 311 |
+
"model.layers.10.self_attn.b_proj",
|
| 312 |
+
"model.layers.10.self_attn.dt_bias",
|
| 313 |
+
"model.layers.10.self_attn.f_a_proj",
|
| 314 |
+
"model.layers.10.self_attn.f_b_proj",
|
| 315 |
+
"model.layers.10.self_attn.fused_qkvbfg_a_proj",
|
| 316 |
+
"model.layers.10.self_attn.g_a_proj",
|
| 317 |
+
"model.layers.10.self_attn.g_b_proj",
|
| 318 |
+
"model.layers.10.self_attn.k_conv1d",
|
| 319 |
+
"model.layers.10.self_attn.k_proj",
|
| 320 |
+
"model.layers.10.self_attn.o_norm",
|
| 321 |
+
"model.layers.10.self_attn.o_proj",
|
| 322 |
+
"model.layers.10.self_attn.q_conv1d",
|
| 323 |
+
"model.layers.10.self_attn.q_proj",
|
| 324 |
+
"model.layers.10.self_attn.qkv_proj",
|
| 325 |
+
"model.layers.10.self_attn.v_conv1d",
|
| 326 |
+
"model.layers.10.self_attn.v_proj",
|
| 327 |
+
"model.layers.11.hc_attn_base",
|
| 328 |
+
"model.layers.11.hc_attn_fn",
|
| 329 |
+
"model.layers.11.hc_attn_scale",
|
| 330 |
+
"model.layers.11.hc_ffn_base",
|
| 331 |
+
"model.layers.11.hc_ffn_fn",
|
| 332 |
+
"model.layers.11.hc_ffn_scale",
|
| 333 |
+
"model.layers.11.input_layernorm",
|
| 334 |
+
"model.layers.11.mlp.gate",
|
| 335 |
+
"model.layers.11.mlp.gate.e_score_correction_bias",
|
| 336 |
+
"model.layers.11.post_attention_layernorm",
|
| 337 |
+
"model.layers.11.self_attn.indexer.index_kpool_compress_ape",
|
| 338 |
+
"model.layers.11.self_attn.indexer.index_kpool_compress_gate",
|
| 339 |
+
"model.layers.11.self_attn.indexer.k_norm",
|
| 340 |
+
"model.layers.11.self_attn.indexer.k_norm.bias",
|
| 341 |
+
"model.layers.11.self_attn.indexer.weights_proj",
|
| 342 |
+
"model.layers.11.self_attn.indexer.wk",
|
| 343 |
+
"model.layers.11.self_attn.indexer.wq_b",
|
| 344 |
+
"model.layers.11.self_attn.kv_a_layernorm",
|
| 345 |
+
"model.layers.11.self_attn.kv_b_proj",
|
| 346 |
+
"model.layers.11.self_attn.q_a_layernorm",
|
| 347 |
+
"model.layers.12.hc_attn_base",
|
| 348 |
+
"model.layers.12.hc_attn_fn",
|
| 349 |
+
"model.layers.12.hc_attn_scale",
|
| 350 |
+
"model.layers.12.hc_ffn_base",
|
| 351 |
+
"model.layers.12.hc_ffn_fn",
|
| 352 |
+
"model.layers.12.hc_ffn_scale",
|
| 353 |
+
"model.layers.12.input_layernorm",
|
| 354 |
+
"model.layers.12.mlp.gate",
|
| 355 |
+
"model.layers.12.mlp.gate.e_score_correction_bias",
|
| 356 |
+
"model.layers.12.post_attention_layernorm",
|
| 357 |
+
"model.layers.12.self_attn.A_log",
|
| 358 |
+
"model.layers.12.self_attn.b_proj",
|
| 359 |
+
"model.layers.12.self_attn.dt_bias",
|
| 360 |
+
"model.layers.12.self_attn.f_a_proj",
|
| 361 |
+
"model.layers.12.self_attn.f_b_proj",
|
| 362 |
+
"model.layers.12.self_attn.fused_qkvbfg_a_proj",
|
| 363 |
+
"model.layers.12.self_attn.g_a_proj",
|
| 364 |
+
"model.layers.12.self_attn.g_b_proj",
|
| 365 |
+
"model.layers.12.self_attn.k_conv1d",
|
| 366 |
+
"model.layers.12.self_attn.k_proj",
|
| 367 |
+
"model.layers.12.self_attn.o_norm",
|
| 368 |
+
"model.layers.12.self_attn.o_proj",
|
| 369 |
+
"model.layers.12.self_attn.q_conv1d",
|
| 370 |
+
"model.layers.12.self_attn.q_proj",
|
| 371 |
+
"model.layers.12.self_attn.qkv_proj",
|
| 372 |
+
"model.layers.12.self_attn.v_conv1d",
|
| 373 |
+
"model.layers.12.self_attn.v_proj",
|
| 374 |
+
"model.layers.13.hc_attn_base",
|
| 375 |
+
"model.layers.13.hc_attn_fn",
|
| 376 |
+
"model.layers.13.hc_attn_scale",
|
| 377 |
+
"model.layers.13.hc_ffn_base",
|
| 378 |
+
"model.layers.13.hc_ffn_fn",
|
| 379 |
+
"model.layers.13.hc_ffn_scale",
|
| 380 |
+
"model.layers.13.input_layernorm",
|
| 381 |
+
"model.layers.13.mlp.gate",
|
| 382 |
+
"model.layers.13.mlp.gate.e_score_correction_bias",
|
| 383 |
+
"model.layers.13.post_attention_layernorm",
|
| 384 |
+
"model.layers.13.self_attn.A_log",
|
| 385 |
+
"model.layers.13.self_attn.b_proj",
|
| 386 |
+
"model.layers.13.self_attn.dt_bias",
|
| 387 |
+
"model.layers.13.self_attn.f_a_proj",
|
| 388 |
+
"model.layers.13.self_attn.f_b_proj",
|
| 389 |
+
"model.layers.13.self_attn.fused_qkvbfg_a_proj",
|
| 390 |
+
"model.layers.13.self_attn.g_a_proj",
|
| 391 |
+
"model.layers.13.self_attn.g_b_proj",
|
| 392 |
+
"model.layers.13.self_attn.k_conv1d",
|
| 393 |
+
"model.layers.13.self_attn.k_proj",
|
| 394 |
+
"model.layers.13.self_attn.o_norm",
|
| 395 |
+
"model.layers.13.self_attn.o_proj",
|
| 396 |
+
"model.layers.13.self_attn.q_conv1d",
|
| 397 |
+
"model.layers.13.self_attn.q_proj",
|
| 398 |
+
"model.layers.13.self_attn.qkv_proj",
|
| 399 |
+
"model.layers.13.self_attn.v_conv1d",
|
| 400 |
+
"model.layers.13.self_attn.v_proj",
|
| 401 |
+
"model.layers.14.hc_attn_base",
|
| 402 |
+
"model.layers.14.hc_attn_fn",
|
| 403 |
+
"model.layers.14.hc_attn_scale",
|
| 404 |
+
"model.layers.14.hc_ffn_base",
|
| 405 |
+
"model.layers.14.hc_ffn_fn",
|
| 406 |
+
"model.layers.14.hc_ffn_scale",
|
| 407 |
+
"model.layers.14.input_layernorm",
|
| 408 |
+
"model.layers.14.mlp.gate",
|
| 409 |
+
"model.layers.14.mlp.gate.e_score_correction_bias",
|
| 410 |
+
"model.layers.14.post_attention_layernorm",
|
| 411 |
+
"model.layers.14.self_attn.A_log",
|
| 412 |
+
"model.layers.14.self_attn.b_proj",
|
| 413 |
+
"model.layers.14.self_attn.dt_bias",
|
| 414 |
+
"model.layers.14.self_attn.f_a_proj",
|
| 415 |
+
"model.layers.14.self_attn.f_b_proj",
|
| 416 |
+
"model.layers.14.self_attn.fused_qkvbfg_a_proj",
|
| 417 |
+
"model.layers.14.self_attn.g_a_proj",
|
| 418 |
+
"model.layers.14.self_attn.g_b_proj",
|
| 419 |
+
"model.layers.14.self_attn.k_conv1d",
|
| 420 |
+
"model.layers.14.self_attn.k_proj",
|
| 421 |
+
"model.layers.14.self_attn.o_norm",
|
| 422 |
+
"model.layers.14.self_attn.o_proj",
|
| 423 |
+
"model.layers.14.self_attn.q_conv1d",
|
| 424 |
+
"model.layers.14.self_attn.q_proj",
|
| 425 |
+
"model.layers.14.self_attn.qkv_proj",
|
| 426 |
+
"model.layers.14.self_attn.v_conv1d",
|
| 427 |
+
"model.layers.14.self_attn.v_proj",
|
| 428 |
+
"model.layers.15.hc_attn_base",
|
| 429 |
+
"model.layers.15.hc_attn_fn",
|
| 430 |
+
"model.layers.15.hc_attn_scale",
|
| 431 |
+
"model.layers.15.hc_ffn_base",
|
| 432 |
+
"model.layers.15.hc_ffn_fn",
|
| 433 |
+
"model.layers.15.hc_ffn_scale",
|
| 434 |
+
"model.layers.15.input_layernorm",
|
| 435 |
+
"model.layers.15.mlp.gate",
|
| 436 |
+
"model.layers.15.mlp.gate.e_score_correction_bias",
|
| 437 |
+
"model.layers.15.post_attention_layernorm",
|
| 438 |
+
"model.layers.15.self_attn.indexer.index_kpool_compress_ape",
|
| 439 |
+
"model.layers.15.self_attn.indexer.index_kpool_compress_gate",
|
| 440 |
+
"model.layers.15.self_attn.indexer.k_norm",
|
| 441 |
+
"model.layers.15.self_attn.indexer.k_norm.bias",
|
| 442 |
+
"model.layers.15.self_attn.indexer.weights_proj",
|
| 443 |
+
"model.layers.15.self_attn.indexer.wk",
|
| 444 |
+
"model.layers.15.self_attn.indexer.wq_b",
|
| 445 |
+
"model.layers.15.self_attn.kv_a_layernorm",
|
| 446 |
+
"model.layers.15.self_attn.kv_b_proj",
|
| 447 |
+
"model.layers.15.self_attn.q_a_layernorm",
|
| 448 |
+
"model.layers.16.hc_attn_base",
|
| 449 |
+
"model.layers.16.hc_attn_fn",
|
| 450 |
+
"model.layers.16.hc_attn_scale",
|
| 451 |
+
"model.layers.16.hc_ffn_base",
|
| 452 |
+
"model.layers.16.hc_ffn_fn",
|
| 453 |
+
"model.layers.16.hc_ffn_scale",
|
| 454 |
+
"model.layers.16.input_layernorm",
|
| 455 |
+
"model.layers.16.mlp.gate",
|
| 456 |
+
"model.layers.16.mlp.gate.e_score_correction_bias",
|
| 457 |
+
"model.layers.16.post_attention_layernorm",
|
| 458 |
+
"model.layers.16.self_attn.A_log",
|
| 459 |
+
"model.layers.16.self_attn.b_proj",
|
| 460 |
+
"model.layers.16.self_attn.dt_bias",
|
| 461 |
+
"model.layers.16.self_attn.f_a_proj",
|
| 462 |
+
"model.layers.16.self_attn.f_b_proj",
|
| 463 |
+
"model.layers.16.self_attn.fused_qkvbfg_a_proj",
|
| 464 |
+
"model.layers.16.self_attn.g_a_proj",
|
| 465 |
+
"model.layers.16.self_attn.g_b_proj",
|
| 466 |
+
"model.layers.16.self_attn.k_conv1d",
|
| 467 |
+
"model.layers.16.self_attn.k_proj",
|
| 468 |
+
"model.layers.16.self_attn.o_norm",
|
| 469 |
+
"model.layers.16.self_attn.o_proj",
|
| 470 |
+
"model.layers.16.self_attn.q_conv1d",
|
| 471 |
+
"model.layers.16.self_attn.q_proj",
|
| 472 |
+
"model.layers.16.self_attn.qkv_proj",
|
| 473 |
+
"model.layers.16.self_attn.v_conv1d",
|
| 474 |
+
"model.layers.16.self_attn.v_proj",
|
| 475 |
+
"model.layers.17.hc_attn_base",
|
| 476 |
+
"model.layers.17.hc_attn_fn",
|
| 477 |
+
"model.layers.17.hc_attn_scale",
|
| 478 |
+
"model.layers.17.hc_ffn_base",
|
| 479 |
+
"model.layers.17.hc_ffn_fn",
|
| 480 |
+
"model.layers.17.hc_ffn_scale",
|
| 481 |
+
"model.layers.17.input_layernorm",
|
| 482 |
+
"model.layers.17.mlp.gate",
|
| 483 |
+
"model.layers.17.mlp.gate.e_score_correction_bias",
|
| 484 |
+
"model.layers.17.post_attention_layernorm",
|
| 485 |
+
"model.layers.17.self_attn.A_log",
|
| 486 |
+
"model.layers.17.self_attn.b_proj",
|
| 487 |
+
"model.layers.17.self_attn.dt_bias",
|
| 488 |
+
"model.layers.17.self_attn.f_a_proj",
|
| 489 |
+
"model.layers.17.self_attn.f_b_proj",
|
| 490 |
+
"model.layers.17.self_attn.fused_qkvbfg_a_proj",
|
| 491 |
+
"model.layers.17.self_attn.g_a_proj",
|
| 492 |
+
"model.layers.17.self_attn.g_b_proj",
|
| 493 |
+
"model.layers.17.self_attn.k_conv1d",
|
| 494 |
+
"model.layers.17.self_attn.k_proj",
|
| 495 |
+
"model.layers.17.self_attn.o_norm",
|
| 496 |
+
"model.layers.17.self_attn.o_proj",
|
| 497 |
+
"model.layers.17.self_attn.q_conv1d",
|
| 498 |
+
"model.layers.17.self_attn.q_proj",
|
| 499 |
+
"model.layers.17.self_attn.qkv_proj",
|
| 500 |
+
"model.layers.17.self_attn.v_conv1d",
|
| 501 |
+
"model.layers.17.self_attn.v_proj",
|
| 502 |
+
"model.layers.18.hc_attn_base",
|
| 503 |
+
"model.layers.18.hc_attn_fn",
|
| 504 |
+
"model.layers.18.hc_attn_scale",
|
| 505 |
+
"model.layers.18.hc_ffn_base",
|
| 506 |
+
"model.layers.18.hc_ffn_fn",
|
| 507 |
+
"model.layers.18.hc_ffn_scale",
|
| 508 |
+
"model.layers.18.input_layernorm",
|
| 509 |
+
"model.layers.18.mlp.gate",
|
| 510 |
+
"model.layers.18.mlp.gate.e_score_correction_bias",
|
| 511 |
+
"model.layers.18.post_attention_layernorm",
|
| 512 |
+
"model.layers.18.self_attn.A_log",
|
| 513 |
+
"model.layers.18.self_attn.b_proj",
|
| 514 |
+
"model.layers.18.self_attn.dt_bias",
|
| 515 |
+
"model.layers.18.self_attn.f_a_proj",
|
| 516 |
+
"model.layers.18.self_attn.f_b_proj",
|
| 517 |
+
"model.layers.18.self_attn.fused_qkvbfg_a_proj",
|
| 518 |
+
"model.layers.18.self_attn.g_a_proj",
|
| 519 |
+
"model.layers.18.self_attn.g_b_proj",
|
| 520 |
+
"model.layers.18.self_attn.k_conv1d",
|
| 521 |
+
"model.layers.18.self_attn.k_proj",
|
| 522 |
+
"model.layers.18.self_attn.o_norm",
|
| 523 |
+
"model.layers.18.self_attn.o_proj",
|
| 524 |
+
"model.layers.18.self_attn.q_conv1d",
|
| 525 |
+
"model.layers.18.self_attn.q_proj",
|
| 526 |
+
"model.layers.18.self_attn.qkv_proj",
|
| 527 |
+
"model.layers.18.self_attn.v_conv1d",
|
| 528 |
+
"model.layers.18.self_attn.v_proj",
|
| 529 |
+
"model.layers.19.hc_attn_base",
|
| 530 |
+
"model.layers.19.hc_attn_fn",
|
| 531 |
+
"model.layers.19.hc_attn_scale",
|
| 532 |
+
"model.layers.19.hc_ffn_base",
|
| 533 |
+
"model.layers.19.hc_ffn_fn",
|
| 534 |
+
"model.layers.19.hc_ffn_scale",
|
| 535 |
+
"model.layers.19.input_layernorm",
|
| 536 |
+
"model.layers.19.mlp.gate",
|
| 537 |
+
"model.layers.19.mlp.gate.e_score_correction_bias",
|
| 538 |
+
"model.layers.19.post_attention_layernorm",
|
| 539 |
+
"model.layers.19.self_attn.indexer.index_kpool_compress_ape",
|
| 540 |
+
"model.layers.19.self_attn.indexer.index_kpool_compress_gate",
|
| 541 |
+
"model.layers.19.self_attn.indexer.k_norm",
|
| 542 |
+
"model.layers.19.self_attn.indexer.k_norm.bias",
|
| 543 |
+
"model.layers.19.self_attn.indexer.weights_proj",
|
| 544 |
+
"model.layers.19.self_attn.indexer.wk",
|
| 545 |
+
"model.layers.19.self_attn.indexer.wq_b",
|
| 546 |
+
"model.layers.19.self_attn.kv_a_layernorm",
|
| 547 |
+
"model.layers.19.self_attn.kv_b_proj",
|
| 548 |
+
"model.layers.19.self_attn.q_a_layernorm",
|
| 549 |
+
"model.layers.2.hc_attn_base",
|
| 550 |
+
"model.layers.2.hc_attn_fn",
|
| 551 |
+
"model.layers.2.hc_attn_scale",
|
| 552 |
+
"model.layers.2.hc_ffn_base",
|
| 553 |
+
"model.layers.2.hc_ffn_fn",
|
| 554 |
+
"model.layers.2.hc_ffn_scale",
|
| 555 |
+
"model.layers.2.input_layernorm",
|
| 556 |
+
"model.layers.2.post_attention_layernorm",
|
| 557 |
+
"model.layers.2.self_attn.A_log",
|
| 558 |
+
"model.layers.2.self_attn.b_proj",
|
| 559 |
+
"model.layers.2.self_attn.dt_bias",
|
| 560 |
+
"model.layers.2.self_attn.f_a_proj",
|
| 561 |
+
"model.layers.2.self_attn.f_b_proj",
|
| 562 |
+
"model.layers.2.self_attn.fused_qkvbfg_a_proj",
|
| 563 |
+
"model.layers.2.self_attn.g_a_proj",
|
| 564 |
+
"model.layers.2.self_attn.g_b_proj",
|
| 565 |
+
"model.layers.2.self_attn.k_conv1d",
|
| 566 |
+
"model.layers.2.self_attn.k_proj",
|
| 567 |
+
"model.layers.2.self_attn.o_norm",
|
| 568 |
+
"model.layers.2.self_attn.o_proj",
|
| 569 |
+
"model.layers.2.self_attn.q_conv1d",
|
| 570 |
+
"model.layers.2.self_attn.q_proj",
|
| 571 |
+
"model.layers.2.self_attn.qkv_proj",
|
| 572 |
+
"model.layers.2.self_attn.v_conv1d",
|
| 573 |
+
"model.layers.2.self_attn.v_proj",
|
| 574 |
+
"model.layers.20.hc_attn_base",
|
| 575 |
+
"model.layers.20.hc_attn_fn",
|
| 576 |
+
"model.layers.20.hc_attn_scale",
|
| 577 |
+
"model.layers.20.hc_ffn_base",
|
| 578 |
+
"model.layers.20.hc_ffn_fn",
|
| 579 |
+
"model.layers.20.hc_ffn_scale",
|
| 580 |
+
"model.layers.20.input_layernorm",
|
| 581 |
+
"model.layers.20.mlp.gate",
|
| 582 |
+
"model.layers.20.mlp.gate.e_score_correction_bias",
|
| 583 |
+
"model.layers.20.post_attention_layernorm",
|
| 584 |
+
"model.layers.20.self_attn.A_log",
|
| 585 |
+
"model.layers.20.self_attn.b_proj",
|
| 586 |
+
"model.layers.20.self_attn.dt_bias",
|
| 587 |
+
"model.layers.20.self_attn.f_a_proj",
|
| 588 |
+
"model.layers.20.self_attn.f_b_proj",
|
| 589 |
+
"model.layers.20.self_attn.fused_qkvbfg_a_proj",
|
| 590 |
+
"model.layers.20.self_attn.g_a_proj",
|
| 591 |
+
"model.layers.20.self_attn.g_b_proj",
|
| 592 |
+
"model.layers.20.self_attn.k_conv1d",
|
| 593 |
+
"model.layers.20.self_attn.k_proj",
|
| 594 |
+
"model.layers.20.self_attn.o_norm",
|
| 595 |
+
"model.layers.20.self_attn.o_proj",
|
| 596 |
+
"model.layers.20.self_attn.q_conv1d",
|
| 597 |
+
"model.layers.20.self_attn.q_proj",
|
| 598 |
+
"model.layers.20.self_attn.qkv_proj",
|
| 599 |
+
"model.layers.20.self_attn.v_conv1d",
|
| 600 |
+
"model.layers.20.self_attn.v_proj",
|
| 601 |
+
"model.layers.21.hc_attn_base",
|
| 602 |
+
"model.layers.21.hc_attn_fn",
|
| 603 |
+
"model.layers.21.hc_attn_scale",
|
| 604 |
+
"model.layers.21.hc_ffn_base",
|
| 605 |
+
"model.layers.21.hc_ffn_fn",
|
| 606 |
+
"model.layers.21.hc_ffn_scale",
|
| 607 |
+
"model.layers.21.input_layernorm",
|
| 608 |
+
"model.layers.21.mlp.gate",
|
| 609 |
+
"model.layers.21.mlp.gate.e_score_correction_bias",
|
| 610 |
+
"model.layers.21.post_attention_layernorm",
|
| 611 |
+
"model.layers.21.self_attn.A_log",
|
| 612 |
+
"model.layers.21.self_attn.b_proj",
|
| 613 |
+
"model.layers.21.self_attn.dt_bias",
|
| 614 |
+
"model.layers.21.self_attn.f_a_proj",
|
| 615 |
+
"model.layers.21.self_attn.f_b_proj",
|
| 616 |
+
"model.layers.21.self_attn.fused_qkvbfg_a_proj",
|
| 617 |
+
"model.layers.21.self_attn.g_a_proj",
|
| 618 |
+
"model.layers.21.self_attn.g_b_proj",
|
| 619 |
+
"model.layers.21.self_attn.k_conv1d",
|
| 620 |
+
"model.layers.21.self_attn.k_proj",
|
| 621 |
+
"model.layers.21.self_attn.o_norm",
|
| 622 |
+
"model.layers.21.self_attn.o_proj",
|
| 623 |
+
"model.layers.21.self_attn.q_conv1d",
|
| 624 |
+
"model.layers.21.self_attn.q_proj",
|
| 625 |
+
"model.layers.21.self_attn.qkv_proj",
|
| 626 |
+
"model.layers.21.self_attn.v_conv1d",
|
| 627 |
+
"model.layers.21.self_attn.v_proj",
|
| 628 |
+
"model.layers.22.hc_attn_base",
|
| 629 |
+
"model.layers.22.hc_attn_fn",
|
| 630 |
+
"model.layers.22.hc_attn_scale",
|
| 631 |
+
"model.layers.22.hc_ffn_base",
|
| 632 |
+
"model.layers.22.hc_ffn_fn",
|
| 633 |
+
"model.layers.22.hc_ffn_scale",
|
| 634 |
+
"model.layers.22.input_layernorm",
|
| 635 |
+
"model.layers.22.mlp.gate",
|
| 636 |
+
"model.layers.22.mlp.gate.e_score_correction_bias",
|
| 637 |
+
"model.layers.22.post_attention_layernorm",
|
| 638 |
+
"model.layers.22.self_attn.A_log",
|
| 639 |
+
"model.layers.22.self_attn.b_proj",
|
| 640 |
+
"model.layers.22.self_attn.dt_bias",
|
| 641 |
+
"model.layers.22.self_attn.f_a_proj",
|
| 642 |
+
"model.layers.22.self_attn.f_b_proj",
|
| 643 |
+
"model.layers.22.self_attn.fused_qkvbfg_a_proj",
|
| 644 |
+
"model.layers.22.self_attn.g_a_proj",
|
| 645 |
+
"model.layers.22.self_attn.g_b_proj",
|
| 646 |
+
"model.layers.22.self_attn.k_conv1d",
|
| 647 |
+
"model.layers.22.self_attn.k_proj",
|
| 648 |
+
"model.layers.22.self_attn.o_norm",
|
| 649 |
+
"model.layers.22.self_attn.o_proj",
|
| 650 |
+
"model.layers.22.self_attn.q_conv1d",
|
| 651 |
+
"model.layers.22.self_attn.q_proj",
|
| 652 |
+
"model.layers.22.self_attn.qkv_proj",
|
| 653 |
+
"model.layers.22.self_attn.v_conv1d",
|
| 654 |
+
"model.layers.22.self_attn.v_proj",
|
| 655 |
+
"model.layers.23.hc_attn_base",
|
| 656 |
+
"model.layers.23.hc_attn_fn",
|
| 657 |
+
"model.layers.23.hc_attn_scale",
|
| 658 |
+
"model.layers.23.hc_ffn_base",
|
| 659 |
+
"model.layers.23.hc_ffn_fn",
|
| 660 |
+
"model.layers.23.hc_ffn_scale",
|
| 661 |
+
"model.layers.23.input_layernorm",
|
| 662 |
+
"model.layers.23.mlp.gate",
|
| 663 |
+
"model.layers.23.mlp.gate.e_score_correction_bias",
|
| 664 |
+
"model.layers.23.post_attention_layernorm",
|
| 665 |
+
"model.layers.23.self_attn.indexer.index_kpool_compress_ape",
|
| 666 |
+
"model.layers.23.self_attn.indexer.index_kpool_compress_gate",
|
| 667 |
+
"model.layers.23.self_attn.indexer.k_norm",
|
| 668 |
+
"model.layers.23.self_attn.indexer.k_norm.bias",
|
| 669 |
+
"model.layers.23.self_attn.indexer.weights_proj",
|
| 670 |
+
"model.layers.23.self_attn.indexer.wk",
|
| 671 |
+
"model.layers.23.self_attn.indexer.wq_b",
|
| 672 |
+
"model.layers.23.self_attn.kv_a_layernorm",
|
| 673 |
+
"model.layers.23.self_attn.kv_b_proj",
|
| 674 |
+
"model.layers.23.self_attn.q_a_layernorm",
|
| 675 |
+
"model.layers.24.hc_attn_base",
|
| 676 |
+
"model.layers.24.hc_attn_fn",
|
| 677 |
+
"model.layers.24.hc_attn_scale",
|
| 678 |
+
"model.layers.24.hc_ffn_base",
|
| 679 |
+
"model.layers.24.hc_ffn_fn",
|
| 680 |
+
"model.layers.24.hc_ffn_scale",
|
| 681 |
+
"model.layers.24.input_layernorm",
|
| 682 |
+
"model.layers.24.mlp.gate",
|
| 683 |
+
"model.layers.24.mlp.gate.e_score_correction_bias",
|
| 684 |
+
"model.layers.24.post_attention_layernorm",
|
| 685 |
+
"model.layers.24.self_attn.A_log",
|
| 686 |
+
"model.layers.24.self_attn.b_proj",
|
| 687 |
+
"model.layers.24.self_attn.dt_bias",
|
| 688 |
+
"model.layers.24.self_attn.f_a_proj",
|
| 689 |
+
"model.layers.24.self_attn.f_b_proj",
|
| 690 |
+
"model.layers.24.self_attn.fused_qkvbfg_a_proj",
|
| 691 |
+
"model.layers.24.self_attn.g_a_proj",
|
| 692 |
+
"model.layers.24.self_attn.g_b_proj",
|
| 693 |
+
"model.layers.24.self_attn.k_conv1d",
|
| 694 |
+
"model.layers.24.self_attn.k_proj",
|
| 695 |
+
"model.layers.24.self_attn.o_norm",
|
| 696 |
+
"model.layers.24.self_attn.o_proj",
|
| 697 |
+
"model.layers.24.self_attn.q_conv1d",
|
| 698 |
+
"model.layers.24.self_attn.q_proj",
|
| 699 |
+
"model.layers.24.self_attn.qkv_proj",
|
| 700 |
+
"model.layers.24.self_attn.v_conv1d",
|
| 701 |
+
"model.layers.24.self_attn.v_proj",
|
| 702 |
+
"model.layers.25.hc_attn_base",
|
| 703 |
+
"model.layers.25.hc_attn_fn",
|
| 704 |
+
"model.layers.25.hc_attn_scale",
|
| 705 |
+
"model.layers.25.hc_ffn_base",
|
| 706 |
+
"model.layers.25.hc_ffn_fn",
|
| 707 |
+
"model.layers.25.hc_ffn_scale",
|
| 708 |
+
"model.layers.25.input_layernorm",
|
| 709 |
+
"model.layers.25.mlp.gate",
|
| 710 |
+
"model.layers.25.mlp.gate.e_score_correction_bias",
|
| 711 |
+
"model.layers.25.post_attention_layernorm",
|
| 712 |
+
"model.layers.25.self_attn.A_log",
|
| 713 |
+
"model.layers.25.self_attn.b_proj",
|
| 714 |
+
"model.layers.25.self_attn.dt_bias",
|
| 715 |
+
"model.layers.25.self_attn.f_a_proj",
|
| 716 |
+
"model.layers.25.self_attn.f_b_proj",
|
| 717 |
+
"model.layers.25.self_attn.fused_qkvbfg_a_proj",
|
| 718 |
+
"model.layers.25.self_attn.g_a_proj",
|
| 719 |
+
"model.layers.25.self_attn.g_b_proj",
|
| 720 |
+
"model.layers.25.self_attn.k_conv1d",
|
| 721 |
+
"model.layers.25.self_attn.k_proj",
|
| 722 |
+
"model.layers.25.self_attn.o_norm",
|
| 723 |
+
"model.layers.25.self_attn.o_proj",
|
| 724 |
+
"model.layers.25.self_attn.q_conv1d",
|
| 725 |
+
"model.layers.25.self_attn.q_proj",
|
| 726 |
+
"model.layers.25.self_attn.qkv_proj",
|
| 727 |
+
"model.layers.25.self_attn.v_conv1d",
|
| 728 |
+
"model.layers.25.self_attn.v_proj",
|
| 729 |
+
"model.layers.26.hc_attn_base",
|
| 730 |
+
"model.layers.26.hc_attn_fn",
|
| 731 |
+
"model.layers.26.hc_attn_scale",
|
| 732 |
+
"model.layers.26.hc_ffn_base",
|
| 733 |
+
"model.layers.26.hc_ffn_fn",
|
| 734 |
+
"model.layers.26.hc_ffn_scale",
|
| 735 |
+
"model.layers.26.input_layernorm",
|
| 736 |
+
"model.layers.26.mlp.gate",
|
| 737 |
+
"model.layers.26.mlp.gate.e_score_correction_bias",
|
| 738 |
+
"model.layers.26.post_attention_layernorm",
|
| 739 |
+
"model.layers.26.self_attn.A_log",
|
| 740 |
+
"model.layers.26.self_attn.b_proj",
|
| 741 |
+
"model.layers.26.self_attn.dt_bias",
|
| 742 |
+
"model.layers.26.self_attn.f_a_proj",
|
| 743 |
+
"model.layers.26.self_attn.f_b_proj",
|
| 744 |
+
"model.layers.26.self_attn.fused_qkvbfg_a_proj",
|
| 745 |
+
"model.layers.26.self_attn.g_a_proj",
|
| 746 |
+
"model.layers.26.self_attn.g_b_proj",
|
| 747 |
+
"model.layers.26.self_attn.k_conv1d",
|
| 748 |
+
"model.layers.26.self_attn.k_proj",
|
| 749 |
+
"model.layers.26.self_attn.o_norm",
|
| 750 |
+
"model.layers.26.self_attn.o_proj",
|
| 751 |
+
"model.layers.26.self_attn.q_conv1d",
|
| 752 |
+
"model.layers.26.self_attn.q_proj",
|
| 753 |
+
"model.layers.26.self_attn.qkv_proj",
|
| 754 |
+
"model.layers.26.self_attn.v_conv1d",
|
| 755 |
+
"model.layers.26.self_attn.v_proj",
|
| 756 |
+
"model.layers.27.hc_attn_base",
|
| 757 |
+
"model.layers.27.hc_attn_fn",
|
| 758 |
+
"model.layers.27.hc_attn_scale",
|
| 759 |
+
"model.layers.27.hc_ffn_base",
|
| 760 |
+
"model.layers.27.hc_ffn_fn",
|
| 761 |
+
"model.layers.27.hc_ffn_scale",
|
| 762 |
+
"model.layers.27.input_layernorm",
|
| 763 |
+
"model.layers.27.mlp.gate",
|
| 764 |
+
"model.layers.27.mlp.gate.e_score_correction_bias",
|
| 765 |
+
"model.layers.27.post_attention_layernorm",
|
| 766 |
+
"model.layers.27.self_attn.indexer.index_kpool_compress_ape",
|
| 767 |
+
"model.layers.27.self_attn.indexer.index_kpool_compress_gate",
|
| 768 |
+
"model.layers.27.self_attn.indexer.k_norm",
|
| 769 |
+
"model.layers.27.self_attn.indexer.k_norm.bias",
|
| 770 |
+
"model.layers.27.self_attn.indexer.weights_proj",
|
| 771 |
+
"model.layers.27.self_attn.indexer.wk",
|
| 772 |
+
"model.layers.27.self_attn.indexer.wq_b",
|
| 773 |
+
"model.layers.27.self_attn.kv_a_layernorm",
|
| 774 |
+
"model.layers.27.self_attn.kv_b_proj",
|
| 775 |
+
"model.layers.27.self_attn.q_a_layernorm",
|
| 776 |
+
"model.layers.28.hc_attn_base",
|
| 777 |
+
"model.layers.28.hc_attn_fn",
|
| 778 |
+
"model.layers.28.hc_attn_scale",
|
| 779 |
+
"model.layers.28.hc_ffn_base",
|
| 780 |
+
"model.layers.28.hc_ffn_fn",
|
| 781 |
+
"model.layers.28.hc_ffn_scale",
|
| 782 |
+
"model.layers.28.input_layernorm",
|
| 783 |
+
"model.layers.28.mlp.gate",
|
| 784 |
+
"model.layers.28.mlp.gate.e_score_correction_bias",
|
| 785 |
+
"model.layers.28.post_attention_layernorm",
|
| 786 |
+
"model.layers.28.self_attn.A_log",
|
| 787 |
+
"model.layers.28.self_attn.b_proj",
|
| 788 |
+
"model.layers.28.self_attn.dt_bias",
|
| 789 |
+
"model.layers.28.self_attn.f_a_proj",
|
| 790 |
+
"model.layers.28.self_attn.f_b_proj",
|
| 791 |
+
"model.layers.28.self_attn.fused_qkvbfg_a_proj",
|
| 792 |
+
"model.layers.28.self_attn.g_a_proj",
|
| 793 |
+
"model.layers.28.self_attn.g_b_proj",
|
| 794 |
+
"model.layers.28.self_attn.k_conv1d",
|
| 795 |
+
"model.layers.28.self_attn.k_proj",
|
| 796 |
+
"model.layers.28.self_attn.o_norm",
|
| 797 |
+
"model.layers.28.self_attn.o_proj",
|
| 798 |
+
"model.layers.28.self_attn.q_conv1d",
|
| 799 |
+
"model.layers.28.self_attn.q_proj",
|
| 800 |
+
"model.layers.28.self_attn.qkv_proj",
|
| 801 |
+
"model.layers.28.self_attn.v_conv1d",
|
| 802 |
+
"model.layers.28.self_attn.v_proj",
|
| 803 |
+
"model.layers.29.hc_attn_base",
|
| 804 |
+
"model.layers.29.hc_attn_fn",
|
| 805 |
+
"model.layers.29.hc_attn_scale",
|
| 806 |
+
"model.layers.29.hc_ffn_base",
|
| 807 |
+
"model.layers.29.hc_ffn_fn",
|
| 808 |
+
"model.layers.29.hc_ffn_scale",
|
| 809 |
+
"model.layers.29.input_layernorm",
|
| 810 |
+
"model.layers.29.mlp.gate",
|
| 811 |
+
"model.layers.29.mlp.gate.e_score_correction_bias",
|
| 812 |
+
"model.layers.29.post_attention_layernorm",
|
| 813 |
+
"model.layers.29.self_attn.A_log",
|
| 814 |
+
"model.layers.29.self_attn.b_proj",
|
| 815 |
+
"model.layers.29.self_attn.dt_bias",
|
| 816 |
+
"model.layers.29.self_attn.f_a_proj",
|
| 817 |
+
"model.layers.29.self_attn.f_b_proj",
|
| 818 |
+
"model.layers.29.self_attn.fused_qkvbfg_a_proj",
|
| 819 |
+
"model.layers.29.self_attn.g_a_proj",
|
| 820 |
+
"model.layers.29.self_attn.g_b_proj",
|
| 821 |
+
"model.layers.29.self_attn.k_conv1d",
|
| 822 |
+
"model.layers.29.self_attn.k_proj",
|
| 823 |
+
"model.layers.29.self_attn.o_norm",
|
| 824 |
+
"model.layers.29.self_attn.o_proj",
|
| 825 |
+
"model.layers.29.self_attn.q_conv1d",
|
| 826 |
+
"model.layers.29.self_attn.q_proj",
|
| 827 |
+
"model.layers.29.self_attn.qkv_proj",
|
| 828 |
+
"model.layers.29.self_attn.v_conv1d",
|
| 829 |
+
"model.layers.29.self_attn.v_proj",
|
| 830 |
+
"model.layers.3.hc_attn_base",
|
| 831 |
+
"model.layers.3.hc_attn_fn",
|
| 832 |
+
"model.layers.3.hc_attn_scale",
|
| 833 |
+
"model.layers.3.hc_ffn_base",
|
| 834 |
+
"model.layers.3.hc_ffn_fn",
|
| 835 |
+
"model.layers.3.hc_ffn_scale",
|
| 836 |
+
"model.layers.3.input_layernorm",
|
| 837 |
+
"model.layers.3.mlp.gate",
|
| 838 |
+
"model.layers.3.mlp.gate.e_score_correction_bias",
|
| 839 |
+
"model.layers.3.post_attention_layernorm",
|
| 840 |
+
"model.layers.3.self_attn.indexer.index_kpool_compress_ape",
|
| 841 |
+
"model.layers.3.self_attn.indexer.index_kpool_compress_gate",
|
| 842 |
+
"model.layers.3.self_attn.indexer.k_norm",
|
| 843 |
+
"model.layers.3.self_attn.indexer.k_norm.bias",
|
| 844 |
+
"model.layers.3.self_attn.indexer.weights_proj",
|
| 845 |
+
"model.layers.3.self_attn.indexer.wk",
|
| 846 |
+
"model.layers.3.self_attn.indexer.wq_b",
|
| 847 |
+
"model.layers.3.self_attn.kv_a_layernorm",
|
| 848 |
+
"model.layers.3.self_attn.kv_b_proj",
|
| 849 |
+
"model.layers.3.self_attn.q_a_layernorm",
|
| 850 |
+
"model.layers.30.hc_attn_base",
|
| 851 |
+
"model.layers.30.hc_attn_fn",
|
| 852 |
+
"model.layers.30.hc_attn_scale",
|
| 853 |
+
"model.layers.30.hc_ffn_base",
|
| 854 |
+
"model.layers.30.hc_ffn_fn",
|
| 855 |
+
"model.layers.30.hc_ffn_scale",
|
| 856 |
+
"model.layers.30.input_layernorm",
|
| 857 |
+
"model.layers.30.mlp.gate",
|
| 858 |
+
"model.layers.30.mlp.gate.e_score_correction_bias",
|
| 859 |
+
"model.layers.30.post_attention_layernorm",
|
| 860 |
+
"model.layers.30.self_attn.A_log",
|
| 861 |
+
"model.layers.30.self_attn.b_proj",
|
| 862 |
+
"model.layers.30.self_attn.dt_bias",
|
| 863 |
+
"model.layers.30.self_attn.f_a_proj",
|
| 864 |
+
"model.layers.30.self_attn.f_b_proj",
|
| 865 |
+
"model.layers.30.self_attn.fused_qkvbfg_a_proj",
|
| 866 |
+
"model.layers.30.self_attn.g_a_proj",
|
| 867 |
+
"model.layers.30.self_attn.g_b_proj",
|
| 868 |
+
"model.layers.30.self_attn.k_conv1d",
|
| 869 |
+
"model.layers.30.self_attn.k_proj",
|
| 870 |
+
"model.layers.30.self_attn.o_norm",
|
| 871 |
+
"model.layers.30.self_attn.o_proj",
|
| 872 |
+
"model.layers.30.self_attn.q_conv1d",
|
| 873 |
+
"model.layers.30.self_attn.q_proj",
|
| 874 |
+
"model.layers.30.self_attn.qkv_proj",
|
| 875 |
+
"model.layers.30.self_attn.v_conv1d",
|
| 876 |
+
"model.layers.30.self_attn.v_proj",
|
| 877 |
+
"model.layers.31.hc_attn_base",
|
| 878 |
+
"model.layers.31.hc_attn_fn",
|
| 879 |
+
"model.layers.31.hc_attn_scale",
|
| 880 |
+
"model.layers.31.hc_ffn_base",
|
| 881 |
+
"model.layers.31.hc_ffn_fn",
|
| 882 |
+
"model.layers.31.hc_ffn_scale",
|
| 883 |
+
"model.layers.31.input_layernorm",
|
| 884 |
+
"model.layers.31.mlp.gate",
|
| 885 |
+
"model.layers.31.mlp.gate.e_score_correction_bias",
|
| 886 |
+
"model.layers.31.post_attention_layernorm",
|
| 887 |
+
"model.layers.31.self_attn.indexer.index_kpool_compress_ape",
|
| 888 |
+
"model.layers.31.self_attn.indexer.index_kpool_compress_gate",
|
| 889 |
+
"model.layers.31.self_attn.indexer.k_norm",
|
| 890 |
+
"model.layers.31.self_attn.indexer.k_norm.bias",
|
| 891 |
+
"model.layers.31.self_attn.indexer.weights_proj",
|
| 892 |
+
"model.layers.31.self_attn.indexer.wk",
|
| 893 |
+
"model.layers.31.self_attn.indexer.wq_b",
|
| 894 |
+
"model.layers.31.self_attn.kv_a_layernorm",
|
| 895 |
+
"model.layers.31.self_attn.kv_b_proj",
|
| 896 |
+
"model.layers.31.self_attn.q_a_layernorm",
|
| 897 |
+
"model.layers.32.hc_attn_base",
|
| 898 |
+
"model.layers.32.hc_attn_fn",
|
| 899 |
+
"model.layers.32.hc_attn_scale",
|
| 900 |
+
"model.layers.32.hc_ffn_base",
|
| 901 |
+
"model.layers.32.hc_ffn_fn",
|
| 902 |
+
"model.layers.32.hc_ffn_scale",
|
| 903 |
+
"model.layers.32.input_layernorm",
|
| 904 |
+
"model.layers.32.mlp.gate",
|
| 905 |
+
"model.layers.32.mlp.gate.e_score_correction_bias",
|
| 906 |
+
"model.layers.32.post_attention_layernorm",
|
| 907 |
+
"model.layers.32.self_attn.A_log",
|
| 908 |
+
"model.layers.32.self_attn.b_proj",
|
| 909 |
+
"model.layers.32.self_attn.dt_bias",
|
| 910 |
+
"model.layers.32.self_attn.f_a_proj",
|
| 911 |
+
"model.layers.32.self_attn.f_b_proj",
|
| 912 |
+
"model.layers.32.self_attn.fused_qkvbfg_a_proj",
|
| 913 |
+
"model.layers.32.self_attn.g_a_proj",
|
| 914 |
+
"model.layers.32.self_attn.g_b_proj",
|
| 915 |
+
"model.layers.32.self_attn.k_conv1d",
|
| 916 |
+
"model.layers.32.self_attn.k_proj",
|
| 917 |
+
"model.layers.32.self_attn.o_norm",
|
| 918 |
+
"model.layers.32.self_attn.o_proj",
|
| 919 |
+
"model.layers.32.self_attn.q_conv1d",
|
| 920 |
+
"model.layers.32.self_attn.q_proj",
|
| 921 |
+
"model.layers.32.self_attn.qkv_proj",
|
| 922 |
+
"model.layers.32.self_attn.v_conv1d",
|
| 923 |
+
"model.layers.32.self_attn.v_proj",
|
| 924 |
+
"model.layers.33.hc_attn_base",
|
| 925 |
+
"model.layers.33.hc_attn_fn",
|
| 926 |
+
"model.layers.33.hc_attn_scale",
|
| 927 |
+
"model.layers.33.hc_ffn_base",
|
| 928 |
+
"model.layers.33.hc_ffn_fn",
|
| 929 |
+
"model.layers.33.hc_ffn_scale",
|
| 930 |
+
"model.layers.33.input_layernorm",
|
| 931 |
+
"model.layers.33.mlp.gate",
|
| 932 |
+
"model.layers.33.mlp.gate.e_score_correction_bias",
|
| 933 |
+
"model.layers.33.post_attention_layernorm",
|
| 934 |
+
"model.layers.33.self_attn.A_log",
|
| 935 |
+
"model.layers.33.self_attn.b_proj",
|
| 936 |
+
"model.layers.33.self_attn.dt_bias",
|
| 937 |
+
"model.layers.33.self_attn.f_a_proj",
|
| 938 |
+
"model.layers.33.self_attn.f_b_proj",
|
| 939 |
+
"model.layers.33.self_attn.fused_qkvbfg_a_proj",
|
| 940 |
+
"model.layers.33.self_attn.g_a_proj",
|
| 941 |
+
"model.layers.33.self_attn.g_b_proj",
|
| 942 |
+
"model.layers.33.self_attn.k_conv1d",
|
| 943 |
+
"model.layers.33.self_attn.k_proj",
|
| 944 |
+
"model.layers.33.self_attn.o_norm",
|
| 945 |
+
"model.layers.33.self_attn.o_proj",
|
| 946 |
+
"model.layers.33.self_attn.q_conv1d",
|
| 947 |
+
"model.layers.33.self_attn.q_proj",
|
| 948 |
+
"model.layers.33.self_attn.qkv_proj",
|
| 949 |
+
"model.layers.33.self_attn.v_conv1d",
|
| 950 |
+
"model.layers.33.self_attn.v_proj",
|
| 951 |
+
"model.layers.34.hc_attn_base",
|
| 952 |
+
"model.layers.34.hc_attn_fn",
|
| 953 |
+
"model.layers.34.hc_attn_scale",
|
| 954 |
+
"model.layers.34.hc_ffn_base",
|
| 955 |
+
"model.layers.34.hc_ffn_fn",
|
| 956 |
+
"model.layers.34.hc_ffn_scale",
|
| 957 |
+
"model.layers.34.input_layernorm",
|
| 958 |
+
"model.layers.34.mlp.gate",
|
| 959 |
+
"model.layers.34.mlp.gate.e_score_correction_bias",
|
| 960 |
+
"model.layers.34.post_attention_layernorm",
|
| 961 |
+
"model.layers.34.self_attn.A_log",
|
| 962 |
+
"model.layers.34.self_attn.b_proj",
|
| 963 |
+
"model.layers.34.self_attn.dt_bias",
|
| 964 |
+
"model.layers.34.self_attn.f_a_proj",
|
| 965 |
+
"model.layers.34.self_attn.f_b_proj",
|
| 966 |
+
"model.layers.34.self_attn.fused_qkvbfg_a_proj",
|
| 967 |
+
"model.layers.34.self_attn.g_a_proj",
|
| 968 |
+
"model.layers.34.self_attn.g_b_proj",
|
| 969 |
+
"model.layers.34.self_attn.k_conv1d",
|
| 970 |
+
"model.layers.34.self_attn.k_proj",
|
| 971 |
+
"model.layers.34.self_attn.o_norm",
|
| 972 |
+
"model.layers.34.self_attn.o_proj",
|
| 973 |
+
"model.layers.34.self_attn.q_conv1d",
|
| 974 |
+
"model.layers.34.self_attn.q_proj",
|
| 975 |
+
"model.layers.34.self_attn.qkv_proj",
|
| 976 |
+
"model.layers.34.self_attn.v_conv1d",
|
| 977 |
+
"model.layers.34.self_attn.v_proj",
|
| 978 |
+
"model.layers.35.hc_attn_base",
|
| 979 |
+
"model.layers.35.hc_attn_fn",
|
| 980 |
+
"model.layers.35.hc_attn_scale",
|
| 981 |
+
"model.layers.35.hc_ffn_base",
|
| 982 |
+
"model.layers.35.hc_ffn_fn",
|
| 983 |
+
"model.layers.35.hc_ffn_scale",
|
| 984 |
+
"model.layers.35.input_layernorm",
|
| 985 |
+
"model.layers.35.mlp.gate",
|
| 986 |
+
"model.layers.35.mlp.gate.e_score_correction_bias",
|
| 987 |
+
"model.layers.35.post_attention_layernorm",
|
| 988 |
+
"model.layers.35.self_attn.indexer.index_kpool_compress_ape",
|
| 989 |
+
"model.layers.35.self_attn.indexer.index_kpool_compress_gate",
|
| 990 |
+
"model.layers.35.self_attn.indexer.k_norm",
|
| 991 |
+
"model.layers.35.self_attn.indexer.k_norm.bias",
|
| 992 |
+
"model.layers.35.self_attn.indexer.weights_proj",
|
| 993 |
+
"model.layers.35.self_attn.indexer.wk",
|
| 994 |
+
"model.layers.35.self_attn.indexer.wq_b",
|
| 995 |
+
"model.layers.35.self_attn.kv_a_layernorm",
|
| 996 |
+
"model.layers.35.self_attn.kv_b_proj",
|
| 997 |
+
"model.layers.35.self_attn.q_a_layernorm",
|
| 998 |
+
"model.layers.36.hc_attn_base",
|
| 999 |
+
"model.layers.36.hc_attn_fn",
|
| 1000 |
+
"model.layers.36.hc_attn_scale",
|
| 1001 |
+
"model.layers.36.hc_ffn_base",
|
| 1002 |
+
"model.layers.36.hc_ffn_fn",
|
| 1003 |
+
"model.layers.36.hc_ffn_scale",
|
| 1004 |
+
"model.layers.36.input_layernorm",
|
| 1005 |
+
"model.layers.36.mlp.gate",
|
| 1006 |
+
"model.layers.36.mlp.gate.e_score_correction_bias",
|
| 1007 |
+
"model.layers.36.post_attention_layernorm",
|
| 1008 |
+
"model.layers.36.self_attn.A_log",
|
| 1009 |
+
"model.layers.36.self_attn.b_proj",
|
| 1010 |
+
"model.layers.36.self_attn.dt_bias",
|
| 1011 |
+
"model.layers.36.self_attn.f_a_proj",
|
| 1012 |
+
"model.layers.36.self_attn.f_b_proj",
|
| 1013 |
+
"model.layers.36.self_attn.fused_qkvbfg_a_proj",
|
| 1014 |
+
"model.layers.36.self_attn.g_a_proj",
|
| 1015 |
+
"model.layers.36.self_attn.g_b_proj",
|
| 1016 |
+
"model.layers.36.self_attn.k_conv1d",
|
| 1017 |
+
"model.layers.36.self_attn.k_proj",
|
| 1018 |
+
"model.layers.36.self_attn.o_norm",
|
| 1019 |
+
"model.layers.36.self_attn.o_proj",
|
| 1020 |
+
"model.layers.36.self_attn.q_conv1d",
|
| 1021 |
+
"model.layers.36.self_attn.q_proj",
|
| 1022 |
+
"model.layers.36.self_attn.qkv_proj",
|
| 1023 |
+
"model.layers.36.self_attn.v_conv1d",
|
| 1024 |
+
"model.layers.36.self_attn.v_proj",
|
| 1025 |
+
"model.layers.37.hc_attn_base",
|
| 1026 |
+
"model.layers.37.hc_attn_fn",
|
| 1027 |
+
"model.layers.37.hc_attn_scale",
|
| 1028 |
+
"model.layers.37.hc_ffn_base",
|
| 1029 |
+
"model.layers.37.hc_ffn_fn",
|
| 1030 |
+
"model.layers.37.hc_ffn_scale",
|
| 1031 |
+
"model.layers.37.input_layernorm",
|
| 1032 |
+
"model.layers.37.mlp.gate",
|
| 1033 |
+
"model.layers.37.mlp.gate.e_score_correction_bias",
|
| 1034 |
+
"model.layers.37.post_attention_layernorm",
|
| 1035 |
+
"model.layers.37.self_attn.A_log",
|
| 1036 |
+
"model.layers.37.self_attn.b_proj",
|
| 1037 |
+
"model.layers.37.self_attn.dt_bias",
|
| 1038 |
+
"model.layers.37.self_attn.f_a_proj",
|
| 1039 |
+
"model.layers.37.self_attn.f_b_proj",
|
| 1040 |
+
"model.layers.37.self_attn.fused_qkvbfg_a_proj",
|
| 1041 |
+
"model.layers.37.self_attn.g_a_proj",
|
| 1042 |
+
"model.layers.37.self_attn.g_b_proj",
|
| 1043 |
+
"model.layers.37.self_attn.k_conv1d",
|
| 1044 |
+
"model.layers.37.self_attn.k_proj",
|
| 1045 |
+
"model.layers.37.self_attn.o_norm",
|
| 1046 |
+
"model.layers.37.self_attn.o_proj",
|
| 1047 |
+
"model.layers.37.self_attn.q_conv1d",
|
| 1048 |
+
"model.layers.37.self_attn.q_proj",
|
| 1049 |
+
"model.layers.37.self_attn.qkv_proj",
|
| 1050 |
+
"model.layers.37.self_attn.v_conv1d",
|
| 1051 |
+
"model.layers.37.self_attn.v_proj",
|
| 1052 |
+
"model.layers.38.hc_attn_base",
|
| 1053 |
+
"model.layers.38.hc_attn_fn",
|
| 1054 |
+
"model.layers.38.hc_attn_scale",
|
| 1055 |
+
"model.layers.38.hc_ffn_base",
|
| 1056 |
+
"model.layers.38.hc_ffn_fn",
|
| 1057 |
+
"model.layers.38.hc_ffn_scale",
|
| 1058 |
+
"model.layers.38.input_layernorm",
|
| 1059 |
+
"model.layers.38.mlp.gate",
|
| 1060 |
+
"model.layers.38.mlp.gate.e_score_correction_bias",
|
| 1061 |
+
"model.layers.38.post_attention_layernorm",
|
| 1062 |
+
"model.layers.38.self_attn.A_log",
|
| 1063 |
+
"model.layers.38.self_attn.b_proj",
|
| 1064 |
+
"model.layers.38.self_attn.dt_bias",
|
| 1065 |
+
"model.layers.38.self_attn.f_a_proj",
|
| 1066 |
+
"model.layers.38.self_attn.f_b_proj",
|
| 1067 |
+
"model.layers.38.self_attn.fused_qkvbfg_a_proj",
|
| 1068 |
+
"model.layers.38.self_attn.g_a_proj",
|
| 1069 |
+
"model.layers.38.self_attn.g_b_proj",
|
| 1070 |
+
"model.layers.38.self_attn.k_conv1d",
|
| 1071 |
+
"model.layers.38.self_attn.k_proj",
|
| 1072 |
+
"model.layers.38.self_attn.o_norm",
|
| 1073 |
+
"model.layers.38.self_attn.o_proj",
|
| 1074 |
+
"model.layers.38.self_attn.q_conv1d",
|
| 1075 |
+
"model.layers.38.self_attn.q_proj",
|
| 1076 |
+
"model.layers.38.self_attn.qkv_proj",
|
| 1077 |
+
"model.layers.38.self_attn.v_conv1d",
|
| 1078 |
+
"model.layers.38.self_attn.v_proj",
|
| 1079 |
+
"model.layers.39.hc_attn_base",
|
| 1080 |
+
"model.layers.39.hc_attn_fn",
|
| 1081 |
+
"model.layers.39.hc_attn_scale",
|
| 1082 |
+
"model.layers.39.hc_ffn_base",
|
| 1083 |
+
"model.layers.39.hc_ffn_fn",
|
| 1084 |
+
"model.layers.39.hc_ffn_scale",
|
| 1085 |
+
"model.layers.39.input_layernorm",
|
| 1086 |
+
"model.layers.39.mlp.gate",
|
| 1087 |
+
"model.layers.39.mlp.gate.e_score_correction_bias",
|
| 1088 |
+
"model.layers.39.post_attention_layernorm",
|
| 1089 |
+
"model.layers.39.self_attn.indexer.index_kpool_compress_ape",
|
| 1090 |
+
"model.layers.39.self_attn.indexer.index_kpool_compress_gate",
|
| 1091 |
+
"model.layers.39.self_attn.indexer.k_norm",
|
| 1092 |
+
"model.layers.39.self_attn.indexer.k_norm.bias",
|
| 1093 |
+
"model.layers.39.self_attn.indexer.weights_proj",
|
| 1094 |
+
"model.layers.39.self_attn.indexer.wk",
|
| 1095 |
+
"model.layers.39.self_attn.indexer.wq_b",
|
| 1096 |
+
"model.layers.39.self_attn.kv_a_layernorm",
|
| 1097 |
+
"model.layers.39.self_attn.kv_b_proj",
|
| 1098 |
+
"model.layers.39.self_attn.q_a_layernorm",
|
| 1099 |
+
"model.layers.4.hc_attn_base",
|
| 1100 |
+
"model.layers.4.hc_attn_fn",
|
| 1101 |
+
"model.layers.4.hc_attn_scale",
|
| 1102 |
+
"model.layers.4.hc_ffn_base",
|
| 1103 |
+
"model.layers.4.hc_ffn_fn",
|
| 1104 |
+
"model.layers.4.hc_ffn_scale",
|
| 1105 |
+
"model.layers.4.input_layernorm",
|
| 1106 |
+
"model.layers.4.mlp.gate",
|
| 1107 |
+
"model.layers.4.mlp.gate.e_score_correction_bias",
|
| 1108 |
+
"model.layers.4.post_attention_layernorm",
|
| 1109 |
+
"model.layers.4.self_attn.A_log",
|
| 1110 |
+
"model.layers.4.self_attn.b_proj",
|
| 1111 |
+
"model.layers.4.self_attn.dt_bias",
|
| 1112 |
+
"model.layers.4.self_attn.f_a_proj",
|
| 1113 |
+
"model.layers.4.self_attn.f_b_proj",
|
| 1114 |
+
"model.layers.4.self_attn.fused_qkvbfg_a_proj",
|
| 1115 |
+
"model.layers.4.self_attn.g_a_proj",
|
| 1116 |
+
"model.layers.4.self_attn.g_b_proj",
|
| 1117 |
+
"model.layers.4.self_attn.k_conv1d",
|
| 1118 |
+
"model.layers.4.self_attn.k_proj",
|
| 1119 |
+
"model.layers.4.self_attn.o_norm",
|
| 1120 |
+
"model.layers.4.self_attn.o_proj",
|
| 1121 |
+
"model.layers.4.self_attn.q_conv1d",
|
| 1122 |
+
"model.layers.4.self_attn.q_proj",
|
| 1123 |
+
"model.layers.4.self_attn.qkv_proj",
|
| 1124 |
+
"model.layers.4.self_attn.v_conv1d",
|
| 1125 |
+
"model.layers.4.self_attn.v_proj",
|
| 1126 |
+
"model.layers.40.hc_attn_base",
|
| 1127 |
+
"model.layers.40.hc_attn_fn",
|
| 1128 |
+
"model.layers.40.hc_attn_scale",
|
| 1129 |
+
"model.layers.40.hc_ffn_base",
|
| 1130 |
+
"model.layers.40.hc_ffn_fn",
|
| 1131 |
+
"model.layers.40.hc_ffn_scale",
|
| 1132 |
+
"model.layers.40.input_layernorm",
|
| 1133 |
+
"model.layers.40.mlp.gate",
|
| 1134 |
+
"model.layers.40.mlp.gate.e_score_correction_bias",
|
| 1135 |
+
"model.layers.40.post_attention_layernorm",
|
| 1136 |
+
"model.layers.40.self_attn.A_log",
|
| 1137 |
+
"model.layers.40.self_attn.b_proj",
|
| 1138 |
+
"model.layers.40.self_attn.dt_bias",
|
| 1139 |
+
"model.layers.40.self_attn.f_a_proj",
|
| 1140 |
+
"model.layers.40.self_attn.f_b_proj",
|
| 1141 |
+
"model.layers.40.self_attn.fused_qkvbfg_a_proj",
|
| 1142 |
+
"model.layers.40.self_attn.g_a_proj",
|
| 1143 |
+
"model.layers.40.self_attn.g_b_proj",
|
| 1144 |
+
"model.layers.40.self_attn.k_conv1d",
|
| 1145 |
+
"model.layers.40.self_attn.k_proj",
|
| 1146 |
+
"model.layers.40.self_attn.o_norm",
|
| 1147 |
+
"model.layers.40.self_attn.o_proj",
|
| 1148 |
+
"model.layers.40.self_attn.q_conv1d",
|
| 1149 |
+
"model.layers.40.self_attn.q_proj",
|
| 1150 |
+
"model.layers.40.self_attn.qkv_proj",
|
| 1151 |
+
"model.layers.40.self_attn.v_conv1d",
|
| 1152 |
+
"model.layers.40.self_attn.v_proj",
|
| 1153 |
+
"model.layers.41.hc_attn_base",
|
| 1154 |
+
"model.layers.41.hc_attn_fn",
|
| 1155 |
+
"model.layers.41.hc_attn_scale",
|
| 1156 |
+
"model.layers.41.hc_ffn_base",
|
| 1157 |
+
"model.layers.41.hc_ffn_fn",
|
| 1158 |
+
"model.layers.41.hc_ffn_scale",
|
| 1159 |
+
"model.layers.41.input_layernorm",
|
| 1160 |
+
"model.layers.41.mlp.gate",
|
| 1161 |
+
"model.layers.41.mlp.gate.e_score_correction_bias",
|
| 1162 |
+
"model.layers.41.post_attention_layernorm",
|
| 1163 |
+
"model.layers.41.self_attn.A_log",
|
| 1164 |
+
"model.layers.41.self_attn.b_proj",
|
| 1165 |
+
"model.layers.41.self_attn.dt_bias",
|
| 1166 |
+
"model.layers.41.self_attn.f_a_proj",
|
| 1167 |
+
"model.layers.41.self_attn.f_b_proj",
|
| 1168 |
+
"model.layers.41.self_attn.fused_qkvbfg_a_proj",
|
| 1169 |
+
"model.layers.41.self_attn.g_a_proj",
|
| 1170 |
+
"model.layers.41.self_attn.g_b_proj",
|
| 1171 |
+
"model.layers.41.self_attn.k_conv1d",
|
| 1172 |
+
"model.layers.41.self_attn.k_proj",
|
| 1173 |
+
"model.layers.41.self_attn.o_norm",
|
| 1174 |
+
"model.layers.41.self_attn.o_proj",
|
| 1175 |
+
"model.layers.41.self_attn.q_conv1d",
|
| 1176 |
+
"model.layers.41.self_attn.q_proj",
|
| 1177 |
+
"model.layers.41.self_attn.qkv_proj",
|
| 1178 |
+
"model.layers.41.self_attn.v_conv1d",
|
| 1179 |
+
"model.layers.41.self_attn.v_proj",
|
| 1180 |
+
"model.layers.42.hc_attn_base",
|
| 1181 |
+
"model.layers.42.hc_attn_fn",
|
| 1182 |
+
"model.layers.42.hc_attn_scale",
|
| 1183 |
+
"model.layers.42.hc_ffn_base",
|
| 1184 |
+
"model.layers.42.hc_ffn_fn",
|
| 1185 |
+
"model.layers.42.hc_ffn_scale",
|
| 1186 |
+
"model.layers.42.input_layernorm",
|
| 1187 |
+
"model.layers.42.mlp.gate",
|
| 1188 |
+
"model.layers.42.mlp.gate.e_score_correction_bias",
|
| 1189 |
+
"model.layers.42.post_attention_layernorm",
|
| 1190 |
+
"model.layers.42.self_attn.A_log",
|
| 1191 |
+
"model.layers.42.self_attn.b_proj",
|
| 1192 |
+
"model.layers.42.self_attn.dt_bias",
|
| 1193 |
+
"model.layers.42.self_attn.f_a_proj",
|
| 1194 |
+
"model.layers.42.self_attn.f_b_proj",
|
| 1195 |
+
"model.layers.42.self_attn.fused_qkvbfg_a_proj",
|
| 1196 |
+
"model.layers.42.self_attn.g_a_proj",
|
| 1197 |
+
"model.layers.42.self_attn.g_b_proj",
|
| 1198 |
+
"model.layers.42.self_attn.k_conv1d",
|
| 1199 |
+
"model.layers.42.self_attn.k_proj",
|
| 1200 |
+
"model.layers.42.self_attn.o_norm",
|
| 1201 |
+
"model.layers.42.self_attn.o_proj",
|
| 1202 |
+
"model.layers.42.self_attn.q_conv1d",
|
| 1203 |
+
"model.layers.42.self_attn.q_proj",
|
| 1204 |
+
"model.layers.42.self_attn.qkv_proj",
|
| 1205 |
+
"model.layers.42.self_attn.v_conv1d",
|
| 1206 |
+
"model.layers.42.self_attn.v_proj",
|
| 1207 |
+
"model.layers.43.hc_attn_base",
|
| 1208 |
+
"model.layers.43.hc_attn_fn",
|
| 1209 |
+
"model.layers.43.hc_attn_scale",
|
| 1210 |
+
"model.layers.43.hc_ffn_base",
|
| 1211 |
+
"model.layers.43.hc_ffn_fn",
|
| 1212 |
+
"model.layers.43.hc_ffn_scale",
|
| 1213 |
+
"model.layers.43.input_layernorm",
|
| 1214 |
+
"model.layers.43.mlp.gate",
|
| 1215 |
+
"model.layers.43.mlp.gate.e_score_correction_bias",
|
| 1216 |
+
"model.layers.43.post_attention_layernorm",
|
| 1217 |
+
"model.layers.43.self_attn.indexer.index_kpool_compress_ape",
|
| 1218 |
+
"model.layers.43.self_attn.indexer.index_kpool_compress_gate",
|
| 1219 |
+
"model.layers.43.self_attn.indexer.k_norm",
|
| 1220 |
+
"model.layers.43.self_attn.indexer.k_norm.bias",
|
| 1221 |
+
"model.layers.43.self_attn.indexer.weights_proj",
|
| 1222 |
+
"model.layers.43.self_attn.indexer.wk",
|
| 1223 |
+
"model.layers.43.self_attn.indexer.wq_b",
|
| 1224 |
+
"model.layers.43.self_attn.kv_a_layernorm",
|
| 1225 |
+
"model.layers.43.self_attn.kv_b_proj",
|
| 1226 |
+
"model.layers.43.self_attn.q_a_layernorm",
|
| 1227 |
+
"model.layers.44.hc_attn_base",
|
| 1228 |
+
"model.layers.44.hc_attn_fn",
|
| 1229 |
+
"model.layers.44.hc_attn_scale",
|
| 1230 |
+
"model.layers.44.hc_ffn_base",
|
| 1231 |
+
"model.layers.44.hc_ffn_fn",
|
| 1232 |
+
"model.layers.44.hc_ffn_scale",
|
| 1233 |
+
"model.layers.44.input_layernorm",
|
| 1234 |
+
"model.layers.44.mlp.gate",
|
| 1235 |
+
"model.layers.44.mlp.gate.e_score_correction_bias",
|
| 1236 |
+
"model.layers.44.post_attention_layernorm",
|
| 1237 |
+
"model.layers.44.self_attn.A_log",
|
| 1238 |
+
"model.layers.44.self_attn.b_proj",
|
| 1239 |
+
"model.layers.44.self_attn.dt_bias",
|
| 1240 |
+
"model.layers.44.self_attn.f_a_proj",
|
| 1241 |
+
"model.layers.44.self_attn.f_b_proj",
|
| 1242 |
+
"model.layers.44.self_attn.fused_qkvbfg_a_proj",
|
| 1243 |
+
"model.layers.44.self_attn.g_a_proj",
|
| 1244 |
+
"model.layers.44.self_attn.g_b_proj",
|
| 1245 |
+
"model.layers.44.self_attn.k_conv1d",
|
| 1246 |
+
"model.layers.44.self_attn.k_proj",
|
| 1247 |
+
"model.layers.44.self_attn.o_norm",
|
| 1248 |
+
"model.layers.44.self_attn.o_proj",
|
| 1249 |
+
"model.layers.44.self_attn.q_conv1d",
|
| 1250 |
+
"model.layers.44.self_attn.q_proj",
|
| 1251 |
+
"model.layers.44.self_attn.qkv_proj",
|
| 1252 |
+
"model.layers.44.self_attn.v_conv1d",
|
| 1253 |
+
"model.layers.44.self_attn.v_proj",
|
| 1254 |
+
"model.layers.45.eh_proj",
|
| 1255 |
+
"model.layers.45.enorm",
|
| 1256 |
+
"model.layers.45.hnorm",
|
| 1257 |
+
"model.layers.45.input_layernorm",
|
| 1258 |
+
"model.layers.45.mlp.gate",
|
| 1259 |
+
"model.layers.45.mlp.gate.e_score_correction_bias",
|
| 1260 |
+
"model.layers.45.post_attention_layernorm",
|
| 1261 |
+
"model.layers.45.self_attn.indexer.index_kpool_compress_ape",
|
| 1262 |
+
"model.layers.45.self_attn.indexer.index_kpool_compress_gate",
|
| 1263 |
+
"model.layers.45.self_attn.indexer.k_norm",
|
| 1264 |
+
"model.layers.45.self_attn.indexer.k_norm.bias",
|
| 1265 |
+
"model.layers.45.self_attn.indexer.weights_proj",
|
| 1266 |
+
"model.layers.45.self_attn.indexer.wk",
|
| 1267 |
+
"model.layers.45.self_attn.indexer.wq_b",
|
| 1268 |
+
"model.layers.45.self_attn.kv_a_layernorm",
|
| 1269 |
+
"model.layers.45.self_attn.kv_b_proj",
|
| 1270 |
+
"model.layers.45.self_attn.q_a_layernorm",
|
| 1271 |
+
"model.layers.45.shared_head.norm",
|
| 1272 |
+
"model.layers.5.hc_attn_base",
|
| 1273 |
+
"model.layers.5.hc_attn_fn",
|
| 1274 |
+
"model.layers.5.hc_attn_scale",
|
| 1275 |
+
"model.layers.5.hc_ffn_base",
|
| 1276 |
+
"model.layers.5.hc_ffn_fn",
|
| 1277 |
+
"model.layers.5.hc_ffn_scale",
|
| 1278 |
+
"model.layers.5.input_layernorm",
|
| 1279 |
+
"model.layers.5.mlp.gate",
|
| 1280 |
+
"model.layers.5.mlp.gate.e_score_correction_bias",
|
| 1281 |
+
"model.layers.5.post_attention_layernorm",
|
| 1282 |
+
"model.layers.5.self_attn.A_log",
|
| 1283 |
+
"model.layers.5.self_attn.b_proj",
|
| 1284 |
+
"model.layers.5.self_attn.dt_bias",
|
| 1285 |
+
"model.layers.5.self_attn.f_a_proj",
|
| 1286 |
+
"model.layers.5.self_attn.f_b_proj",
|
| 1287 |
+
"model.layers.5.self_attn.fused_qkvbfg_a_proj",
|
| 1288 |
+
"model.layers.5.self_attn.g_a_proj",
|
| 1289 |
+
"model.layers.5.self_attn.g_b_proj",
|
| 1290 |
+
"model.layers.5.self_attn.k_conv1d",
|
| 1291 |
+
"model.layers.5.self_attn.k_proj",
|
| 1292 |
+
"model.layers.5.self_attn.o_norm",
|
| 1293 |
+
"model.layers.5.self_attn.o_proj",
|
| 1294 |
+
"model.layers.5.self_attn.q_conv1d",
|
| 1295 |
+
"model.layers.5.self_attn.q_proj",
|
| 1296 |
+
"model.layers.5.self_attn.qkv_proj",
|
| 1297 |
+
"model.layers.5.self_attn.v_conv1d",
|
| 1298 |
+
"model.layers.5.self_attn.v_proj",
|
| 1299 |
+
"model.layers.6.hc_attn_base",
|
| 1300 |
+
"model.layers.6.hc_attn_fn",
|
| 1301 |
+
"model.layers.6.hc_attn_scale",
|
| 1302 |
+
"model.layers.6.hc_ffn_base",
|
| 1303 |
+
"model.layers.6.hc_ffn_fn",
|
| 1304 |
+
"model.layers.6.hc_ffn_scale",
|
| 1305 |
+
"model.layers.6.input_layernorm",
|
| 1306 |
+
"model.layers.6.mlp.gate",
|
| 1307 |
+
"model.layers.6.mlp.gate.e_score_correction_bias",
|
| 1308 |
+
"model.layers.6.post_attention_layernorm",
|
| 1309 |
+
"model.layers.6.self_attn.A_log",
|
| 1310 |
+
"model.layers.6.self_attn.b_proj",
|
| 1311 |
+
"model.layers.6.self_attn.dt_bias",
|
| 1312 |
+
"model.layers.6.self_attn.f_a_proj",
|
| 1313 |
+
"model.layers.6.self_attn.f_b_proj",
|
| 1314 |
+
"model.layers.6.self_attn.fused_qkvbfg_a_proj",
|
| 1315 |
+
"model.layers.6.self_attn.g_a_proj",
|
| 1316 |
+
"model.layers.6.self_attn.g_b_proj",
|
| 1317 |
+
"model.layers.6.self_attn.k_conv1d",
|
| 1318 |
+
"model.layers.6.self_attn.k_proj",
|
| 1319 |
+
"model.layers.6.self_attn.o_norm",
|
| 1320 |
+
"model.layers.6.self_attn.o_proj",
|
| 1321 |
+
"model.layers.6.self_attn.q_conv1d",
|
| 1322 |
+
"model.layers.6.self_attn.q_proj",
|
| 1323 |
+
"model.layers.6.self_attn.qkv_proj",
|
| 1324 |
+
"model.layers.6.self_attn.v_conv1d",
|
| 1325 |
+
"model.layers.6.self_attn.v_proj",
|
| 1326 |
+
"model.layers.7.hc_attn_base",
|
| 1327 |
+
"model.layers.7.hc_attn_fn",
|
| 1328 |
+
"model.layers.7.hc_attn_scale",
|
| 1329 |
+
"model.layers.7.hc_ffn_base",
|
| 1330 |
+
"model.layers.7.hc_ffn_fn",
|
| 1331 |
+
"model.layers.7.hc_ffn_scale",
|
| 1332 |
+
"model.layers.7.input_layernorm",
|
| 1333 |
+
"model.layers.7.mlp.gate",
|
| 1334 |
+
"model.layers.7.mlp.gate.e_score_correction_bias",
|
| 1335 |
+
"model.layers.7.post_attention_layernorm",
|
| 1336 |
+
"model.layers.7.self_attn.indexer.index_kpool_compress_ape",
|
| 1337 |
+
"model.layers.7.self_attn.indexer.index_kpool_compress_gate",
|
| 1338 |
+
"model.layers.7.self_attn.indexer.k_norm",
|
| 1339 |
+
"model.layers.7.self_attn.indexer.k_norm.bias",
|
| 1340 |
+
"model.layers.7.self_attn.indexer.weights_proj",
|
| 1341 |
+
"model.layers.7.self_attn.indexer.wk",
|
| 1342 |
+
"model.layers.7.self_attn.indexer.wq_b",
|
| 1343 |
+
"model.layers.7.self_attn.kv_a_layernorm",
|
| 1344 |
+
"model.layers.7.self_attn.kv_b_proj",
|
| 1345 |
+
"model.layers.7.self_attn.q_a_layernorm",
|
| 1346 |
+
"model.layers.8.hc_attn_base",
|
| 1347 |
+
"model.layers.8.hc_attn_fn",
|
| 1348 |
+
"model.layers.8.hc_attn_scale",
|
| 1349 |
+
"model.layers.8.hc_ffn_base",
|
| 1350 |
+
"model.layers.8.hc_ffn_fn",
|
| 1351 |
+
"model.layers.8.hc_ffn_scale",
|
| 1352 |
+
"model.layers.8.input_layernorm",
|
| 1353 |
+
"model.layers.8.mlp.gate",
|
| 1354 |
+
"model.layers.8.mlp.gate.e_score_correction_bias",
|
| 1355 |
+
"model.layers.8.post_attention_layernorm",
|
| 1356 |
+
"model.layers.8.self_attn.A_log",
|
| 1357 |
+
"model.layers.8.self_attn.b_proj",
|
| 1358 |
+
"model.layers.8.self_attn.dt_bias",
|
| 1359 |
+
"model.layers.8.self_attn.f_a_proj",
|
| 1360 |
+
"model.layers.8.self_attn.f_b_proj",
|
| 1361 |
+
"model.layers.8.self_attn.fused_qkvbfg_a_proj",
|
| 1362 |
+
"model.layers.8.self_attn.g_a_proj",
|
| 1363 |
+
"model.layers.8.self_attn.g_b_proj",
|
| 1364 |
+
"model.layers.8.self_attn.k_conv1d",
|
| 1365 |
+
"model.layers.8.self_attn.k_proj",
|
| 1366 |
+
"model.layers.8.self_attn.o_norm",
|
| 1367 |
+
"model.layers.8.self_attn.o_proj",
|
| 1368 |
+
"model.layers.8.self_attn.q_conv1d",
|
| 1369 |
+
"model.layers.8.self_attn.q_proj",
|
| 1370 |
+
"model.layers.8.self_attn.qkv_proj",
|
| 1371 |
+
"model.layers.8.self_attn.v_conv1d",
|
| 1372 |
+
"model.layers.8.self_attn.v_proj",
|
| 1373 |
+
"model.layers.9.hc_attn_base",
|
| 1374 |
+
"model.layers.9.hc_attn_fn",
|
| 1375 |
+
"model.layers.9.hc_attn_scale",
|
| 1376 |
+
"model.layers.9.hc_ffn_base",
|
| 1377 |
+
"model.layers.9.hc_ffn_fn",
|
| 1378 |
+
"model.layers.9.hc_ffn_scale",
|
| 1379 |
+
"model.layers.9.input_layernorm",
|
| 1380 |
+
"model.layers.9.mlp.gate",
|
| 1381 |
+
"model.layers.9.mlp.gate.e_score_correction_bias",
|
| 1382 |
+
"model.layers.9.post_attention_layernorm",
|
| 1383 |
+
"model.layers.9.self_attn.A_log",
|
| 1384 |
+
"model.layers.9.self_attn.b_proj",
|
| 1385 |
+
"model.layers.9.self_attn.dt_bias",
|
| 1386 |
+
"model.layers.9.self_attn.f_a_proj",
|
| 1387 |
+
"model.layers.9.self_attn.f_b_proj",
|
| 1388 |
+
"model.layers.9.self_attn.fused_qkvbfg_a_proj",
|
| 1389 |
+
"model.layers.9.self_attn.g_a_proj",
|
| 1390 |
+
"model.layers.9.self_attn.g_b_proj",
|
| 1391 |
+
"model.layers.9.self_attn.k_conv1d",
|
| 1392 |
+
"model.layers.9.self_attn.k_proj",
|
| 1393 |
+
"model.layers.9.self_attn.o_norm",
|
| 1394 |
+
"model.layers.9.self_attn.o_proj",
|
| 1395 |
+
"model.layers.9.self_attn.q_conv1d",
|
| 1396 |
+
"model.layers.9.self_attn.q_proj",
|
| 1397 |
+
"model.layers.9.self_attn.qkv_proj",
|
| 1398 |
+
"model.layers.9.self_attn.v_conv1d",
|
| 1399 |
+
"model.layers.9.self_attn.v_proj",
|
| 1400 |
+
"model.norm",
|
| 1401 |
+
"model.visual",
|
| 1402 |
+
"router",
|
| 1403 |
+
"visual",
|
| 1404 |
+
"visual.blocks.0.attn.k_norm",
|
| 1405 |
+
"visual.blocks.0.attn.proj",
|
| 1406 |
+
"visual.blocks.0.attn.proj.bias",
|
| 1407 |
+
"visual.blocks.0.attn.q_norm",
|
| 1408 |
+
"visual.blocks.0.attn.qkv",
|
| 1409 |
+
"visual.blocks.0.attn.qkv.bias",
|
| 1410 |
+
"visual.blocks.0.mlp.down_proj",
|
| 1411 |
+
"visual.blocks.0.mlp.down_proj.bias",
|
| 1412 |
+
"visual.blocks.0.mlp.gate_proj",
|
| 1413 |
+
"visual.blocks.0.mlp.gate_proj.bias",
|
| 1414 |
+
"visual.blocks.0.mlp.up_proj",
|
| 1415 |
+
"visual.blocks.0.mlp.up_proj.bias",
|
| 1416 |
+
"visual.blocks.0.norm1",
|
| 1417 |
+
"visual.blocks.0.norm2",
|
| 1418 |
+
"visual.blocks.1.attn.k_norm",
|
| 1419 |
+
"visual.blocks.1.attn.proj",
|
| 1420 |
+
"visual.blocks.1.attn.proj.bias",
|
| 1421 |
+
"visual.blocks.1.attn.q_norm",
|
| 1422 |
+
"visual.blocks.1.attn.qkv",
|
| 1423 |
+
"visual.blocks.1.attn.qkv.bias",
|
| 1424 |
+
"visual.blocks.1.mlp.down_proj",
|
| 1425 |
+
"visual.blocks.1.mlp.down_proj.bias",
|
| 1426 |
+
"visual.blocks.1.mlp.gate_proj",
|
| 1427 |
+
"visual.blocks.1.mlp.gate_proj.bias",
|
| 1428 |
+
"visual.blocks.1.mlp.up_proj",
|
| 1429 |
+
"visual.blocks.1.mlp.up_proj.bias",
|
| 1430 |
+
"visual.blocks.1.norm1",
|
| 1431 |
+
"visual.blocks.1.norm2",
|
| 1432 |
+
"visual.blocks.10.attn.k_norm",
|
| 1433 |
+
"visual.blocks.10.attn.proj",
|
| 1434 |
+
"visual.blocks.10.attn.proj.bias",
|
| 1435 |
+
"visual.blocks.10.attn.q_norm",
|
| 1436 |
+
"visual.blocks.10.attn.qkv",
|
| 1437 |
+
"visual.blocks.10.attn.qkv.bias",
|
| 1438 |
+
"visual.blocks.10.mlp.down_proj",
|
| 1439 |
+
"visual.blocks.10.mlp.down_proj.bias",
|
| 1440 |
+
"visual.blocks.10.mlp.gate_proj",
|
| 1441 |
+
"visual.blocks.10.mlp.gate_proj.bias",
|
| 1442 |
+
"visual.blocks.10.mlp.up_proj",
|
| 1443 |
+
"visual.blocks.10.mlp.up_proj.bias",
|
| 1444 |
+
"visual.blocks.10.norm1",
|
| 1445 |
+
"visual.blocks.10.norm2",
|
| 1446 |
+
"visual.blocks.11.attn.k_norm",
|
| 1447 |
+
"visual.blocks.11.attn.proj",
|
| 1448 |
+
"visual.blocks.11.attn.proj.bias",
|
| 1449 |
+
"visual.blocks.11.attn.q_norm",
|
| 1450 |
+
"visual.blocks.11.attn.qkv",
|
| 1451 |
+
"visual.blocks.11.attn.qkv.bias",
|
| 1452 |
+
"visual.blocks.11.mlp.down_proj",
|
| 1453 |
+
"visual.blocks.11.mlp.down_proj.bias",
|
| 1454 |
+
"visual.blocks.11.mlp.gate_proj",
|
| 1455 |
+
"visual.blocks.11.mlp.gate_proj.bias",
|
| 1456 |
+
"visual.blocks.11.mlp.up_proj",
|
| 1457 |
+
"visual.blocks.11.mlp.up_proj.bias",
|
| 1458 |
+
"visual.blocks.11.norm1",
|
| 1459 |
+
"visual.blocks.11.norm2",
|
| 1460 |
+
"visual.blocks.12.attn.k_norm",
|
| 1461 |
+
"visual.blocks.12.attn.proj",
|
| 1462 |
+
"visual.blocks.12.attn.proj.bias",
|
| 1463 |
+
"visual.blocks.12.attn.q_norm",
|
| 1464 |
+
"visual.blocks.12.attn.qkv",
|
| 1465 |
+
"visual.blocks.12.attn.qkv.bias",
|
| 1466 |
+
"visual.blocks.12.mlp.down_proj",
|
| 1467 |
+
"visual.blocks.12.mlp.down_proj.bias",
|
| 1468 |
+
"visual.blocks.12.mlp.gate_proj",
|
| 1469 |
+
"visual.blocks.12.mlp.gate_proj.bias",
|
| 1470 |
+
"visual.blocks.12.mlp.up_proj",
|
| 1471 |
+
"visual.blocks.12.mlp.up_proj.bias",
|
| 1472 |
+
"visual.blocks.12.norm1",
|
| 1473 |
+
"visual.blocks.12.norm2",
|
| 1474 |
+
"visual.blocks.13.attn.k_norm",
|
| 1475 |
+
"visual.blocks.13.attn.proj",
|
| 1476 |
+
"visual.blocks.13.attn.proj.bias",
|
| 1477 |
+
"visual.blocks.13.attn.q_norm",
|
| 1478 |
+
"visual.blocks.13.attn.qkv",
|
| 1479 |
+
"visual.blocks.13.attn.qkv.bias",
|
| 1480 |
+
"visual.blocks.13.mlp.down_proj",
|
| 1481 |
+
"visual.blocks.13.mlp.down_proj.bias",
|
| 1482 |
+
"visual.blocks.13.mlp.gate_proj",
|
| 1483 |
+
"visual.blocks.13.mlp.gate_proj.bias",
|
| 1484 |
+
"visual.blocks.13.mlp.up_proj",
|
| 1485 |
+
"visual.blocks.13.mlp.up_proj.bias",
|
| 1486 |
+
"visual.blocks.13.norm1",
|
| 1487 |
+
"visual.blocks.13.norm2",
|
| 1488 |
+
"visual.blocks.14.attn.k_norm",
|
| 1489 |
+
"visual.blocks.14.attn.proj",
|
| 1490 |
+
"visual.blocks.14.attn.proj.bias",
|
| 1491 |
+
"visual.blocks.14.attn.q_norm",
|
| 1492 |
+
"visual.blocks.14.attn.qkv",
|
| 1493 |
+
"visual.blocks.14.attn.qkv.bias",
|
| 1494 |
+
"visual.blocks.14.mlp.down_proj",
|
| 1495 |
+
"visual.blocks.14.mlp.down_proj.bias",
|
| 1496 |
+
"visual.blocks.14.mlp.gate_proj",
|
| 1497 |
+
"visual.blocks.14.mlp.gate_proj.bias",
|
| 1498 |
+
"visual.blocks.14.mlp.up_proj",
|
| 1499 |
+
"visual.blocks.14.mlp.up_proj.bias",
|
| 1500 |
+
"visual.blocks.14.norm1",
|
| 1501 |
+
"visual.blocks.14.norm2",
|
| 1502 |
+
"visual.blocks.15.attn.k_norm",
|
| 1503 |
+
"visual.blocks.15.attn.proj",
|
| 1504 |
+
"visual.blocks.15.attn.proj.bias",
|
| 1505 |
+
"visual.blocks.15.attn.q_norm",
|
| 1506 |
+
"visual.blocks.15.attn.qkv",
|
| 1507 |
+
"visual.blocks.15.attn.qkv.bias",
|
| 1508 |
+
"visual.blocks.15.mlp.down_proj",
|
| 1509 |
+
"visual.blocks.15.mlp.down_proj.bias",
|
| 1510 |
+
"visual.blocks.15.mlp.gate_proj",
|
| 1511 |
+
"visual.blocks.15.mlp.gate_proj.bias",
|
| 1512 |
+
"visual.blocks.15.mlp.up_proj",
|
| 1513 |
+
"visual.blocks.15.mlp.up_proj.bias",
|
| 1514 |
+
"visual.blocks.15.norm1",
|
| 1515 |
+
"visual.blocks.15.norm2",
|
| 1516 |
+
"visual.blocks.16.attn.k_norm",
|
| 1517 |
+
"visual.blocks.16.attn.proj",
|
| 1518 |
+
"visual.blocks.16.attn.proj.bias",
|
| 1519 |
+
"visual.blocks.16.attn.q_norm",
|
| 1520 |
+
"visual.blocks.16.attn.qkv",
|
| 1521 |
+
"visual.blocks.16.attn.qkv.bias",
|
| 1522 |
+
"visual.blocks.16.mlp.down_proj",
|
| 1523 |
+
"visual.blocks.16.mlp.down_proj.bias",
|
| 1524 |
+
"visual.blocks.16.mlp.gate_proj",
|
| 1525 |
+
"visual.blocks.16.mlp.gate_proj.bias",
|
| 1526 |
+
"visual.blocks.16.mlp.up_proj",
|
| 1527 |
+
"visual.blocks.16.mlp.up_proj.bias",
|
| 1528 |
+
"visual.blocks.16.norm1",
|
| 1529 |
+
"visual.blocks.16.norm2",
|
| 1530 |
+
"visual.blocks.17.attn.k_norm",
|
| 1531 |
+
"visual.blocks.17.attn.proj",
|
| 1532 |
+
"visual.blocks.17.attn.proj.bias",
|
| 1533 |
+
"visual.blocks.17.attn.q_norm",
|
| 1534 |
+
"visual.blocks.17.attn.qkv",
|
| 1535 |
+
"visual.blocks.17.attn.qkv.bias",
|
| 1536 |
+
"visual.blocks.17.mlp.down_proj",
|
| 1537 |
+
"visual.blocks.17.mlp.down_proj.bias",
|
| 1538 |
+
"visual.blocks.17.mlp.gate_proj",
|
| 1539 |
+
"visual.blocks.17.mlp.gate_proj.bias",
|
| 1540 |
+
"visual.blocks.17.mlp.up_proj",
|
| 1541 |
+
"visual.blocks.17.mlp.up_proj.bias",
|
| 1542 |
+
"visual.blocks.17.norm1",
|
| 1543 |
+
"visual.blocks.17.norm2",
|
| 1544 |
+
"visual.blocks.18.attn.k_norm",
|
| 1545 |
+
"visual.blocks.18.attn.proj",
|
| 1546 |
+
"visual.blocks.18.attn.proj.bias",
|
| 1547 |
+
"visual.blocks.18.attn.q_norm",
|
| 1548 |
+
"visual.blocks.18.attn.qkv",
|
| 1549 |
+
"visual.blocks.18.attn.qkv.bias",
|
| 1550 |
+
"visual.blocks.18.mlp.down_proj",
|
| 1551 |
+
"visual.blocks.18.mlp.down_proj.bias",
|
| 1552 |
+
"visual.blocks.18.mlp.gate_proj",
|
| 1553 |
+
"visual.blocks.18.mlp.gate_proj.bias",
|
| 1554 |
+
"visual.blocks.18.mlp.up_proj",
|
| 1555 |
+
"visual.blocks.18.mlp.up_proj.bias",
|
| 1556 |
+
"visual.blocks.18.norm1",
|
| 1557 |
+
"visual.blocks.18.norm2",
|
| 1558 |
+
"visual.blocks.19.attn.k_norm",
|
| 1559 |
+
"visual.blocks.19.attn.proj",
|
| 1560 |
+
"visual.blocks.19.attn.proj.bias",
|
| 1561 |
+
"visual.blocks.19.attn.q_norm",
|
| 1562 |
+
"visual.blocks.19.attn.qkv",
|
| 1563 |
+
"visual.blocks.19.attn.qkv.bias",
|
| 1564 |
+
"visual.blocks.19.mlp.down_proj",
|
| 1565 |
+
"visual.blocks.19.mlp.down_proj.bias",
|
| 1566 |
+
"visual.blocks.19.mlp.gate_proj",
|
| 1567 |
+
"visual.blocks.19.mlp.gate_proj.bias",
|
| 1568 |
+
"visual.blocks.19.mlp.up_proj",
|
| 1569 |
+
"visual.blocks.19.mlp.up_proj.bias",
|
| 1570 |
+
"visual.blocks.19.norm1",
|
| 1571 |
+
"visual.blocks.19.norm2",
|
| 1572 |
+
"visual.blocks.2.attn.k_norm",
|
| 1573 |
+
"visual.blocks.2.attn.proj",
|
| 1574 |
+
"visual.blocks.2.attn.proj.bias",
|
| 1575 |
+
"visual.blocks.2.attn.q_norm",
|
| 1576 |
+
"visual.blocks.2.attn.qkv",
|
| 1577 |
+
"visual.blocks.2.attn.qkv.bias",
|
| 1578 |
+
"visual.blocks.2.mlp.down_proj",
|
| 1579 |
+
"visual.blocks.2.mlp.down_proj.bias",
|
| 1580 |
+
"visual.blocks.2.mlp.gate_proj",
|
| 1581 |
+
"visual.blocks.2.mlp.gate_proj.bias",
|
| 1582 |
+
"visual.blocks.2.mlp.up_proj",
|
| 1583 |
+
"visual.blocks.2.mlp.up_proj.bias",
|
| 1584 |
+
"visual.blocks.2.norm1",
|
| 1585 |
+
"visual.blocks.2.norm2",
|
| 1586 |
+
"visual.blocks.20.attn.k_norm",
|
| 1587 |
+
"visual.blocks.20.attn.proj",
|
| 1588 |
+
"visual.blocks.20.attn.proj.bias",
|
| 1589 |
+
"visual.blocks.20.attn.q_norm",
|
| 1590 |
+
"visual.blocks.20.attn.qkv",
|
| 1591 |
+
"visual.blocks.20.attn.qkv.bias",
|
| 1592 |
+
"visual.blocks.20.mlp.down_proj",
|
| 1593 |
+
"visual.blocks.20.mlp.down_proj.bias",
|
| 1594 |
+
"visual.blocks.20.mlp.gate_proj",
|
| 1595 |
+
"visual.blocks.20.mlp.gate_proj.bias",
|
| 1596 |
+
"visual.blocks.20.mlp.up_proj",
|
| 1597 |
+
"visual.blocks.20.mlp.up_proj.bias",
|
| 1598 |
+
"visual.blocks.20.norm1",
|
| 1599 |
+
"visual.blocks.20.norm2",
|
| 1600 |
+
"visual.blocks.21.attn.k_norm",
|
| 1601 |
+
"visual.blocks.21.attn.proj",
|
| 1602 |
+
"visual.blocks.21.attn.proj.bias",
|
| 1603 |
+
"visual.blocks.21.attn.q_norm",
|
| 1604 |
+
"visual.blocks.21.attn.qkv",
|
| 1605 |
+
"visual.blocks.21.attn.qkv.bias",
|
| 1606 |
+
"visual.blocks.21.mlp.down_proj",
|
| 1607 |
+
"visual.blocks.21.mlp.down_proj.bias",
|
| 1608 |
+
"visual.blocks.21.mlp.gate_proj",
|
| 1609 |
+
"visual.blocks.21.mlp.gate_proj.bias",
|
| 1610 |
+
"visual.blocks.21.mlp.up_proj",
|
| 1611 |
+
"visual.blocks.21.mlp.up_proj.bias",
|
| 1612 |
+
"visual.blocks.21.norm1",
|
| 1613 |
+
"visual.blocks.21.norm2",
|
| 1614 |
+
"visual.blocks.22.attn.k_norm",
|
| 1615 |
+
"visual.blocks.22.attn.proj",
|
| 1616 |
+
"visual.blocks.22.attn.proj.bias",
|
| 1617 |
+
"visual.blocks.22.attn.q_norm",
|
| 1618 |
+
"visual.blocks.22.attn.qkv",
|
| 1619 |
+
"visual.blocks.22.attn.qkv.bias",
|
| 1620 |
+
"visual.blocks.22.mlp.down_proj",
|
| 1621 |
+
"visual.blocks.22.mlp.down_proj.bias",
|
| 1622 |
+
"visual.blocks.22.mlp.gate_proj",
|
| 1623 |
+
"visual.blocks.22.mlp.gate_proj.bias",
|
| 1624 |
+
"visual.blocks.22.mlp.up_proj",
|
| 1625 |
+
"visual.blocks.22.mlp.up_proj.bias",
|
| 1626 |
+
"visual.blocks.22.norm1",
|
| 1627 |
+
"visual.blocks.22.norm2",
|
| 1628 |
+
"visual.blocks.23.attn.k_norm",
|
| 1629 |
+
"visual.blocks.23.attn.proj",
|
| 1630 |
+
"visual.blocks.23.attn.proj.bias",
|
| 1631 |
+
"visual.blocks.23.attn.q_norm",
|
| 1632 |
+
"visual.blocks.23.attn.qkv",
|
| 1633 |
+
"visual.blocks.23.attn.qkv.bias",
|
| 1634 |
+
"visual.blocks.23.mlp.down_proj",
|
| 1635 |
+
"visual.blocks.23.mlp.down_proj.bias",
|
| 1636 |
+
"visual.blocks.23.mlp.gate_proj",
|
| 1637 |
+
"visual.blocks.23.mlp.gate_proj.bias",
|
| 1638 |
+
"visual.blocks.23.mlp.up_proj",
|
| 1639 |
+
"visual.blocks.23.mlp.up_proj.bias",
|
| 1640 |
+
"visual.blocks.23.norm1",
|
| 1641 |
+
"visual.blocks.23.norm2",
|
| 1642 |
+
"visual.blocks.3.attn.k_norm",
|
| 1643 |
+
"visual.blocks.3.attn.proj",
|
| 1644 |
+
"visual.blocks.3.attn.proj.bias",
|
| 1645 |
+
"visual.blocks.3.attn.q_norm",
|
| 1646 |
+
"visual.blocks.3.attn.qkv",
|
| 1647 |
+
"visual.blocks.3.attn.qkv.bias",
|
| 1648 |
+
"visual.blocks.3.mlp.down_proj",
|
| 1649 |
+
"visual.blocks.3.mlp.down_proj.bias",
|
| 1650 |
+
"visual.blocks.3.mlp.gate_proj",
|
| 1651 |
+
"visual.blocks.3.mlp.gate_proj.bias",
|
| 1652 |
+
"visual.blocks.3.mlp.up_proj",
|
| 1653 |
+
"visual.blocks.3.mlp.up_proj.bias",
|
| 1654 |
+
"visual.blocks.3.norm1",
|
| 1655 |
+
"visual.blocks.3.norm2",
|
| 1656 |
+
"visual.blocks.4.attn.k_norm",
|
| 1657 |
+
"visual.blocks.4.attn.proj",
|
| 1658 |
+
"visual.blocks.4.attn.proj.bias",
|
| 1659 |
+
"visual.blocks.4.attn.q_norm",
|
| 1660 |
+
"visual.blocks.4.attn.qkv",
|
| 1661 |
+
"visual.blocks.4.attn.qkv.bias",
|
| 1662 |
+
"visual.blocks.4.mlp.down_proj",
|
| 1663 |
+
"visual.blocks.4.mlp.down_proj.bias",
|
| 1664 |
+
"visual.blocks.4.mlp.gate_proj",
|
| 1665 |
+
"visual.blocks.4.mlp.gate_proj.bias",
|
| 1666 |
+
"visual.blocks.4.mlp.up_proj",
|
| 1667 |
+
"visual.blocks.4.mlp.up_proj.bias",
|
| 1668 |
+
"visual.blocks.4.norm1",
|
| 1669 |
+
"visual.blocks.4.norm2",
|
| 1670 |
+
"visual.blocks.5.attn.k_norm",
|
| 1671 |
+
"visual.blocks.5.attn.proj",
|
| 1672 |
+
"visual.blocks.5.attn.proj.bias",
|
| 1673 |
+
"visual.blocks.5.attn.q_norm",
|
| 1674 |
+
"visual.blocks.5.attn.qkv",
|
| 1675 |
+
"visual.blocks.5.attn.qkv.bias",
|
| 1676 |
+
"visual.blocks.5.mlp.down_proj",
|
| 1677 |
+
"visual.blocks.5.mlp.down_proj.bias",
|
| 1678 |
+
"visual.blocks.5.mlp.gate_proj",
|
| 1679 |
+
"visual.blocks.5.mlp.gate_proj.bias",
|
| 1680 |
+
"visual.blocks.5.mlp.up_proj",
|
| 1681 |
+
"visual.blocks.5.mlp.up_proj.bias",
|
| 1682 |
+
"visual.blocks.5.norm1",
|
| 1683 |
+
"visual.blocks.5.norm2",
|
| 1684 |
+
"visual.blocks.6.attn.k_norm",
|
| 1685 |
+
"visual.blocks.6.attn.proj",
|
| 1686 |
+
"visual.blocks.6.attn.proj.bias",
|
| 1687 |
+
"visual.blocks.6.attn.q_norm",
|
| 1688 |
+
"visual.blocks.6.attn.qkv",
|
| 1689 |
+
"visual.blocks.6.attn.qkv.bias",
|
| 1690 |
+
"visual.blocks.6.mlp.down_proj",
|
| 1691 |
+
"visual.blocks.6.mlp.down_proj.bias",
|
| 1692 |
+
"visual.blocks.6.mlp.gate_proj",
|
| 1693 |
+
"visual.blocks.6.mlp.gate_proj.bias",
|
| 1694 |
+
"visual.blocks.6.mlp.up_proj",
|
| 1695 |
+
"visual.blocks.6.mlp.up_proj.bias",
|
| 1696 |
+
"visual.blocks.6.norm1",
|
| 1697 |
+
"visual.blocks.6.norm2",
|
| 1698 |
+
"visual.blocks.7.attn.k_norm",
|
| 1699 |
+
"visual.blocks.7.attn.proj",
|
| 1700 |
+
"visual.blocks.7.attn.proj.bias",
|
| 1701 |
+
"visual.blocks.7.attn.q_norm",
|
| 1702 |
+
"visual.blocks.7.attn.qkv",
|
| 1703 |
+
"visual.blocks.7.attn.qkv.bias",
|
| 1704 |
+
"visual.blocks.7.mlp.down_proj",
|
| 1705 |
+
"visual.blocks.7.mlp.down_proj.bias",
|
| 1706 |
+
"visual.blocks.7.mlp.gate_proj",
|
| 1707 |
+
"visual.blocks.7.mlp.gate_proj.bias",
|
| 1708 |
+
"visual.blocks.7.mlp.up_proj",
|
| 1709 |
+
"visual.blocks.7.mlp.up_proj.bias",
|
| 1710 |
+
"visual.blocks.7.norm1",
|
| 1711 |
+
"visual.blocks.7.norm2",
|
| 1712 |
+
"visual.blocks.8.attn.k_norm",
|
| 1713 |
+
"visual.blocks.8.attn.proj",
|
| 1714 |
+
"visual.blocks.8.attn.proj.bias",
|
| 1715 |
+
"visual.blocks.8.attn.q_norm",
|
| 1716 |
+
"visual.blocks.8.attn.qkv",
|
| 1717 |
+
"visual.blocks.8.attn.qkv.bias",
|
| 1718 |
+
"visual.blocks.8.mlp.down_proj",
|
| 1719 |
+
"visual.blocks.8.mlp.down_proj.bias",
|
| 1720 |
+
"visual.blocks.8.mlp.gate_proj",
|
| 1721 |
+
"visual.blocks.8.mlp.gate_proj.bias",
|
| 1722 |
+
"visual.blocks.8.mlp.up_proj",
|
| 1723 |
+
"visual.blocks.8.mlp.up_proj.bias",
|
| 1724 |
+
"visual.blocks.8.norm1",
|
| 1725 |
+
"visual.blocks.8.norm2",
|
| 1726 |
+
"visual.blocks.9.attn.k_norm",
|
| 1727 |
+
"visual.blocks.9.attn.proj",
|
| 1728 |
+
"visual.blocks.9.attn.proj.bias",
|
| 1729 |
+
"visual.blocks.9.attn.q_norm",
|
| 1730 |
+
"visual.blocks.9.attn.qkv",
|
| 1731 |
+
"visual.blocks.9.attn.qkv.bias",
|
| 1732 |
+
"visual.blocks.9.mlp.down_proj",
|
| 1733 |
+
"visual.blocks.9.mlp.down_proj.bias",
|
| 1734 |
+
"visual.blocks.9.mlp.gate_proj",
|
| 1735 |
+
"visual.blocks.9.mlp.gate_proj.bias",
|
| 1736 |
+
"visual.blocks.9.mlp.up_proj",
|
| 1737 |
+
"visual.blocks.9.mlp.up_proj.bias",
|
| 1738 |
+
"visual.blocks.9.norm1",
|
| 1739 |
+
"visual.blocks.9.norm2",
|
| 1740 |
+
"visual.downsample",
|
| 1741 |
+
"visual.downsample.bias",
|
| 1742 |
+
"visual.merger.down_proj",
|
| 1743 |
+
"visual.merger.gate_proj",
|
| 1744 |
+
"visual.merger.post_projection_norm",
|
| 1745 |
+
"visual.merger.post_projection_norm.bias",
|
| 1746 |
+
"visual.merger.proj",
|
| 1747 |
+
"visual.merger.up_proj",
|
| 1748 |
+
"visual.patch_embed.proj",
|
| 1749 |
+
"visual.patch_embed.proj.bias",
|
| 1750 |
+
"visual.post_layernorm",
|
| 1751 |
+
"weights_proj"
|
| 1752 |
+
],
|
| 1753 |
+
"quant_method": "fp8",
|
| 1754 |
+
"weight_block_size": [
|
| 1755 |
+
128,
|
| 1756 |
+
128
|
| 1757 |
+
]
|
| 1758 |
+
}
|
| 1759 |
+
}
|
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.16.0"
|
| 12 |
+
}
|
model-00001-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd5202d28efdd01b47557c3f59111de3b4c4c375b2709c167b9b61834663c7da
|
| 3 |
+
size 5365306688
|
model-00002-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d05313aa3d972efc49076d3b7fc4ed3e827cd5648fce6fd83e8e6e4caed68a1b
|
| 3 |
+
size 5320647024
|
model-00003-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9806d89bb028a51393414a5817d104ca811def3459fcff82dc37616adcdafe2
|
| 3 |
+
size 5363448800
|
model-00004-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faaeaf32f8b9219a3a13437bf3b5436928d39d619a82c9c375c21f995c1607c0
|
| 3 |
+
size 5364323736
|
model-00005-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2124352d6cb564db9144310fff9df6ca73c7d848514ce54d0ce627bc92d4b8f
|
| 3 |
+
size 5363896872
|
model-00007-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00b63fd168956e79228899d1a0663f045f13e6d6466c01ef93cc067aad7803da
|
| 3 |
+
size 5364323968
|
model-00011-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:242bbff05b5a53bfdc7da92b7436880c77092857f11543269421fafdd444eca8
|
| 3 |
+
size 5363896864
|
model-00012-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:316f1bf351e031670148d5a6c76a9d713e857922af0927c50cf1eb9463c2c61a
|
| 3 |
+
size 5364323728
|
model-00013-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:133d516e76e8ee376ecc5feb660aec14d8f91312ec6fad9810ae67eb4dfc20a6
|
| 3 |
+
size 5361790232
|
model-00014-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62fa9359327c0b03fa705a5d17eb143d90e8ad47a043a73747fc398e9a80557c
|
| 3 |
+
size 5364323944
|
model-00015-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e215b3bc726568ae58995b6ea67fe59755429fc41488cdc67f3ba8ed9741a72
|
| 3 |
+
size 5364323752
|
model-00016-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecb9d09b3c6543fa0f254eb5ebaba1ab0ddd8e619776143fa3c26a26f001d33b
|
| 3 |
+
size 5361790008
|
model-00018-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46b355cfa369273c2c72bd278824229f43ecafea4f2683407a38422fef0e6756
|
| 3 |
+
size 5364323752
|
model-00019-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:166136426415d44d261bc156e945fc076160d1b1243914f64b0d517c15ba93e4
|
| 3 |
+
size 5364323720
|
model-00020-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41d95a673adb5509457eecab92b0c5cff63bdd4885975db376447fbc310526de
|
| 3 |
+
size 5361790360
|
model-00024-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddc433f8c176bd0e4e57a02e29397f74b1d8c0605eb1f99484eb319f92cf5f81
|
| 3 |
+
size 5364324088
|
model-00025-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:820f5ad565d197e396ac349f2acb4a1a237a04dae356168878b67d7bbdd4b21b
|
| 3 |
+
size 5364323752
|
model-00026-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50f90814fcb944c548e2aed954f3aaab5c1aa3b3110cea6c2541970e8b291b63
|
| 3 |
+
size 5364323720
|
model-00028-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dac0ed26df64abb493892d91d5f58f5df9ef25bb43bfd3736d54d412a09f43ab
|
| 3 |
+
size 5363896928
|
model-00029-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0a2b78fc61d0d146344f07b72764ad6e684d1602b1c93f2fa828112db4615eb
|
| 3 |
+
size 5364323752
|
model-00030-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0171e9086595b3dec439c81ec2ace9ae612a607e7d4a2ea3fc757627df86b191
|
| 3 |
+
size 5361790128
|
model-00031-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93bf10b8136c75ef66418113eaa5612fb60fb727f6a64e2d222c156d23af0f77
|
| 3 |
+
size 5364322992
|
model-00033-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c6c9ce4effe8c885b61c77514add609a1b2cc49a0803622e91ef6b41f7f4af4
|
| 3 |
+
size 5364323720
|
model-00034-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6701298729e1386ceff54906eec9d7a7c259026e9f60c394bc4554f43bfc343
|
| 3 |
+
size 5361790384
|
model-00037-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0ef88d62d2085d7544d2d5bb62a0474001bdc01fce1f55678715db58c554335
|
| 3 |
+
size 5361790120
|
model-00039-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7adc8ecf50c72836709906c6a944cfa5c6be66656965433ff9277600e2f5deaa
|
| 3 |
+
size 5364323744
|
model-00040-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:755d5051e05378c1ada0c6e90989ea441374c8b34849cec0d4fc68d192d47a26
|
| 3 |
+
size 5363896864
|
model-00041-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbed6b02ead85715db37921efbfda5675812292efe8b8bc7fdd8c270f011d31f
|
| 3 |
+
size 5361790376
|
model-00042-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5c24d133ab750560f26b45a8a4cfd6cdcbeb884be65eeb0c7d24ee7dd068650
|
| 3 |
+
size 5364323808
|
model-00044-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75d3cf83aee176a5950b190da575f7ad940378dcfdfa548f43e90cada0756015
|
| 3 |
+
size 5361790144
|
model-00045-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:263eb0812a6060d3df92b1f33e759db7c1fe8fafd860ac651fe49a630d9c6b77
|
| 3 |
+
size 5364324040
|
model-00046-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd81dcf99e9d21d1e64f16d2f3e90a528e60b56cd5de718211b64ff0c9bdc0cf
|
| 3 |
+
size 5363896320
|
model-00047-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42c8f1ce85d34563d2ecc12f845849c93ac34baf06abd9776fdacca5adb30763
|
| 3 |
+
size 5364322520
|
model-00048-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e54c0e6693956d3fbb5bddfc71959f5af6acabc2190f36b7be8ec10986f13fd
|
| 3 |
+
size 5361790400
|
model-00050-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36795a572473cc635b06d1396c5bd3b1c1da3c64e107fdc4fd46388bc57eff0b
|
| 3 |
+
size 5364323752
|
model-00052-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a98508ca1e4e6bbe6c9ee9aa001228aa4764c584508f718efb6cedde56c299e
|
| 3 |
+
size 5364324016
|
model-00053-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8d745b452dccf4c1ce9ae3a670f57f65a6af025a273c67283f699b1b2876adc
|
| 3 |
+
size 5363896880
|
model-00055-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c5e7d04670d04a4d194efa501351f54269f631146aea14b61e16533b58a026c
|
| 3 |
+
size 5361789128
|
model-00056-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42603832501c72d636e99a8dd3483695a3e0c10d6d9a868cdb0c8cb7d512f2d0
|
| 3 |
+
size 5364322528
|
model-00057-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2108aab902056d04bd4e86bf31b74f04b80c838fb1ac7c27d81a28a45d1c9365
|
| 3 |
+
size 5364322496
|
model-00058-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2e2eab248369f5ba770d9b1074bdc76702f2468afc3c41ad931519265cfb192
|
| 3 |
+
size 5361788912
|
model-00061-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b040d1bf5e86c03d66ccadce514d7ac3c2e9058b8ba3514b9cba51ee4d1661dd
|
| 3 |
+
size 5303975096
|
model-00062-of-00062.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0342ac06063c2e949a165554f3d9cd5b7d39331654b8cd2a8810cb364463ee1c
|
| 3 |
+
size 1261584904
|
model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
processor_config.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor": {
|
| 3 |
+
"do_rescale": true,
|
| 4 |
+
"patch_expand_factor": 1,
|
| 5 |
+
"merge_size": 2,
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.48145466,
|
| 8 |
+
0.4578275,
|
| 9 |
+
0.40821073
|
| 10 |
+
],
|
| 11 |
+
"image_std": [
|
| 12 |
+
0.26862954,
|
| 13 |
+
0.26130258,
|
| 14 |
+
0.27577711
|
| 15 |
+
],
|
| 16 |
+
"temporal_patch_size": 2,
|
| 17 |
+
"patch_size": 14,
|
| 18 |
+
"min_image_tokens": 16,
|
| 19 |
+
"max_image_tokens": 8000,
|
| 20 |
+
"image_processor_type": "Glm5NextImageProcessor"
|
| 21 |
+
},
|
| 22 |
+
"video_processor": {
|
| 23 |
+
"do_rescale": true,
|
| 24 |
+
"video_processor_type": "Glm5NextVideoProcessor",
|
| 25 |
+
"patch_expand_factor": 1,
|
| 26 |
+
"merge_size": 2,
|
| 27 |
+
"image_mean": [
|
| 28 |
+
0.48145466,
|
| 29 |
+
0.4578275,
|
| 30 |
+
0.40821073
|
| 31 |
+
],
|
| 32 |
+
"image_std": [
|
| 33 |
+
0.26862954,
|
| 34 |
+
0.26130258,
|
| 35 |
+
0.27577711
|
| 36 |
+
],
|
| 37 |
+
"temporal_patch_size": 2,
|
| 38 |
+
"patch_size": 14,
|
| 39 |
+
"min_image_tokens": 16,
|
| 40 |
+
"max_image_tokens": 240000,
|
| 41 |
+
"fps": 2
|
| 42 |
+
},
|
| 43 |
+
"processor_class": "Glm5NextProcessor"
|
| 44 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19e773648cb4e65de8660ea6365e10acca112d42a854923df93db4a6f333a82d
|
| 3 |
+
size 20217442
|