ngxson HF Staff commited on
Commit
068d828
·
verified ·
1 Parent(s): 835de96

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
37
+ model-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # GLM-4.7-Flash-small-test
2
+
3
+ For testing only
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ <|system|>
4
+ # Tools
5
+
6
+ You may call one or more functions to assist with the user query.
7
+
8
+ You are provided with function signatures within <tools></tools> XML tags:
9
+ <tools>
10
+ {% for tool in tools %}
11
+ {{ tool | tojson(ensure_ascii=False) }}
12
+ {% endfor %}
13
+ </tools>
14
+
15
+ For each function call, output the function name and arguments within the following XML format:
16
+ <tool_call>{function-name}<arg_key>{arg-key-1}</arg_key><arg_value>{arg-value-1}</arg_value><arg_key>{arg-key-2}</arg_key><arg_value>{arg-value-2}</arg_value>...</tool_call>{%- endif -%}
17
+ {%- macro visible_text(content) -%}
18
+ {%- if content is string -%}
19
+ {{- content }}
20
+ {%- elif content is iterable and content is not mapping -%}
21
+ {%- for item in content -%}
22
+ {%- if item is mapping and item.type == 'text' -%}
23
+ {{- item.text }}
24
+ {%- elif item is string -%}
25
+ {{- item }}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {%- else -%}
29
+ {{- content }}
30
+ {%- endif -%}
31
+ {%- endmacro -%}
32
+ {%- set ns = namespace(last_user_index=-1) %}
33
+ {%- for m in messages %}
34
+ {%- if m.role == 'user' %}
35
+ {% set ns.last_user_index = loop.index0 -%}
36
+ {%- endif %}
37
+ {%- endfor %}
38
+ {% for m in messages %}
39
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
40
+ {%- elif m.role == 'assistant' -%}
41
+ <|assistant|>
42
+ {%- set reasoning_content = '' %}
43
+ {%- set content = visible_text(m.content) %}
44
+ {%- if m.reasoning_content is string %}
45
+ {%- set reasoning_content = m.reasoning_content %}
46
+ {%- else %}
47
+ {%- if '</think>' in content %}
48
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
49
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content -%}
53
+ {{ '<think>' + reasoning_content.strip() + '</think>'}}
54
+ {%- else -%}
55
+ {{ '</think>' }}
56
+ {%- endif -%}
57
+ {%- if content.strip() -%}
58
+ {{ content.strip() }}
59
+ {%- endif -%}
60
+ {% if m.tool_calls %}
61
+ {% for tc in m.tool_calls %}
62
+ {%- if tc.function %}
63
+ {%- set tc = tc.function %}
64
+ {%- endif %}
65
+ {{- '<tool_call>' + tc.name -}}
66
+ {% set _args = tc.arguments %}{% for k, v in _args.items() %}<arg_key>{{ k }}</arg_key><arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>{% endfor %}</tool_call>{% endfor %}
67
+ {% endif %}
68
+ {%- elif m.role == 'tool' -%}
69
+ {%- if m.content is string -%}
70
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
71
+ {{- '<|observation|>' }}
72
+ {%- endif %}
73
+ {{- '<tool_response>' }}
74
+ {{- m.content }}
75
+ {{- '</tool_response>' }}
76
+ {%- else -%}
77
+ <|observation|>{% for tr in m.content %}
78
+ <tool_response>{{ tr.output if tr.output is defined else tr }}</tool_response>{% endfor -%}
79
+ {% endif -%}
80
+ {%- elif m.role == 'system' -%}
81
+ <|system|>{{ visible_text(m.content) }}
82
+ {%- endif -%}
83
+ {%- endfor -%}
84
+ {%- if add_generation_prompt -%}
85
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
86
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4MoeLiteForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "pad_token_id": 154820,
8
+ "eos_token_id": [
9
+ 154820,
10
+ 154827,
11
+ 154829
12
+ ],
13
+ "hidden_act": "silu",
14
+ "hidden_size": 2048,
15
+ "intermediate_size": 10240,
16
+ "max_position_embeddings": 202752,
17
+ "model_type": "glm4_moe_lite",
18
+ "moe_intermediate_size": 1536,
19
+ "topk_method": "noaux_tc",
20
+ "norm_topk_prob": true,
21
+ "num_attention_heads": 20,
22
+ "n_group": 1,
23
+ "topk_group": 1,
24
+ "n_routed_experts": 2,
25
+ "n_shared_experts": 1,
26
+ "routed_scaling_factor": 1.8,
27
+ "num_experts_per_tok": 2,
28
+ "first_k_dense_replace": 1,
29
+ "num_hidden_layers": 47,
30
+ "num_key_value_heads": 20,
31
+ "num_nextn_predict_layers": 1,
32
+ "partial_rotary_factor": 1.0,
33
+ "rms_norm_eps": 1e-05,
34
+ "rope_scaling": null,
35
+ "rope_theta": 1000000,
36
+ "tie_word_embeddings": false,
37
+ "dtype": "bfloat16",
38
+ "transformers_version": "5.0.0rc0",
39
+ "q_lora_rank": 768,
40
+ "kv_lora_rank": 512,
41
+ "qk_nope_head_dim": 192,
42
+ "qk_rope_head_dim": 64,
43
+ "v_head_dim": 256,
44
+ "vocab_size": 154880
45
+ }
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "transformers_version": "5.0.0.dev0"
11
+ }
make.py ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import re
4
+ from pathlib import Path
5
+ from safetensors import safe_open
6
+ from safetensors.torch import save_file
7
+ import torch
8
+
9
+ def main():
10
+ src_dir = Path("../GLM-4.7-Flash")
11
+ dst_path = Path("model.safetensors")
12
+ num_experts_to_keep = 2
13
+
14
+ # Find all safetensors files
15
+ safetensor_files = sorted(src_dir.glob("*.safetensors"))
16
+ print(f"Found {len(safetensor_files)} safetensors files")
17
+
18
+ # Pattern to match expert weights
19
+ expert_pattern = re.compile(r"model\.layers\.(\d+)\.mlp\.experts\.(\d+)\..+")
20
+ gate_pattern = re.compile(r"model\.layers\.(\d+)\.mlp\.gate\.weight")
21
+ bias_pattern = re.compile(r"model\.layers\.(\d+)\.mlp\.gate\.e_score_correction_bias")
22
+
23
+ new_tensors = {}
24
+
25
+ for sf_path in safetensor_files:
26
+ print(f"Processing {sf_path.name}...")
27
+
28
+ with safe_open(sf_path, framework="pt", device="cpu") as f:
29
+ for key in f.keys():
30
+ tensor = f.get_tensor(key)
31
+
32
+ # Check if this is an expert weight
33
+ expert_match = expert_pattern.search(key)
34
+ if expert_match:
35
+ layer_idx = int(expert_match.group(1))
36
+ expert_idx = int(expert_match.group(2))
37
+
38
+ if expert_idx >= num_experts_to_keep:
39
+ print(f" Skipping {key} (expert {expert_idx} >= {num_experts_to_keep})")
40
+ continue
41
+
42
+ new_tensors[key] = tensor
43
+ continue
44
+
45
+ # Check if this is the gate weight
46
+ gate_match = gate_pattern.search(key)
47
+ if gate_match:
48
+ layer_idx = int(gate_match.group(1))
49
+ original_shape = tensor.shape
50
+ # Gate weight is [num_experts, hidden_size], keep first 8 experts
51
+ new_tensor = tensor[:num_experts_to_keep, :]
52
+ print(f" Resizing {key}: {original_shape} -> {new_tensor.shape}")
53
+ new_tensors[key] = new_tensor
54
+ continue
55
+
56
+ # Check if this is the e_score_correction_bias
57
+ bias_match = bias_pattern.search(key)
58
+ if bias_match:
59
+ layer_idx = int(bias_match.group(1))
60
+ original_shape = tensor.shape
61
+ # Bias is [num_experts], keep first 8
62
+ new_tensor = tensor[:num_experts_to_keep]
63
+ print(f" Resizing {key}: {original_shape} -> {new_tensor.shape}")
64
+ new_tensors[key] = new_tensor
65
+ continue
66
+
67
+ # Keep all other tensors as-is
68
+ new_tensors[key] = tensor
69
+
70
+ print(f"\nTotal tensors to save: {len(new_tensors)}")
71
+ print(f"Saving to {dst_path}...")
72
+
73
+ save_file(new_tensors, dst_path)
74
+ print("Done!")
75
+
76
+ # Also copy and modify config.json
77
+ config_src = src_dir / "config.json"
78
+ if config_src.exists():
79
+ with open(config_src, "r") as f:
80
+ config = json.load(f)
81
+
82
+ # Update number of experts
83
+ # if "num_experts" in config:
84
+ # print(f"Updating num_experts: {config['num_experts']} -> {num_experts_to_keep}")
85
+ # config["num_experts"] = num_experts_to_keep
86
+ # if "n_routed_experts" in config:
87
+ # print(f"Updating n_routed_experts: {config['n_routed_experts']} -> {num_experts_to_keep}")
88
+ # config["n_routed_experts"] = num_experts_to_keep
89
+
90
+ # config_dst = Path("config.json")
91
+ # with open(config_dst, "w") as f:
92
+ # json.dump(config, f, indent=2)
93
+ # print(f"Saved modified config to {config_dst}")
94
+
95
+ # Create safetensors index file
96
+ index_data = {
97
+ "metadata": {
98
+ "total_size": sum(t.numel() * t.element_size() for t in new_tensors.values())
99
+ },
100
+ "weight_map": {key: str(dst_path) for key in new_tensors.keys()}
101
+ }
102
+
103
+ index_dst = Path("model.safetensors.index.json")
104
+ with open(index_dst, "w") as f:
105
+ json.dump(index_data, f, indent=2)
106
+ print(f"Saved safetensors index to {index_dst}")
107
+
108
+ if __name__ == "__main__":
109
+ main()
model-Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5087e640fc8c9411aaeaf83e3f6dd13fe36d80a55b5444554799a3b70fe6b2a6
3
+ size 3222398304
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a0c02a05a0be2138810e34771a95148c633a41d2344694fdc940dc5b9bec86a
3
+ size 7431243408
model.safetensors.index.json ADDED
@@ -0,0 +1,968 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 7431127416
4
+ },
5
+ "weight_map": {
6
+ "model.embed_tokens.weight": "model.safetensors",
7
+ "model.layers.0.input_layernorm.weight": "model.safetensors",
8
+ "model.layers.0.mlp.down_proj.weight": "model.safetensors",
9
+ "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
10
+ "model.layers.0.mlp.up_proj.weight": "model.safetensors",
11
+ "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
12
+ "model.layers.0.self_attn.kv_a_layernorm.weight": "model.safetensors",
13
+ "model.layers.0.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
14
+ "model.layers.0.self_attn.kv_b_proj.weight": "model.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
16
+ "model.layers.0.self_attn.q_a_layernorm.weight": "model.safetensors",
17
+ "model.layers.0.self_attn.q_a_proj.weight": "model.safetensors",
18
+ "model.layers.0.self_attn.q_b_proj.weight": "model.safetensors",
19
+ "model.layers.47.embed_tokens.weight": "model.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model.safetensors",
21
+ "model.layers.1.mlp.experts.0.down_proj.weight": "model.safetensors",
22
+ "model.layers.1.mlp.experts.0.gate_proj.weight": "model.safetensors",
23
+ "model.layers.1.mlp.experts.0.up_proj.weight": "model.safetensors",
24
+ "model.layers.1.mlp.experts.1.down_proj.weight": "model.safetensors",
25
+ "model.layers.1.mlp.experts.1.gate_proj.weight": "model.safetensors",
26
+ "model.layers.1.mlp.experts.1.up_proj.weight": "model.safetensors",
27
+ "model.layers.1.mlp.gate.e_score_correction_bias": "model.safetensors",
28
+ "model.layers.1.mlp.gate.weight": "model.safetensors",
29
+ "model.layers.1.mlp.shared_experts.down_proj.weight": "model.safetensors",
30
+ "model.layers.1.mlp.shared_experts.gate_proj.weight": "model.safetensors",
31
+ "model.layers.1.mlp.shared_experts.up_proj.weight": "model.safetensors",
32
+ "model.layers.1.post_attention_layernorm.weight": "model.safetensors",
33
+ "model.layers.1.self_attn.kv_a_layernorm.weight": "model.safetensors",
34
+ "model.layers.1.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
35
+ "model.layers.1.self_attn.kv_b_proj.weight": "model.safetensors",
36
+ "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
37
+ "model.layers.1.self_attn.q_a_layernorm.weight": "model.safetensors",
38
+ "model.layers.1.self_attn.q_a_proj.weight": "model.safetensors",
39
+ "model.layers.1.self_attn.q_b_proj.weight": "model.safetensors",
40
+ "model.layers.2.input_layernorm.weight": "model.safetensors",
41
+ "model.layers.2.mlp.experts.0.down_proj.weight": "model.safetensors",
42
+ "model.layers.2.mlp.experts.0.gate_proj.weight": "model.safetensors",
43
+ "model.layers.2.mlp.experts.0.up_proj.weight": "model.safetensors",
44
+ "model.layers.2.mlp.experts.1.down_proj.weight": "model.safetensors",
45
+ "model.layers.2.mlp.experts.1.gate_proj.weight": "model.safetensors",
46
+ "model.layers.2.mlp.experts.1.up_proj.weight": "model.safetensors",
47
+ "model.layers.2.mlp.gate.e_score_correction_bias": "model.safetensors",
48
+ "model.layers.2.mlp.gate.weight": "model.safetensors",
49
+ "model.layers.2.mlp.shared_experts.down_proj.weight": "model.safetensors",
50
+ "model.layers.2.mlp.shared_experts.gate_proj.weight": "model.safetensors",
51
+ "model.layers.2.mlp.shared_experts.up_proj.weight": "model.safetensors",
52
+ "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
53
+ "model.layers.2.self_attn.kv_a_layernorm.weight": "model.safetensors",
54
+ "model.layers.2.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
55
+ "model.layers.2.self_attn.kv_b_proj.weight": "model.safetensors",
56
+ "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
57
+ "model.layers.2.self_attn.q_a_layernorm.weight": "model.safetensors",
58
+ "model.layers.2.self_attn.q_a_proj.weight": "model.safetensors",
59
+ "model.layers.2.self_attn.q_b_proj.weight": "model.safetensors",
60
+ "model.layers.3.input_layernorm.weight": "model.safetensors",
61
+ "model.layers.3.mlp.experts.0.down_proj.weight": "model.safetensors",
62
+ "model.layers.3.mlp.experts.0.gate_proj.weight": "model.safetensors",
63
+ "model.layers.3.mlp.experts.0.up_proj.weight": "model.safetensors",
64
+ "model.layers.3.mlp.experts.1.down_proj.weight": "model.safetensors",
65
+ "model.layers.3.mlp.experts.1.gate_proj.weight": "model.safetensors",
66
+ "model.layers.3.mlp.experts.1.up_proj.weight": "model.safetensors",
67
+ "model.layers.3.mlp.gate.e_score_correction_bias": "model.safetensors",
68
+ "model.layers.3.mlp.gate.weight": "model.safetensors",
69
+ "model.layers.3.mlp.shared_experts.down_proj.weight": "model.safetensors",
70
+ "model.layers.3.mlp.shared_experts.gate_proj.weight": "model.safetensors",
71
+ "model.layers.3.mlp.shared_experts.up_proj.weight": "model.safetensors",
72
+ "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
73
+ "model.layers.3.self_attn.kv_a_layernorm.weight": "model.safetensors",
74
+ "model.layers.3.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
75
+ "model.layers.3.self_attn.kv_b_proj.weight": "model.safetensors",
76
+ "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
77
+ "model.layers.3.self_attn.q_a_layernorm.weight": "model.safetensors",
78
+ "model.layers.3.self_attn.q_a_proj.weight": "model.safetensors",
79
+ "model.layers.3.self_attn.q_b_proj.weight": "model.safetensors",
80
+ "model.layers.4.input_layernorm.weight": "model.safetensors",
81
+ "model.layers.4.mlp.experts.0.down_proj.weight": "model.safetensors",
82
+ "model.layers.4.mlp.experts.0.gate_proj.weight": "model.safetensors",
83
+ "model.layers.4.mlp.experts.0.up_proj.weight": "model.safetensors",
84
+ "model.layers.4.mlp.experts.1.down_proj.weight": "model.safetensors",
85
+ "model.layers.4.mlp.experts.1.gate_proj.weight": "model.safetensors",
86
+ "model.layers.4.mlp.experts.1.up_proj.weight": "model.safetensors",
87
+ "model.layers.4.mlp.gate.e_score_correction_bias": "model.safetensors",
88
+ "model.layers.4.mlp.gate.weight": "model.safetensors",
89
+ "model.layers.4.mlp.shared_experts.down_proj.weight": "model.safetensors",
90
+ "model.layers.4.mlp.shared_experts.gate_proj.weight": "model.safetensors",
91
+ "model.layers.4.mlp.shared_experts.up_proj.weight": "model.safetensors",
92
+ "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
93
+ "model.layers.4.self_attn.kv_a_layernorm.weight": "model.safetensors",
94
+ "model.layers.4.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
95
+ "model.layers.4.self_attn.kv_b_proj.weight": "model.safetensors",
96
+ "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
97
+ "model.layers.4.self_attn.q_a_layernorm.weight": "model.safetensors",
98
+ "model.layers.4.self_attn.q_a_proj.weight": "model.safetensors",
99
+ "model.layers.4.self_attn.q_b_proj.weight": "model.safetensors",
100
+ "model.layers.5.input_layernorm.weight": "model.safetensors",
101
+ "model.layers.5.mlp.experts.0.down_proj.weight": "model.safetensors",
102
+ "model.layers.5.mlp.experts.0.gate_proj.weight": "model.safetensors",
103
+ "model.layers.5.mlp.experts.0.up_proj.weight": "model.safetensors",
104
+ "model.layers.5.mlp.experts.1.down_proj.weight": "model.safetensors",
105
+ "model.layers.5.mlp.experts.1.gate_proj.weight": "model.safetensors",
106
+ "model.layers.5.mlp.experts.1.up_proj.weight": "model.safetensors",
107
+ "model.layers.5.mlp.gate.e_score_correction_bias": "model.safetensors",
108
+ "model.layers.5.mlp.gate.weight": "model.safetensors",
109
+ "model.layers.5.mlp.shared_experts.down_proj.weight": "model.safetensors",
110
+ "model.layers.5.mlp.shared_experts.gate_proj.weight": "model.safetensors",
111
+ "model.layers.5.mlp.shared_experts.up_proj.weight": "model.safetensors",
112
+ "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
113
+ "model.layers.5.self_attn.kv_a_layernorm.weight": "model.safetensors",
114
+ "model.layers.5.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
115
+ "model.layers.5.self_attn.kv_b_proj.weight": "model.safetensors",
116
+ "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
117
+ "model.layers.5.self_attn.q_a_layernorm.weight": "model.safetensors",
118
+ "model.layers.5.self_attn.q_a_proj.weight": "model.safetensors",
119
+ "model.layers.5.self_attn.q_b_proj.weight": "model.safetensors",
120
+ "model.layers.6.input_layernorm.weight": "model.safetensors",
121
+ "model.layers.6.mlp.experts.0.down_proj.weight": "model.safetensors",
122
+ "model.layers.6.mlp.experts.0.gate_proj.weight": "model.safetensors",
123
+ "model.layers.6.mlp.experts.0.up_proj.weight": "model.safetensors",
124
+ "model.layers.6.mlp.experts.1.down_proj.weight": "model.safetensors",
125
+ "model.layers.6.mlp.experts.1.gate_proj.weight": "model.safetensors",
126
+ "model.layers.6.mlp.experts.1.up_proj.weight": "model.safetensors",
127
+ "model.layers.6.mlp.gate.e_score_correction_bias": "model.safetensors",
128
+ "model.layers.6.mlp.gate.weight": "model.safetensors",
129
+ "model.layers.6.mlp.shared_experts.down_proj.weight": "model.safetensors",
130
+ "model.layers.6.mlp.shared_experts.gate_proj.weight": "model.safetensors",
131
+ "model.layers.6.mlp.shared_experts.up_proj.weight": "model.safetensors",
132
+ "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
133
+ "model.layers.6.self_attn.kv_a_layernorm.weight": "model.safetensors",
134
+ "model.layers.6.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
135
+ "model.layers.6.self_attn.kv_b_proj.weight": "model.safetensors",
136
+ "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
137
+ "model.layers.6.self_attn.q_a_layernorm.weight": "model.safetensors",
138
+ "model.layers.6.self_attn.q_a_proj.weight": "model.safetensors",
139
+ "model.layers.6.self_attn.q_b_proj.weight": "model.safetensors",
140
+ "model.layers.7.input_layernorm.weight": "model.safetensors",
141
+ "model.layers.7.mlp.experts.0.down_proj.weight": "model.safetensors",
142
+ "model.layers.7.mlp.experts.0.gate_proj.weight": "model.safetensors",
143
+ "model.layers.7.mlp.experts.0.up_proj.weight": "model.safetensors",
144
+ "model.layers.7.mlp.experts.1.down_proj.weight": "model.safetensors",
145
+ "model.layers.7.mlp.experts.1.gate_proj.weight": "model.safetensors",
146
+ "model.layers.7.mlp.experts.1.up_proj.weight": "model.safetensors",
147
+ "model.layers.7.mlp.gate.e_score_correction_bias": "model.safetensors",
148
+ "model.layers.7.mlp.gate.weight": "model.safetensors",
149
+ "model.layers.7.mlp.shared_experts.down_proj.weight": "model.safetensors",
150
+ "model.layers.7.mlp.shared_experts.gate_proj.weight": "model.safetensors",
151
+ "model.layers.7.mlp.shared_experts.up_proj.weight": "model.safetensors",
152
+ "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
153
+ "model.layers.7.self_attn.kv_a_layernorm.weight": "model.safetensors",
154
+ "model.layers.7.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
155
+ "model.layers.7.self_attn.kv_b_proj.weight": "model.safetensors",
156
+ "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
157
+ "model.layers.7.self_attn.q_a_layernorm.weight": "model.safetensors",
158
+ "model.layers.7.self_attn.q_a_proj.weight": "model.safetensors",
159
+ "model.layers.7.self_attn.q_b_proj.weight": "model.safetensors",
160
+ "model.layers.8.input_layernorm.weight": "model.safetensors",
161
+ "model.layers.8.mlp.experts.0.down_proj.weight": "model.safetensors",
162
+ "model.layers.8.mlp.experts.0.gate_proj.weight": "model.safetensors",
163
+ "model.layers.8.mlp.experts.0.up_proj.weight": "model.safetensors",
164
+ "model.layers.8.mlp.experts.1.down_proj.weight": "model.safetensors",
165
+ "model.layers.8.mlp.experts.1.gate_proj.weight": "model.safetensors",
166
+ "model.layers.8.mlp.experts.1.up_proj.weight": "model.safetensors",
167
+ "model.layers.8.mlp.gate.e_score_correction_bias": "model.safetensors",
168
+ "model.layers.8.mlp.gate.weight": "model.safetensors",
169
+ "model.layers.8.mlp.shared_experts.down_proj.weight": "model.safetensors",
170
+ "model.layers.8.mlp.shared_experts.gate_proj.weight": "model.safetensors",
171
+ "model.layers.8.mlp.shared_experts.up_proj.weight": "model.safetensors",
172
+ "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
173
+ "model.layers.8.self_attn.kv_a_layernorm.weight": "model.safetensors",
174
+ "model.layers.8.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
175
+ "model.layers.8.self_attn.kv_b_proj.weight": "model.safetensors",
176
+ "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
177
+ "model.layers.8.self_attn.q_a_layernorm.weight": "model.safetensors",
178
+ "model.layers.8.self_attn.q_a_proj.weight": "model.safetensors",
179
+ "model.layers.8.self_attn.q_b_proj.weight": "model.safetensors",
180
+ "model.layers.9.input_layernorm.weight": "model.safetensors",
181
+ "model.layers.9.mlp.experts.0.down_proj.weight": "model.safetensors",
182
+ "model.layers.9.mlp.experts.0.gate_proj.weight": "model.safetensors",
183
+ "model.layers.9.mlp.experts.0.up_proj.weight": "model.safetensors",
184
+ "model.layers.9.mlp.experts.1.down_proj.weight": "model.safetensors",
185
+ "model.layers.9.mlp.experts.1.gate_proj.weight": "model.safetensors",
186
+ "model.layers.9.mlp.experts.1.up_proj.weight": "model.safetensors",
187
+ "model.layers.9.mlp.gate.e_score_correction_bias": "model.safetensors",
188
+ "model.layers.9.mlp.gate.weight": "model.safetensors",
189
+ "model.layers.9.mlp.shared_experts.down_proj.weight": "model.safetensors",
190
+ "model.layers.9.mlp.shared_experts.gate_proj.weight": "model.safetensors",
191
+ "model.layers.9.mlp.shared_experts.up_proj.weight": "model.safetensors",
192
+ "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
193
+ "model.layers.9.self_attn.kv_a_layernorm.weight": "model.safetensors",
194
+ "model.layers.9.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
195
+ "model.layers.9.self_attn.kv_b_proj.weight": "model.safetensors",
196
+ "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
197
+ "model.layers.9.self_attn.q_a_layernorm.weight": "model.safetensors",
198
+ "model.layers.9.self_attn.q_a_proj.weight": "model.safetensors",
199
+ "model.layers.9.self_attn.q_b_proj.weight": "model.safetensors",
200
+ "model.layers.10.input_layernorm.weight": "model.safetensors",
201
+ "model.layers.10.mlp.experts.0.down_proj.weight": "model.safetensors",
202
+ "model.layers.10.mlp.experts.0.gate_proj.weight": "model.safetensors",
203
+ "model.layers.10.mlp.experts.0.up_proj.weight": "model.safetensors",
204
+ "model.layers.10.mlp.experts.1.down_proj.weight": "model.safetensors",
205
+ "model.layers.10.mlp.experts.1.gate_proj.weight": "model.safetensors",
206
+ "model.layers.10.mlp.experts.1.up_proj.weight": "model.safetensors",
207
+ "model.layers.10.mlp.gate.e_score_correction_bias": "model.safetensors",
208
+ "model.layers.10.mlp.gate.weight": "model.safetensors",
209
+ "model.layers.10.mlp.shared_experts.down_proj.weight": "model.safetensors",
210
+ "model.layers.10.mlp.shared_experts.gate_proj.weight": "model.safetensors",
211
+ "model.layers.10.mlp.shared_experts.up_proj.weight": "model.safetensors",
212
+ "model.layers.10.post_attention_layernorm.weight": "model.safetensors",
213
+ "model.layers.10.self_attn.kv_a_layernorm.weight": "model.safetensors",
214
+ "model.layers.10.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
215
+ "model.layers.10.self_attn.kv_b_proj.weight": "model.safetensors",
216
+ "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
217
+ "model.layers.10.self_attn.q_a_layernorm.weight": "model.safetensors",
218
+ "model.layers.10.self_attn.q_a_proj.weight": "model.safetensors",
219
+ "model.layers.10.self_attn.q_b_proj.weight": "model.safetensors",
220
+ "model.layers.11.input_layernorm.weight": "model.safetensors",
221
+ "model.layers.11.mlp.experts.0.down_proj.weight": "model.safetensors",
222
+ "model.layers.11.mlp.experts.0.gate_proj.weight": "model.safetensors",
223
+ "model.layers.11.mlp.experts.0.up_proj.weight": "model.safetensors",
224
+ "model.layers.11.mlp.experts.1.down_proj.weight": "model.safetensors",
225
+ "model.layers.11.mlp.experts.1.gate_proj.weight": "model.safetensors",
226
+ "model.layers.11.mlp.experts.1.up_proj.weight": "model.safetensors",
227
+ "model.layers.11.mlp.gate.e_score_correction_bias": "model.safetensors",
228
+ "model.layers.11.mlp.gate.weight": "model.safetensors",
229
+ "model.layers.11.mlp.shared_experts.down_proj.weight": "model.safetensors",
230
+ "model.layers.11.mlp.shared_experts.gate_proj.weight": "model.safetensors",
231
+ "model.layers.11.mlp.shared_experts.up_proj.weight": "model.safetensors",
232
+ "model.layers.11.post_attention_layernorm.weight": "model.safetensors",
233
+ "model.layers.11.self_attn.kv_a_layernorm.weight": "model.safetensors",
234
+ "model.layers.11.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
235
+ "model.layers.11.self_attn.kv_b_proj.weight": "model.safetensors",
236
+ "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
237
+ "model.layers.11.self_attn.q_a_layernorm.weight": "model.safetensors",
238
+ "model.layers.11.self_attn.q_a_proj.weight": "model.safetensors",
239
+ "model.layers.11.self_attn.q_b_proj.weight": "model.safetensors",
240
+ "model.layers.12.input_layernorm.weight": "model.safetensors",
241
+ "model.layers.12.mlp.experts.0.down_proj.weight": "model.safetensors",
242
+ "model.layers.12.mlp.experts.0.gate_proj.weight": "model.safetensors",
243
+ "model.layers.12.mlp.experts.0.up_proj.weight": "model.safetensors",
244
+ "model.layers.12.mlp.experts.1.down_proj.weight": "model.safetensors",
245
+ "model.layers.12.mlp.experts.1.gate_proj.weight": "model.safetensors",
246
+ "model.layers.12.mlp.experts.1.up_proj.weight": "model.safetensors",
247
+ "model.layers.12.mlp.gate.e_score_correction_bias": "model.safetensors",
248
+ "model.layers.12.mlp.gate.weight": "model.safetensors",
249
+ "model.layers.12.mlp.shared_experts.down_proj.weight": "model.safetensors",
250
+ "model.layers.12.mlp.shared_experts.gate_proj.weight": "model.safetensors",
251
+ "model.layers.12.mlp.shared_experts.up_proj.weight": "model.safetensors",
252
+ "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
253
+ "model.layers.12.self_attn.kv_a_layernorm.weight": "model.safetensors",
254
+ "model.layers.12.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
255
+ "model.layers.12.self_attn.kv_b_proj.weight": "model.safetensors",
256
+ "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
257
+ "model.layers.12.self_attn.q_a_layernorm.weight": "model.safetensors",
258
+ "model.layers.12.self_attn.q_a_proj.weight": "model.safetensors",
259
+ "model.layers.12.self_attn.q_b_proj.weight": "model.safetensors",
260
+ "model.layers.13.input_layernorm.weight": "model.safetensors",
261
+ "model.layers.13.mlp.experts.0.down_proj.weight": "model.safetensors",
262
+ "model.layers.13.mlp.experts.0.gate_proj.weight": "model.safetensors",
263
+ "model.layers.13.mlp.experts.0.up_proj.weight": "model.safetensors",
264
+ "model.layers.13.mlp.experts.1.down_proj.weight": "model.safetensors",
265
+ "model.layers.13.mlp.experts.1.gate_proj.weight": "model.safetensors",
266
+ "model.layers.13.mlp.experts.1.up_proj.weight": "model.safetensors",
267
+ "model.layers.13.mlp.gate.e_score_correction_bias": "model.safetensors",
268
+ "model.layers.13.mlp.gate.weight": "model.safetensors",
269
+ "model.layers.13.mlp.shared_experts.down_proj.weight": "model.safetensors",
270
+ "model.layers.13.mlp.shared_experts.gate_proj.weight": "model.safetensors",
271
+ "model.layers.13.mlp.shared_experts.up_proj.weight": "model.safetensors",
272
+ "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
273
+ "model.layers.13.self_attn.kv_a_layernorm.weight": "model.safetensors",
274
+ "model.layers.13.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
275
+ "model.layers.13.self_attn.kv_b_proj.weight": "model.safetensors",
276
+ "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
277
+ "model.layers.13.self_attn.q_a_layernorm.weight": "model.safetensors",
278
+ "model.layers.13.self_attn.q_a_proj.weight": "model.safetensors",
279
+ "model.layers.13.self_attn.q_b_proj.weight": "model.safetensors",
280
+ "model.layers.14.input_layernorm.weight": "model.safetensors",
281
+ "model.layers.14.mlp.experts.0.down_proj.weight": "model.safetensors",
282
+ "model.layers.14.mlp.experts.0.gate_proj.weight": "model.safetensors",
283
+ "model.layers.14.mlp.experts.0.up_proj.weight": "model.safetensors",
284
+ "model.layers.14.mlp.experts.1.down_proj.weight": "model.safetensors",
285
+ "model.layers.14.mlp.experts.1.gate_proj.weight": "model.safetensors",
286
+ "model.layers.14.mlp.experts.1.up_proj.weight": "model.safetensors",
287
+ "model.layers.14.mlp.gate.e_score_correction_bias": "model.safetensors",
288
+ "model.layers.14.mlp.gate.weight": "model.safetensors",
289
+ "model.layers.14.mlp.shared_experts.down_proj.weight": "model.safetensors",
290
+ "model.layers.14.mlp.shared_experts.gate_proj.weight": "model.safetensors",
291
+ "model.layers.14.mlp.shared_experts.up_proj.weight": "model.safetensors",
292
+ "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
293
+ "model.layers.14.self_attn.kv_a_layernorm.weight": "model.safetensors",
294
+ "model.layers.14.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
295
+ "model.layers.14.self_attn.kv_b_proj.weight": "model.safetensors",
296
+ "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
297
+ "model.layers.14.self_attn.q_a_layernorm.weight": "model.safetensors",
298
+ "model.layers.14.self_attn.q_a_proj.weight": "model.safetensors",
299
+ "model.layers.14.self_attn.q_b_proj.weight": "model.safetensors",
300
+ "model.layers.15.input_layernorm.weight": "model.safetensors",
301
+ "model.layers.15.mlp.experts.0.down_proj.weight": "model.safetensors",
302
+ "model.layers.15.mlp.experts.0.gate_proj.weight": "model.safetensors",
303
+ "model.layers.15.mlp.experts.0.up_proj.weight": "model.safetensors",
304
+ "model.layers.15.mlp.experts.1.down_proj.weight": "model.safetensors",
305
+ "model.layers.15.mlp.experts.1.gate_proj.weight": "model.safetensors",
306
+ "model.layers.15.mlp.experts.1.up_proj.weight": "model.safetensors",
307
+ "model.layers.15.mlp.gate.e_score_correction_bias": "model.safetensors",
308
+ "model.layers.15.mlp.gate.weight": "model.safetensors",
309
+ "model.layers.15.mlp.shared_experts.down_proj.weight": "model.safetensors",
310
+ "model.layers.15.mlp.shared_experts.gate_proj.weight": "model.safetensors",
311
+ "model.layers.15.mlp.shared_experts.up_proj.weight": "model.safetensors",
312
+ "model.layers.15.post_attention_layernorm.weight": "model.safetensors",
313
+ "model.layers.15.self_attn.kv_a_layernorm.weight": "model.safetensors",
314
+ "model.layers.15.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
315
+ "model.layers.15.self_attn.kv_b_proj.weight": "model.safetensors",
316
+ "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
317
+ "model.layers.15.self_attn.q_a_layernorm.weight": "model.safetensors",
318
+ "model.layers.15.self_attn.q_a_proj.weight": "model.safetensors",
319
+ "model.layers.15.self_attn.q_b_proj.weight": "model.safetensors",
320
+ "model.layers.16.input_layernorm.weight": "model.safetensors",
321
+ "model.layers.16.mlp.experts.0.down_proj.weight": "model.safetensors",
322
+ "model.layers.16.mlp.experts.0.gate_proj.weight": "model.safetensors",
323
+ "model.layers.16.mlp.experts.0.up_proj.weight": "model.safetensors",
324
+ "model.layers.16.mlp.experts.1.down_proj.weight": "model.safetensors",
325
+ "model.layers.16.mlp.experts.1.gate_proj.weight": "model.safetensors",
326
+ "model.layers.16.mlp.experts.1.up_proj.weight": "model.safetensors",
327
+ "model.layers.16.mlp.gate.e_score_correction_bias": "model.safetensors",
328
+ "model.layers.16.mlp.gate.weight": "model.safetensors",
329
+ "model.layers.16.mlp.shared_experts.down_proj.weight": "model.safetensors",
330
+ "model.layers.16.mlp.shared_experts.gate_proj.weight": "model.safetensors",
331
+ "model.layers.16.mlp.shared_experts.up_proj.weight": "model.safetensors",
332
+ "model.layers.16.post_attention_layernorm.weight": "model.safetensors",
333
+ "model.layers.16.self_attn.kv_a_layernorm.weight": "model.safetensors",
334
+ "model.layers.16.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
335
+ "model.layers.16.self_attn.kv_b_proj.weight": "model.safetensors",
336
+ "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
337
+ "model.layers.16.self_attn.q_a_layernorm.weight": "model.safetensors",
338
+ "model.layers.16.self_attn.q_a_proj.weight": "model.safetensors",
339
+ "model.layers.16.self_attn.q_b_proj.weight": "model.safetensors",
340
+ "model.layers.17.input_layernorm.weight": "model.safetensors",
341
+ "model.layers.17.mlp.experts.0.down_proj.weight": "model.safetensors",
342
+ "model.layers.17.mlp.experts.0.gate_proj.weight": "model.safetensors",
343
+ "model.layers.17.mlp.experts.0.up_proj.weight": "model.safetensors",
344
+ "model.layers.17.mlp.experts.1.down_proj.weight": "model.safetensors",
345
+ "model.layers.17.mlp.experts.1.gate_proj.weight": "model.safetensors",
346
+ "model.layers.17.mlp.experts.1.up_proj.weight": "model.safetensors",
347
+ "model.layers.17.mlp.gate.e_score_correction_bias": "model.safetensors",
348
+ "model.layers.17.mlp.gate.weight": "model.safetensors",
349
+ "model.layers.17.mlp.shared_experts.down_proj.weight": "model.safetensors",
350
+ "model.layers.17.mlp.shared_experts.gate_proj.weight": "model.safetensors",
351
+ "model.layers.17.mlp.shared_experts.up_proj.weight": "model.safetensors",
352
+ "model.layers.17.post_attention_layernorm.weight": "model.safetensors",
353
+ "model.layers.17.self_attn.kv_a_layernorm.weight": "model.safetensors",
354
+ "model.layers.17.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
355
+ "model.layers.17.self_attn.kv_b_proj.weight": "model.safetensors",
356
+ "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
357
+ "model.layers.17.self_attn.q_a_layernorm.weight": "model.safetensors",
358
+ "model.layers.17.self_attn.q_a_proj.weight": "model.safetensors",
359
+ "model.layers.17.self_attn.q_b_proj.weight": "model.safetensors",
360
+ "model.layers.18.input_layernorm.weight": "model.safetensors",
361
+ "model.layers.18.mlp.experts.0.down_proj.weight": "model.safetensors",
362
+ "model.layers.18.mlp.experts.0.gate_proj.weight": "model.safetensors",
363
+ "model.layers.18.mlp.experts.0.up_proj.weight": "model.safetensors",
364
+ "model.layers.18.mlp.experts.1.down_proj.weight": "model.safetensors",
365
+ "model.layers.18.mlp.experts.1.gate_proj.weight": "model.safetensors",
366
+ "model.layers.18.mlp.experts.1.up_proj.weight": "model.safetensors",
367
+ "model.layers.18.mlp.gate.e_score_correction_bias": "model.safetensors",
368
+ "model.layers.18.mlp.gate.weight": "model.safetensors",
369
+ "model.layers.18.mlp.shared_experts.down_proj.weight": "model.safetensors",
370
+ "model.layers.18.mlp.shared_experts.gate_proj.weight": "model.safetensors",
371
+ "model.layers.18.mlp.shared_experts.up_proj.weight": "model.safetensors",
372
+ "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
373
+ "model.layers.18.self_attn.kv_a_layernorm.weight": "model.safetensors",
374
+ "model.layers.18.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
375
+ "model.layers.18.self_attn.kv_b_proj.weight": "model.safetensors",
376
+ "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
377
+ "model.layers.18.self_attn.q_a_layernorm.weight": "model.safetensors",
378
+ "model.layers.18.self_attn.q_a_proj.weight": "model.safetensors",
379
+ "model.layers.18.self_attn.q_b_proj.weight": "model.safetensors",
380
+ "model.layers.19.input_layernorm.weight": "model.safetensors",
381
+ "model.layers.19.mlp.experts.0.down_proj.weight": "model.safetensors",
382
+ "model.layers.19.mlp.experts.0.gate_proj.weight": "model.safetensors",
383
+ "model.layers.19.mlp.experts.0.up_proj.weight": "model.safetensors",
384
+ "model.layers.19.mlp.experts.1.down_proj.weight": "model.safetensors",
385
+ "model.layers.19.mlp.experts.1.gate_proj.weight": "model.safetensors",
386
+ "model.layers.19.mlp.experts.1.up_proj.weight": "model.safetensors",
387
+ "model.layers.19.mlp.gate.e_score_correction_bias": "model.safetensors",
388
+ "model.layers.19.mlp.gate.weight": "model.safetensors",
389
+ "model.layers.19.mlp.shared_experts.down_proj.weight": "model.safetensors",
390
+ "model.layers.19.mlp.shared_experts.gate_proj.weight": "model.safetensors",
391
+ "model.layers.19.mlp.shared_experts.up_proj.weight": "model.safetensors",
392
+ "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
393
+ "model.layers.19.self_attn.kv_a_layernorm.weight": "model.safetensors",
394
+ "model.layers.19.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
395
+ "model.layers.19.self_attn.kv_b_proj.weight": "model.safetensors",
396
+ "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
397
+ "model.layers.19.self_attn.q_a_layernorm.weight": "model.safetensors",
398
+ "model.layers.19.self_attn.q_a_proj.weight": "model.safetensors",
399
+ "model.layers.19.self_attn.q_b_proj.weight": "model.safetensors",
400
+ "model.layers.20.input_layernorm.weight": "model.safetensors",
401
+ "model.layers.20.mlp.experts.0.down_proj.weight": "model.safetensors",
402
+ "model.layers.20.mlp.experts.0.gate_proj.weight": "model.safetensors",
403
+ "model.layers.20.mlp.experts.0.up_proj.weight": "model.safetensors",
404
+ "model.layers.20.mlp.experts.1.down_proj.weight": "model.safetensors",
405
+ "model.layers.20.mlp.experts.1.gate_proj.weight": "model.safetensors",
406
+ "model.layers.20.mlp.experts.1.up_proj.weight": "model.safetensors",
407
+ "model.layers.20.mlp.gate.e_score_correction_bias": "model.safetensors",
408
+ "model.layers.20.mlp.gate.weight": "model.safetensors",
409
+ "model.layers.20.mlp.shared_experts.down_proj.weight": "model.safetensors",
410
+ "model.layers.20.mlp.shared_experts.gate_proj.weight": "model.safetensors",
411
+ "model.layers.20.mlp.shared_experts.up_proj.weight": "model.safetensors",
412
+ "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
413
+ "model.layers.20.self_attn.kv_a_layernorm.weight": "model.safetensors",
414
+ "model.layers.20.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
415
+ "model.layers.20.self_attn.kv_b_proj.weight": "model.safetensors",
416
+ "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
417
+ "model.layers.20.self_attn.q_a_layernorm.weight": "model.safetensors",
418
+ "model.layers.20.self_attn.q_a_proj.weight": "model.safetensors",
419
+ "model.layers.20.self_attn.q_b_proj.weight": "model.safetensors",
420
+ "model.layers.21.input_layernorm.weight": "model.safetensors",
421
+ "model.layers.21.mlp.experts.0.down_proj.weight": "model.safetensors",
422
+ "model.layers.21.mlp.experts.0.gate_proj.weight": "model.safetensors",
423
+ "model.layers.21.mlp.experts.0.up_proj.weight": "model.safetensors",
424
+ "model.layers.21.mlp.experts.1.down_proj.weight": "model.safetensors",
425
+ "model.layers.21.mlp.experts.1.gate_proj.weight": "model.safetensors",
426
+ "model.layers.21.mlp.experts.1.up_proj.weight": "model.safetensors",
427
+ "model.layers.21.mlp.gate.e_score_correction_bias": "model.safetensors",
428
+ "model.layers.21.mlp.gate.weight": "model.safetensors",
429
+ "model.layers.21.mlp.shared_experts.down_proj.weight": "model.safetensors",
430
+ "model.layers.21.mlp.shared_experts.gate_proj.weight": "model.safetensors",
431
+ "model.layers.21.mlp.shared_experts.up_proj.weight": "model.safetensors",
432
+ "model.layers.21.post_attention_layernorm.weight": "model.safetensors",
433
+ "model.layers.21.self_attn.kv_a_layernorm.weight": "model.safetensors",
434
+ "model.layers.21.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
435
+ "model.layers.21.self_attn.kv_b_proj.weight": "model.safetensors",
436
+ "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
437
+ "model.layers.21.self_attn.q_a_layernorm.weight": "model.safetensors",
438
+ "model.layers.21.self_attn.q_a_proj.weight": "model.safetensors",
439
+ "model.layers.21.self_attn.q_b_proj.weight": "model.safetensors",
440
+ "model.layers.22.input_layernorm.weight": "model.safetensors",
441
+ "model.layers.22.mlp.experts.0.down_proj.weight": "model.safetensors",
442
+ "model.layers.22.mlp.experts.0.gate_proj.weight": "model.safetensors",
443
+ "model.layers.22.mlp.experts.0.up_proj.weight": "model.safetensors",
444
+ "model.layers.22.mlp.experts.1.down_proj.weight": "model.safetensors",
445
+ "model.layers.22.mlp.experts.1.gate_proj.weight": "model.safetensors",
446
+ "model.layers.22.mlp.experts.1.up_proj.weight": "model.safetensors",
447
+ "model.layers.22.mlp.gate.e_score_correction_bias": "model.safetensors",
448
+ "model.layers.22.mlp.gate.weight": "model.safetensors",
449
+ "model.layers.22.mlp.shared_experts.down_proj.weight": "model.safetensors",
450
+ "model.layers.22.mlp.shared_experts.gate_proj.weight": "model.safetensors",
451
+ "model.layers.22.mlp.shared_experts.up_proj.weight": "model.safetensors",
452
+ "model.layers.22.post_attention_layernorm.weight": "model.safetensors",
453
+ "model.layers.22.self_attn.kv_a_layernorm.weight": "model.safetensors",
454
+ "model.layers.22.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
455
+ "model.layers.22.self_attn.kv_b_proj.weight": "model.safetensors",
456
+ "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
457
+ "model.layers.22.self_attn.q_a_layernorm.weight": "model.safetensors",
458
+ "model.layers.22.self_attn.q_a_proj.weight": "model.safetensors",
459
+ "model.layers.22.self_attn.q_b_proj.weight": "model.safetensors",
460
+ "model.layers.23.input_layernorm.weight": "model.safetensors",
461
+ "model.layers.23.mlp.experts.0.down_proj.weight": "model.safetensors",
462
+ "model.layers.23.mlp.experts.0.gate_proj.weight": "model.safetensors",
463
+ "model.layers.23.mlp.experts.0.up_proj.weight": "model.safetensors",
464
+ "model.layers.23.mlp.experts.1.down_proj.weight": "model.safetensors",
465
+ "model.layers.23.mlp.experts.1.gate_proj.weight": "model.safetensors",
466
+ "model.layers.23.mlp.experts.1.up_proj.weight": "model.safetensors",
467
+ "model.layers.23.mlp.gate.e_score_correction_bias": "model.safetensors",
468
+ "model.layers.23.mlp.gate.weight": "model.safetensors",
469
+ "model.layers.23.mlp.shared_experts.down_proj.weight": "model.safetensors",
470
+ "model.layers.23.mlp.shared_experts.gate_proj.weight": "model.safetensors",
471
+ "model.layers.23.mlp.shared_experts.up_proj.weight": "model.safetensors",
472
+ "model.layers.23.post_attention_layernorm.weight": "model.safetensors",
473
+ "model.layers.23.self_attn.kv_a_layernorm.weight": "model.safetensors",
474
+ "model.layers.23.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
475
+ "model.layers.23.self_attn.kv_b_proj.weight": "model.safetensors",
476
+ "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
477
+ "model.layers.23.self_attn.q_a_layernorm.weight": "model.safetensors",
478
+ "model.layers.23.self_attn.q_a_proj.weight": "model.safetensors",
479
+ "model.layers.23.self_attn.q_b_proj.weight": "model.safetensors",
480
+ "model.layers.24.input_layernorm.weight": "model.safetensors",
481
+ "model.layers.24.mlp.experts.0.down_proj.weight": "model.safetensors",
482
+ "model.layers.24.mlp.experts.0.gate_proj.weight": "model.safetensors",
483
+ "model.layers.24.mlp.experts.0.up_proj.weight": "model.safetensors",
484
+ "model.layers.24.mlp.experts.1.down_proj.weight": "model.safetensors",
485
+ "model.layers.24.mlp.experts.1.gate_proj.weight": "model.safetensors",
486
+ "model.layers.24.mlp.experts.1.up_proj.weight": "model.safetensors",
487
+ "model.layers.24.mlp.gate.e_score_correction_bias": "model.safetensors",
488
+ "model.layers.24.mlp.gate.weight": "model.safetensors",
489
+ "model.layers.24.mlp.shared_experts.down_proj.weight": "model.safetensors",
490
+ "model.layers.24.mlp.shared_experts.gate_proj.weight": "model.safetensors",
491
+ "model.layers.24.mlp.shared_experts.up_proj.weight": "model.safetensors",
492
+ "model.layers.24.post_attention_layernorm.weight": "model.safetensors",
493
+ "model.layers.24.self_attn.kv_a_layernorm.weight": "model.safetensors",
494
+ "model.layers.24.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
495
+ "model.layers.24.self_attn.kv_b_proj.weight": "model.safetensors",
496
+ "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
497
+ "model.layers.24.self_attn.q_a_layernorm.weight": "model.safetensors",
498
+ "model.layers.24.self_attn.q_a_proj.weight": "model.safetensors",
499
+ "model.layers.24.self_attn.q_b_proj.weight": "model.safetensors",
500
+ "model.layers.25.input_layernorm.weight": "model.safetensors",
501
+ "model.layers.25.mlp.experts.0.down_proj.weight": "model.safetensors",
502
+ "model.layers.25.mlp.experts.0.gate_proj.weight": "model.safetensors",
503
+ "model.layers.25.mlp.experts.0.up_proj.weight": "model.safetensors",
504
+ "model.layers.25.mlp.experts.1.down_proj.weight": "model.safetensors",
505
+ "model.layers.25.mlp.experts.1.gate_proj.weight": "model.safetensors",
506
+ "model.layers.25.mlp.experts.1.up_proj.weight": "model.safetensors",
507
+ "model.layers.25.mlp.gate.e_score_correction_bias": "model.safetensors",
508
+ "model.layers.25.mlp.gate.weight": "model.safetensors",
509
+ "model.layers.25.mlp.shared_experts.down_proj.weight": "model.safetensors",
510
+ "model.layers.25.mlp.shared_experts.gate_proj.weight": "model.safetensors",
511
+ "model.layers.25.mlp.shared_experts.up_proj.weight": "model.safetensors",
512
+ "model.layers.25.post_attention_layernorm.weight": "model.safetensors",
513
+ "model.layers.25.self_attn.kv_a_layernorm.weight": "model.safetensors",
514
+ "model.layers.25.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
515
+ "model.layers.25.self_attn.kv_b_proj.weight": "model.safetensors",
516
+ "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
517
+ "model.layers.25.self_attn.q_a_layernorm.weight": "model.safetensors",
518
+ "model.layers.25.self_attn.q_a_proj.weight": "model.safetensors",
519
+ "model.layers.25.self_attn.q_b_proj.weight": "model.safetensors",
520
+ "model.layers.26.input_layernorm.weight": "model.safetensors",
521
+ "model.layers.26.mlp.experts.0.down_proj.weight": "model.safetensors",
522
+ "model.layers.26.mlp.experts.0.gate_proj.weight": "model.safetensors",
523
+ "model.layers.26.mlp.experts.0.up_proj.weight": "model.safetensors",
524
+ "model.layers.26.mlp.experts.1.down_proj.weight": "model.safetensors",
525
+ "model.layers.26.mlp.experts.1.gate_proj.weight": "model.safetensors",
526
+ "model.layers.26.mlp.experts.1.up_proj.weight": "model.safetensors",
527
+ "model.layers.26.mlp.gate.e_score_correction_bias": "model.safetensors",
528
+ "model.layers.26.mlp.gate.weight": "model.safetensors",
529
+ "model.layers.26.mlp.shared_experts.down_proj.weight": "model.safetensors",
530
+ "model.layers.26.mlp.shared_experts.gate_proj.weight": "model.safetensors",
531
+ "model.layers.26.mlp.shared_experts.up_proj.weight": "model.safetensors",
532
+ "model.layers.26.post_attention_layernorm.weight": "model.safetensors",
533
+ "model.layers.26.self_attn.kv_a_layernorm.weight": "model.safetensors",
534
+ "model.layers.26.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
535
+ "model.layers.26.self_attn.kv_b_proj.weight": "model.safetensors",
536
+ "model.layers.26.self_attn.o_proj.weight": "model.safetensors",
537
+ "model.layers.26.self_attn.q_a_layernorm.weight": "model.safetensors",
538
+ "model.layers.26.self_attn.q_a_proj.weight": "model.safetensors",
539
+ "model.layers.26.self_attn.q_b_proj.weight": "model.safetensors",
540
+ "model.layers.27.input_layernorm.weight": "model.safetensors",
541
+ "model.layers.27.mlp.experts.0.down_proj.weight": "model.safetensors",
542
+ "model.layers.27.mlp.experts.0.gate_proj.weight": "model.safetensors",
543
+ "model.layers.27.mlp.experts.0.up_proj.weight": "model.safetensors",
544
+ "model.layers.27.mlp.experts.1.down_proj.weight": "model.safetensors",
545
+ "model.layers.27.mlp.experts.1.gate_proj.weight": "model.safetensors",
546
+ "model.layers.27.mlp.experts.1.up_proj.weight": "model.safetensors",
547
+ "model.layers.27.mlp.gate.e_score_correction_bias": "model.safetensors",
548
+ "model.layers.27.mlp.gate.weight": "model.safetensors",
549
+ "model.layers.27.mlp.shared_experts.down_proj.weight": "model.safetensors",
550
+ "model.layers.27.mlp.shared_experts.gate_proj.weight": "model.safetensors",
551
+ "model.layers.27.mlp.shared_experts.up_proj.weight": "model.safetensors",
552
+ "model.layers.27.post_attention_layernorm.weight": "model.safetensors",
553
+ "model.layers.27.self_attn.kv_a_layernorm.weight": "model.safetensors",
554
+ "model.layers.27.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
555
+ "model.layers.27.self_attn.kv_b_proj.weight": "model.safetensors",
556
+ "model.layers.27.self_attn.o_proj.weight": "model.safetensors",
557
+ "model.layers.27.self_attn.q_a_layernorm.weight": "model.safetensors",
558
+ "model.layers.27.self_attn.q_a_proj.weight": "model.safetensors",
559
+ "model.layers.27.self_attn.q_b_proj.weight": "model.safetensors",
560
+ "model.layers.28.input_layernorm.weight": "model.safetensors",
561
+ "model.layers.28.mlp.experts.0.down_proj.weight": "model.safetensors",
562
+ "model.layers.28.mlp.experts.0.gate_proj.weight": "model.safetensors",
563
+ "model.layers.28.mlp.experts.0.up_proj.weight": "model.safetensors",
564
+ "model.layers.28.mlp.experts.1.down_proj.weight": "model.safetensors",
565
+ "model.layers.28.mlp.experts.1.gate_proj.weight": "model.safetensors",
566
+ "model.layers.28.mlp.experts.1.up_proj.weight": "model.safetensors",
567
+ "model.layers.28.mlp.gate.e_score_correction_bias": "model.safetensors",
568
+ "model.layers.28.mlp.gate.weight": "model.safetensors",
569
+ "model.layers.28.mlp.shared_experts.down_proj.weight": "model.safetensors",
570
+ "model.layers.28.mlp.shared_experts.gate_proj.weight": "model.safetensors",
571
+ "model.layers.28.mlp.shared_experts.up_proj.weight": "model.safetensors",
572
+ "model.layers.28.post_attention_layernorm.weight": "model.safetensors",
573
+ "model.layers.28.self_attn.kv_a_layernorm.weight": "model.safetensors",
574
+ "model.layers.28.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
575
+ "model.layers.28.self_attn.kv_b_proj.weight": "model.safetensors",
576
+ "model.layers.28.self_attn.o_proj.weight": "model.safetensors",
577
+ "model.layers.28.self_attn.q_a_layernorm.weight": "model.safetensors",
578
+ "model.layers.28.self_attn.q_a_proj.weight": "model.safetensors",
579
+ "model.layers.28.self_attn.q_b_proj.weight": "model.safetensors",
580
+ "model.layers.29.input_layernorm.weight": "model.safetensors",
581
+ "model.layers.29.mlp.experts.0.down_proj.weight": "model.safetensors",
582
+ "model.layers.29.mlp.experts.0.gate_proj.weight": "model.safetensors",
583
+ "model.layers.29.mlp.experts.0.up_proj.weight": "model.safetensors",
584
+ "model.layers.29.mlp.experts.1.down_proj.weight": "model.safetensors",
585
+ "model.layers.29.mlp.experts.1.gate_proj.weight": "model.safetensors",
586
+ "model.layers.29.mlp.experts.1.up_proj.weight": "model.safetensors",
587
+ "model.layers.29.mlp.gate.e_score_correction_bias": "model.safetensors",
588
+ "model.layers.29.mlp.gate.weight": "model.safetensors",
589
+ "model.layers.29.mlp.shared_experts.down_proj.weight": "model.safetensors",
590
+ "model.layers.29.mlp.shared_experts.gate_proj.weight": "model.safetensors",
591
+ "model.layers.29.mlp.shared_experts.up_proj.weight": "model.safetensors",
592
+ "model.layers.29.post_attention_layernorm.weight": "model.safetensors",
593
+ "model.layers.29.self_attn.kv_a_layernorm.weight": "model.safetensors",
594
+ "model.layers.29.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
595
+ "model.layers.29.self_attn.kv_b_proj.weight": "model.safetensors",
596
+ "model.layers.29.self_attn.o_proj.weight": "model.safetensors",
597
+ "model.layers.29.self_attn.q_a_layernorm.weight": "model.safetensors",
598
+ "model.layers.29.self_attn.q_a_proj.weight": "model.safetensors",
599
+ "model.layers.29.self_attn.q_b_proj.weight": "model.safetensors",
600
+ "model.layers.30.input_layernorm.weight": "model.safetensors",
601
+ "model.layers.30.mlp.experts.0.down_proj.weight": "model.safetensors",
602
+ "model.layers.30.mlp.experts.0.gate_proj.weight": "model.safetensors",
603
+ "model.layers.30.mlp.experts.0.up_proj.weight": "model.safetensors",
604
+ "model.layers.30.mlp.experts.1.down_proj.weight": "model.safetensors",
605
+ "model.layers.30.mlp.experts.1.gate_proj.weight": "model.safetensors",
606
+ "model.layers.30.mlp.experts.1.up_proj.weight": "model.safetensors",
607
+ "model.layers.30.mlp.gate.e_score_correction_bias": "model.safetensors",
608
+ "model.layers.30.mlp.gate.weight": "model.safetensors",
609
+ "model.layers.30.mlp.shared_experts.down_proj.weight": "model.safetensors",
610
+ "model.layers.30.mlp.shared_experts.gate_proj.weight": "model.safetensors",
611
+ "model.layers.30.mlp.shared_experts.up_proj.weight": "model.safetensors",
612
+ "model.layers.30.post_attention_layernorm.weight": "model.safetensors",
613
+ "model.layers.30.self_attn.kv_a_layernorm.weight": "model.safetensors",
614
+ "model.layers.30.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
615
+ "model.layers.30.self_attn.kv_b_proj.weight": "model.safetensors",
616
+ "model.layers.30.self_attn.o_proj.weight": "model.safetensors",
617
+ "model.layers.30.self_attn.q_a_layernorm.weight": "model.safetensors",
618
+ "model.layers.30.self_attn.q_a_proj.weight": "model.safetensors",
619
+ "model.layers.30.self_attn.q_b_proj.weight": "model.safetensors",
620
+ "model.layers.31.input_layernorm.weight": "model.safetensors",
621
+ "model.layers.31.mlp.experts.0.down_proj.weight": "model.safetensors",
622
+ "model.layers.31.mlp.experts.0.gate_proj.weight": "model.safetensors",
623
+ "model.layers.31.mlp.experts.0.up_proj.weight": "model.safetensors",
624
+ "model.layers.31.mlp.experts.1.down_proj.weight": "model.safetensors",
625
+ "model.layers.31.mlp.experts.1.gate_proj.weight": "model.safetensors",
626
+ "model.layers.31.mlp.experts.1.up_proj.weight": "model.safetensors",
627
+ "model.layers.31.mlp.gate.e_score_correction_bias": "model.safetensors",
628
+ "model.layers.31.mlp.gate.weight": "model.safetensors",
629
+ "model.layers.31.mlp.shared_experts.down_proj.weight": "model.safetensors",
630
+ "model.layers.31.mlp.shared_experts.gate_proj.weight": "model.safetensors",
631
+ "model.layers.31.mlp.shared_experts.up_proj.weight": "model.safetensors",
632
+ "model.layers.31.post_attention_layernorm.weight": "model.safetensors",
633
+ "model.layers.31.self_attn.kv_a_layernorm.weight": "model.safetensors",
634
+ "model.layers.31.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
635
+ "model.layers.31.self_attn.kv_b_proj.weight": "model.safetensors",
636
+ "model.layers.31.self_attn.o_proj.weight": "model.safetensors",
637
+ "model.layers.31.self_attn.q_a_layernorm.weight": "model.safetensors",
638
+ "model.layers.31.self_attn.q_a_proj.weight": "model.safetensors",
639
+ "model.layers.31.self_attn.q_b_proj.weight": "model.safetensors",
640
+ "model.layers.32.input_layernorm.weight": "model.safetensors",
641
+ "model.layers.32.mlp.experts.0.down_proj.weight": "model.safetensors",
642
+ "model.layers.32.mlp.experts.0.gate_proj.weight": "model.safetensors",
643
+ "model.layers.32.mlp.experts.0.up_proj.weight": "model.safetensors",
644
+ "model.layers.32.mlp.experts.1.down_proj.weight": "model.safetensors",
645
+ "model.layers.32.mlp.experts.1.gate_proj.weight": "model.safetensors",
646
+ "model.layers.32.mlp.experts.1.up_proj.weight": "model.safetensors",
647
+ "model.layers.32.mlp.gate.e_score_correction_bias": "model.safetensors",
648
+ "model.layers.32.mlp.gate.weight": "model.safetensors",
649
+ "model.layers.32.mlp.shared_experts.down_proj.weight": "model.safetensors",
650
+ "model.layers.32.mlp.shared_experts.gate_proj.weight": "model.safetensors",
651
+ "model.layers.32.mlp.shared_experts.up_proj.weight": "model.safetensors",
652
+ "model.layers.32.post_attention_layernorm.weight": "model.safetensors",
653
+ "model.layers.32.self_attn.kv_a_layernorm.weight": "model.safetensors",
654
+ "model.layers.32.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
655
+ "model.layers.32.self_attn.kv_b_proj.weight": "model.safetensors",
656
+ "model.layers.32.self_attn.o_proj.weight": "model.safetensors",
657
+ "model.layers.32.self_attn.q_a_layernorm.weight": "model.safetensors",
658
+ "model.layers.32.self_attn.q_a_proj.weight": "model.safetensors",
659
+ "model.layers.32.self_attn.q_b_proj.weight": "model.safetensors",
660
+ "model.layers.33.input_layernorm.weight": "model.safetensors",
661
+ "model.layers.33.mlp.experts.0.down_proj.weight": "model.safetensors",
662
+ "model.layers.33.mlp.experts.0.gate_proj.weight": "model.safetensors",
663
+ "model.layers.33.mlp.experts.0.up_proj.weight": "model.safetensors",
664
+ "model.layers.33.mlp.experts.1.down_proj.weight": "model.safetensors",
665
+ "model.layers.33.mlp.experts.1.gate_proj.weight": "model.safetensors",
666
+ "model.layers.33.mlp.experts.1.up_proj.weight": "model.safetensors",
667
+ "model.layers.33.mlp.gate.e_score_correction_bias": "model.safetensors",
668
+ "model.layers.33.mlp.gate.weight": "model.safetensors",
669
+ "model.layers.33.mlp.shared_experts.down_proj.weight": "model.safetensors",
670
+ "model.layers.33.mlp.shared_experts.gate_proj.weight": "model.safetensors",
671
+ "model.layers.33.mlp.shared_experts.up_proj.weight": "model.safetensors",
672
+ "model.layers.33.post_attention_layernorm.weight": "model.safetensors",
673
+ "model.layers.33.self_attn.kv_a_layernorm.weight": "model.safetensors",
674
+ "model.layers.33.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
675
+ "model.layers.33.self_attn.kv_b_proj.weight": "model.safetensors",
676
+ "model.layers.33.self_attn.o_proj.weight": "model.safetensors",
677
+ "model.layers.33.self_attn.q_a_layernorm.weight": "model.safetensors",
678
+ "model.layers.33.self_attn.q_a_proj.weight": "model.safetensors",
679
+ "model.layers.33.self_attn.q_b_proj.weight": "model.safetensors",
680
+ "model.layers.34.input_layernorm.weight": "model.safetensors",
681
+ "model.layers.34.mlp.experts.0.down_proj.weight": "model.safetensors",
682
+ "model.layers.34.mlp.experts.0.gate_proj.weight": "model.safetensors",
683
+ "model.layers.34.mlp.experts.0.up_proj.weight": "model.safetensors",
684
+ "model.layers.34.mlp.experts.1.down_proj.weight": "model.safetensors",
685
+ "model.layers.34.mlp.experts.1.gate_proj.weight": "model.safetensors",
686
+ "model.layers.34.mlp.experts.1.up_proj.weight": "model.safetensors",
687
+ "model.layers.34.mlp.gate.e_score_correction_bias": "model.safetensors",
688
+ "model.layers.34.mlp.gate.weight": "model.safetensors",
689
+ "model.layers.34.mlp.shared_experts.down_proj.weight": "model.safetensors",
690
+ "model.layers.34.mlp.shared_experts.gate_proj.weight": "model.safetensors",
691
+ "model.layers.34.mlp.shared_experts.up_proj.weight": "model.safetensors",
692
+ "model.layers.34.post_attention_layernorm.weight": "model.safetensors",
693
+ "model.layers.34.self_attn.kv_a_layernorm.weight": "model.safetensors",
694
+ "model.layers.34.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
695
+ "model.layers.34.self_attn.kv_b_proj.weight": "model.safetensors",
696
+ "model.layers.34.self_attn.o_proj.weight": "model.safetensors",
697
+ "model.layers.34.self_attn.q_a_layernorm.weight": "model.safetensors",
698
+ "model.layers.34.self_attn.q_a_proj.weight": "model.safetensors",
699
+ "model.layers.34.self_attn.q_b_proj.weight": "model.safetensors",
700
+ "model.layers.35.input_layernorm.weight": "model.safetensors",
701
+ "model.layers.35.mlp.experts.0.down_proj.weight": "model.safetensors",
702
+ "model.layers.35.mlp.experts.0.gate_proj.weight": "model.safetensors",
703
+ "model.layers.35.mlp.experts.0.up_proj.weight": "model.safetensors",
704
+ "model.layers.35.mlp.experts.1.down_proj.weight": "model.safetensors",
705
+ "model.layers.35.mlp.experts.1.gate_proj.weight": "model.safetensors",
706
+ "model.layers.35.mlp.experts.1.up_proj.weight": "model.safetensors",
707
+ "model.layers.35.mlp.gate.e_score_correction_bias": "model.safetensors",
708
+ "model.layers.35.mlp.gate.weight": "model.safetensors",
709
+ "model.layers.35.mlp.shared_experts.down_proj.weight": "model.safetensors",
710
+ "model.layers.35.mlp.shared_experts.gate_proj.weight": "model.safetensors",
711
+ "model.layers.35.mlp.shared_experts.up_proj.weight": "model.safetensors",
712
+ "model.layers.35.post_attention_layernorm.weight": "model.safetensors",
713
+ "model.layers.35.self_attn.kv_a_layernorm.weight": "model.safetensors",
714
+ "model.layers.35.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
715
+ "model.layers.35.self_attn.kv_b_proj.weight": "model.safetensors",
716
+ "model.layers.35.self_attn.o_proj.weight": "model.safetensors",
717
+ "model.layers.35.self_attn.q_a_layernorm.weight": "model.safetensors",
718
+ "model.layers.35.self_attn.q_a_proj.weight": "model.safetensors",
719
+ "model.layers.35.self_attn.q_b_proj.weight": "model.safetensors",
720
+ "model.layers.36.input_layernorm.weight": "model.safetensors",
721
+ "model.layers.36.mlp.experts.0.down_proj.weight": "model.safetensors",
722
+ "model.layers.36.mlp.experts.0.gate_proj.weight": "model.safetensors",
723
+ "model.layers.36.mlp.experts.0.up_proj.weight": "model.safetensors",
724
+ "model.layers.36.mlp.experts.1.down_proj.weight": "model.safetensors",
725
+ "model.layers.36.mlp.experts.1.gate_proj.weight": "model.safetensors",
726
+ "model.layers.36.mlp.experts.1.up_proj.weight": "model.safetensors",
727
+ "model.layers.36.mlp.gate.e_score_correction_bias": "model.safetensors",
728
+ "model.layers.36.mlp.gate.weight": "model.safetensors",
729
+ "model.layers.36.mlp.shared_experts.down_proj.weight": "model.safetensors",
730
+ "model.layers.36.mlp.shared_experts.gate_proj.weight": "model.safetensors",
731
+ "model.layers.36.mlp.shared_experts.up_proj.weight": "model.safetensors",
732
+ "model.layers.36.post_attention_layernorm.weight": "model.safetensors",
733
+ "model.layers.36.self_attn.kv_a_layernorm.weight": "model.safetensors",
734
+ "model.layers.36.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
735
+ "model.layers.36.self_attn.kv_b_proj.weight": "model.safetensors",
736
+ "model.layers.36.self_attn.o_proj.weight": "model.safetensors",
737
+ "model.layers.36.self_attn.q_a_layernorm.weight": "model.safetensors",
738
+ "model.layers.36.self_attn.q_a_proj.weight": "model.safetensors",
739
+ "model.layers.36.self_attn.q_b_proj.weight": "model.safetensors",
740
+ "model.layers.37.input_layernorm.weight": "model.safetensors",
741
+ "model.layers.37.mlp.experts.0.down_proj.weight": "model.safetensors",
742
+ "model.layers.37.mlp.experts.0.gate_proj.weight": "model.safetensors",
743
+ "model.layers.37.mlp.experts.0.up_proj.weight": "model.safetensors",
744
+ "model.layers.37.mlp.experts.1.down_proj.weight": "model.safetensors",
745
+ "model.layers.37.mlp.experts.1.gate_proj.weight": "model.safetensors",
746
+ "model.layers.37.mlp.experts.1.up_proj.weight": "model.safetensors",
747
+ "model.layers.37.mlp.gate.e_score_correction_bias": "model.safetensors",
748
+ "model.layers.37.mlp.gate.weight": "model.safetensors",
749
+ "model.layers.37.mlp.shared_experts.down_proj.weight": "model.safetensors",
750
+ "model.layers.37.mlp.shared_experts.gate_proj.weight": "model.safetensors",
751
+ "model.layers.37.mlp.shared_experts.up_proj.weight": "model.safetensors",
752
+ "model.layers.37.post_attention_layernorm.weight": "model.safetensors",
753
+ "model.layers.37.self_attn.kv_a_layernorm.weight": "model.safetensors",
754
+ "model.layers.37.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
755
+ "model.layers.37.self_attn.kv_b_proj.weight": "model.safetensors",
756
+ "model.layers.37.self_attn.o_proj.weight": "model.safetensors",
757
+ "model.layers.37.self_attn.q_a_layernorm.weight": "model.safetensors",
758
+ "model.layers.37.self_attn.q_a_proj.weight": "model.safetensors",
759
+ "model.layers.37.self_attn.q_b_proj.weight": "model.safetensors",
760
+ "model.layers.38.input_layernorm.weight": "model.safetensors",
761
+ "model.layers.38.mlp.experts.0.down_proj.weight": "model.safetensors",
762
+ "model.layers.38.mlp.experts.0.gate_proj.weight": "model.safetensors",
763
+ "model.layers.38.mlp.experts.0.up_proj.weight": "model.safetensors",
764
+ "model.layers.38.mlp.experts.1.down_proj.weight": "model.safetensors",
765
+ "model.layers.38.mlp.experts.1.gate_proj.weight": "model.safetensors",
766
+ "model.layers.38.mlp.experts.1.up_proj.weight": "model.safetensors",
767
+ "model.layers.38.mlp.gate.e_score_correction_bias": "model.safetensors",
768
+ "model.layers.38.mlp.gate.weight": "model.safetensors",
769
+ "model.layers.38.mlp.shared_experts.down_proj.weight": "model.safetensors",
770
+ "model.layers.38.mlp.shared_experts.gate_proj.weight": "model.safetensors",
771
+ "model.layers.38.mlp.shared_experts.up_proj.weight": "model.safetensors",
772
+ "model.layers.38.post_attention_layernorm.weight": "model.safetensors",
773
+ "model.layers.38.self_attn.kv_a_layernorm.weight": "model.safetensors",
774
+ "model.layers.38.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
775
+ "model.layers.38.self_attn.kv_b_proj.weight": "model.safetensors",
776
+ "model.layers.38.self_attn.o_proj.weight": "model.safetensors",
777
+ "model.layers.38.self_attn.q_a_layernorm.weight": "model.safetensors",
778
+ "model.layers.38.self_attn.q_a_proj.weight": "model.safetensors",
779
+ "model.layers.38.self_attn.q_b_proj.weight": "model.safetensors",
780
+ "model.layers.39.input_layernorm.weight": "model.safetensors",
781
+ "model.layers.39.mlp.experts.0.down_proj.weight": "model.safetensors",
782
+ "model.layers.39.mlp.experts.0.gate_proj.weight": "model.safetensors",
783
+ "model.layers.39.mlp.experts.0.up_proj.weight": "model.safetensors",
784
+ "model.layers.39.mlp.experts.1.down_proj.weight": "model.safetensors",
785
+ "model.layers.39.mlp.experts.1.gate_proj.weight": "model.safetensors",
786
+ "model.layers.39.mlp.experts.1.up_proj.weight": "model.safetensors",
787
+ "model.layers.39.mlp.gate.e_score_correction_bias": "model.safetensors",
788
+ "model.layers.39.mlp.gate.weight": "model.safetensors",
789
+ "model.layers.39.mlp.shared_experts.down_proj.weight": "model.safetensors",
790
+ "model.layers.39.mlp.shared_experts.gate_proj.weight": "model.safetensors",
791
+ "model.layers.39.mlp.shared_experts.up_proj.weight": "model.safetensors",
792
+ "model.layers.39.post_attention_layernorm.weight": "model.safetensors",
793
+ "model.layers.39.self_attn.kv_a_layernorm.weight": "model.safetensors",
794
+ "model.layers.39.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
795
+ "model.layers.39.self_attn.kv_b_proj.weight": "model.safetensors",
796
+ "model.layers.39.self_attn.o_proj.weight": "model.safetensors",
797
+ "model.layers.39.self_attn.q_a_layernorm.weight": "model.safetensors",
798
+ "model.layers.39.self_attn.q_a_proj.weight": "model.safetensors",
799
+ "model.layers.39.self_attn.q_b_proj.weight": "model.safetensors",
800
+ "model.layers.40.input_layernorm.weight": "model.safetensors",
801
+ "model.layers.40.mlp.experts.0.down_proj.weight": "model.safetensors",
802
+ "model.layers.40.mlp.experts.0.gate_proj.weight": "model.safetensors",
803
+ "model.layers.40.mlp.experts.0.up_proj.weight": "model.safetensors",
804
+ "model.layers.40.mlp.experts.1.down_proj.weight": "model.safetensors",
805
+ "model.layers.40.mlp.experts.1.gate_proj.weight": "model.safetensors",
806
+ "model.layers.40.mlp.experts.1.up_proj.weight": "model.safetensors",
807
+ "model.layers.40.mlp.gate.e_score_correction_bias": "model.safetensors",
808
+ "model.layers.40.mlp.gate.weight": "model.safetensors",
809
+ "model.layers.40.mlp.shared_experts.down_proj.weight": "model.safetensors",
810
+ "model.layers.40.mlp.shared_experts.gate_proj.weight": "model.safetensors",
811
+ "model.layers.40.mlp.shared_experts.up_proj.weight": "model.safetensors",
812
+ "model.layers.40.post_attention_layernorm.weight": "model.safetensors",
813
+ "model.layers.40.self_attn.kv_a_layernorm.weight": "model.safetensors",
814
+ "model.layers.40.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
815
+ "model.layers.40.self_attn.kv_b_proj.weight": "model.safetensors",
816
+ "model.layers.40.self_attn.o_proj.weight": "model.safetensors",
817
+ "model.layers.40.self_attn.q_a_layernorm.weight": "model.safetensors",
818
+ "model.layers.40.self_attn.q_a_proj.weight": "model.safetensors",
819
+ "model.layers.40.self_attn.q_b_proj.weight": "model.safetensors",
820
+ "model.layers.41.input_layernorm.weight": "model.safetensors",
821
+ "model.layers.41.mlp.experts.0.down_proj.weight": "model.safetensors",
822
+ "model.layers.41.mlp.experts.0.gate_proj.weight": "model.safetensors",
823
+ "model.layers.41.mlp.experts.0.up_proj.weight": "model.safetensors",
824
+ "model.layers.41.mlp.experts.1.down_proj.weight": "model.safetensors",
825
+ "model.layers.41.mlp.experts.1.gate_proj.weight": "model.safetensors",
826
+ "model.layers.41.mlp.experts.1.up_proj.weight": "model.safetensors",
827
+ "model.layers.41.mlp.gate.e_score_correction_bias": "model.safetensors",
828
+ "model.layers.41.mlp.gate.weight": "model.safetensors",
829
+ "model.layers.41.mlp.shared_experts.down_proj.weight": "model.safetensors",
830
+ "model.layers.41.mlp.shared_experts.gate_proj.weight": "model.safetensors",
831
+ "model.layers.41.mlp.shared_experts.up_proj.weight": "model.safetensors",
832
+ "model.layers.41.post_attention_layernorm.weight": "model.safetensors",
833
+ "model.layers.41.self_attn.kv_a_layernorm.weight": "model.safetensors",
834
+ "model.layers.41.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
835
+ "model.layers.41.self_attn.kv_b_proj.weight": "model.safetensors",
836
+ "model.layers.41.self_attn.o_proj.weight": "model.safetensors",
837
+ "model.layers.41.self_attn.q_a_layernorm.weight": "model.safetensors",
838
+ "model.layers.41.self_attn.q_a_proj.weight": "model.safetensors",
839
+ "model.layers.41.self_attn.q_b_proj.weight": "model.safetensors",
840
+ "model.layers.42.input_layernorm.weight": "model.safetensors",
841
+ "model.layers.42.mlp.experts.0.down_proj.weight": "model.safetensors",
842
+ "model.layers.42.mlp.experts.0.gate_proj.weight": "model.safetensors",
843
+ "model.layers.42.mlp.experts.0.up_proj.weight": "model.safetensors",
844
+ "model.layers.42.mlp.experts.1.down_proj.weight": "model.safetensors",
845
+ "model.layers.42.mlp.experts.1.gate_proj.weight": "model.safetensors",
846
+ "model.layers.42.mlp.experts.1.up_proj.weight": "model.safetensors",
847
+ "model.layers.42.mlp.gate.e_score_correction_bias": "model.safetensors",
848
+ "model.layers.42.mlp.gate.weight": "model.safetensors",
849
+ "model.layers.42.mlp.shared_experts.down_proj.weight": "model.safetensors",
850
+ "model.layers.42.mlp.shared_experts.gate_proj.weight": "model.safetensors",
851
+ "model.layers.42.mlp.shared_experts.up_proj.weight": "model.safetensors",
852
+ "model.layers.42.post_attention_layernorm.weight": "model.safetensors",
853
+ "model.layers.42.self_attn.kv_a_layernorm.weight": "model.safetensors",
854
+ "model.layers.42.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
855
+ "model.layers.42.self_attn.kv_b_proj.weight": "model.safetensors",
856
+ "model.layers.42.self_attn.o_proj.weight": "model.safetensors",
857
+ "model.layers.42.self_attn.q_a_layernorm.weight": "model.safetensors",
858
+ "model.layers.42.self_attn.q_a_proj.weight": "model.safetensors",
859
+ "model.layers.42.self_attn.q_b_proj.weight": "model.safetensors",
860
+ "model.layers.43.input_layernorm.weight": "model.safetensors",
861
+ "model.layers.43.mlp.experts.0.down_proj.weight": "model.safetensors",
862
+ "model.layers.43.mlp.experts.0.gate_proj.weight": "model.safetensors",
863
+ "model.layers.43.mlp.experts.0.up_proj.weight": "model.safetensors",
864
+ "model.layers.43.mlp.experts.1.down_proj.weight": "model.safetensors",
865
+ "model.layers.43.mlp.experts.1.gate_proj.weight": "model.safetensors",
866
+ "model.layers.43.mlp.experts.1.up_proj.weight": "model.safetensors",
867
+ "model.layers.43.mlp.gate.e_score_correction_bias": "model.safetensors",
868
+ "model.layers.43.mlp.gate.weight": "model.safetensors",
869
+ "model.layers.43.mlp.shared_experts.down_proj.weight": "model.safetensors",
870
+ "model.layers.43.mlp.shared_experts.gate_proj.weight": "model.safetensors",
871
+ "model.layers.43.mlp.shared_experts.up_proj.weight": "model.safetensors",
872
+ "model.layers.43.post_attention_layernorm.weight": "model.safetensors",
873
+ "model.layers.43.self_attn.kv_a_layernorm.weight": "model.safetensors",
874
+ "model.layers.43.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
875
+ "model.layers.43.self_attn.kv_b_proj.weight": "model.safetensors",
876
+ "model.layers.43.self_attn.o_proj.weight": "model.safetensors",
877
+ "model.layers.43.self_attn.q_a_layernorm.weight": "model.safetensors",
878
+ "model.layers.43.self_attn.q_a_proj.weight": "model.safetensors",
879
+ "model.layers.43.self_attn.q_b_proj.weight": "model.safetensors",
880
+ "model.layers.44.input_layernorm.weight": "model.safetensors",
881
+ "model.layers.44.mlp.experts.0.down_proj.weight": "model.safetensors",
882
+ "model.layers.44.mlp.experts.0.gate_proj.weight": "model.safetensors",
883
+ "model.layers.44.mlp.experts.0.up_proj.weight": "model.safetensors",
884
+ "model.layers.44.mlp.experts.1.down_proj.weight": "model.safetensors",
885
+ "model.layers.44.mlp.experts.1.gate_proj.weight": "model.safetensors",
886
+ "model.layers.44.mlp.experts.1.up_proj.weight": "model.safetensors",
887
+ "model.layers.44.mlp.gate.e_score_correction_bias": "model.safetensors",
888
+ "model.layers.44.mlp.gate.weight": "model.safetensors",
889
+ "model.layers.44.mlp.shared_experts.down_proj.weight": "model.safetensors",
890
+ "model.layers.44.mlp.shared_experts.gate_proj.weight": "model.safetensors",
891
+ "model.layers.44.mlp.shared_experts.up_proj.weight": "model.safetensors",
892
+ "model.layers.44.post_attention_layernorm.weight": "model.safetensors",
893
+ "model.layers.44.self_attn.kv_a_layernorm.weight": "model.safetensors",
894
+ "model.layers.44.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
895
+ "model.layers.44.self_attn.kv_b_proj.weight": "model.safetensors",
896
+ "model.layers.44.self_attn.o_proj.weight": "model.safetensors",
897
+ "model.layers.44.self_attn.q_a_layernorm.weight": "model.safetensors",
898
+ "model.layers.44.self_attn.q_a_proj.weight": "model.safetensors",
899
+ "model.layers.44.self_attn.q_b_proj.weight": "model.safetensors",
900
+ "model.layers.45.input_layernorm.weight": "model.safetensors",
901
+ "model.layers.45.mlp.experts.0.down_proj.weight": "model.safetensors",
902
+ "model.layers.45.mlp.experts.0.gate_proj.weight": "model.safetensors",
903
+ "model.layers.45.mlp.experts.0.up_proj.weight": "model.safetensors",
904
+ "model.layers.45.mlp.experts.1.down_proj.weight": "model.safetensors",
905
+ "model.layers.45.mlp.experts.1.gate_proj.weight": "model.safetensors",
906
+ "model.layers.45.mlp.experts.1.up_proj.weight": "model.safetensors",
907
+ "model.layers.45.mlp.gate.e_score_correction_bias": "model.safetensors",
908
+ "model.layers.45.mlp.gate.weight": "model.safetensors",
909
+ "model.layers.45.mlp.shared_experts.down_proj.weight": "model.safetensors",
910
+ "model.layers.45.mlp.shared_experts.gate_proj.weight": "model.safetensors",
911
+ "model.layers.45.mlp.shared_experts.up_proj.weight": "model.safetensors",
912
+ "model.layers.45.post_attention_layernorm.weight": "model.safetensors",
913
+ "model.layers.45.self_attn.kv_a_layernorm.weight": "model.safetensors",
914
+ "model.layers.45.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
915
+ "model.layers.45.self_attn.kv_b_proj.weight": "model.safetensors",
916
+ "model.layers.45.self_attn.o_proj.weight": "model.safetensors",
917
+ "model.layers.45.self_attn.q_a_layernorm.weight": "model.safetensors",
918
+ "model.layers.45.self_attn.q_a_proj.weight": "model.safetensors",
919
+ "model.layers.45.self_attn.q_b_proj.weight": "model.safetensors",
920
+ "lm_head.weight": "model.safetensors",
921
+ "model.layers.46.input_layernorm.weight": "model.safetensors",
922
+ "model.layers.46.mlp.experts.0.down_proj.weight": "model.safetensors",
923
+ "model.layers.46.mlp.experts.0.gate_proj.weight": "model.safetensors",
924
+ "model.layers.46.mlp.experts.0.up_proj.weight": "model.safetensors",
925
+ "model.layers.46.mlp.experts.1.down_proj.weight": "model.safetensors",
926
+ "model.layers.46.mlp.experts.1.gate_proj.weight": "model.safetensors",
927
+ "model.layers.46.mlp.experts.1.up_proj.weight": "model.safetensors",
928
+ "model.layers.46.mlp.gate.e_score_correction_bias": "model.safetensors",
929
+ "model.layers.46.mlp.gate.weight": "model.safetensors",
930
+ "model.layers.46.mlp.shared_experts.down_proj.weight": "model.safetensors",
931
+ "model.layers.46.mlp.shared_experts.gate_proj.weight": "model.safetensors",
932
+ "model.layers.46.mlp.shared_experts.up_proj.weight": "model.safetensors",
933
+ "model.layers.46.post_attention_layernorm.weight": "model.safetensors",
934
+ "model.layers.46.self_attn.kv_a_layernorm.weight": "model.safetensors",
935
+ "model.layers.46.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
936
+ "model.layers.46.self_attn.kv_b_proj.weight": "model.safetensors",
937
+ "model.layers.46.self_attn.o_proj.weight": "model.safetensors",
938
+ "model.layers.46.self_attn.q_a_layernorm.weight": "model.safetensors",
939
+ "model.layers.46.self_attn.q_a_proj.weight": "model.safetensors",
940
+ "model.layers.46.self_attn.q_b_proj.weight": "model.safetensors",
941
+ "model.layers.47.shared_head.head.weight": "model.safetensors",
942
+ "model.norm.weight": "model.safetensors",
943
+ "model.layers.47.eh_proj.weight": "model.safetensors",
944
+ "model.layers.47.enorm.weight": "model.safetensors",
945
+ "model.layers.47.hnorm.weight": "model.safetensors",
946
+ "model.layers.47.input_layernorm.weight": "model.safetensors",
947
+ "model.layers.47.mlp.experts.0.down_proj.weight": "model.safetensors",
948
+ "model.layers.47.mlp.experts.0.gate_proj.weight": "model.safetensors",
949
+ "model.layers.47.mlp.experts.0.up_proj.weight": "model.safetensors",
950
+ "model.layers.47.mlp.experts.1.down_proj.weight": "model.safetensors",
951
+ "model.layers.47.mlp.experts.1.gate_proj.weight": "model.safetensors",
952
+ "model.layers.47.mlp.experts.1.up_proj.weight": "model.safetensors",
953
+ "model.layers.47.mlp.gate.e_score_correction_bias": "model.safetensors",
954
+ "model.layers.47.mlp.gate.weight": "model.safetensors",
955
+ "model.layers.47.mlp.shared_experts.down_proj.weight": "model.safetensors",
956
+ "model.layers.47.mlp.shared_experts.gate_proj.weight": "model.safetensors",
957
+ "model.layers.47.mlp.shared_experts.up_proj.weight": "model.safetensors",
958
+ "model.layers.47.post_attention_layernorm.weight": "model.safetensors",
959
+ "model.layers.47.self_attn.kv_a_layernorm.weight": "model.safetensors",
960
+ "model.layers.47.self_attn.kv_a_proj_with_mqa.weight": "model.safetensors",
961
+ "model.layers.47.self_attn.kv_b_proj.weight": "model.safetensors",
962
+ "model.layers.47.self_attn.o_proj.weight": "model.safetensors",
963
+ "model.layers.47.self_attn.q_a_layernorm.weight": "model.safetensors",
964
+ "model.layers.47.self_attn.q_a_proj.weight": "model.safetensors",
965
+ "model.layers.47.self_attn.q_b_proj.weight": "model.safetensors",
966
+ "model.layers.47.shared_head.norm.weight": "model.safetensors"
967
+ }
968
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19e773648cb4e65de8660ea6365e10acca112d42a854923df93db4a6f333a82d
3
+ size 20217442
tokenizer_config.json ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "154820": {
4
+ "content": "<|endoftext|>",
5
+ "single_word": false,
6
+ "lstrip": false,
7
+ "rstrip": false,
8
+ "normalized": false,
9
+ "special": true
10
+ },
11
+ "154821": {
12
+ "content": "[MASK]",
13
+ "single_word": false,
14
+ "lstrip": false,
15
+ "rstrip": false,
16
+ "normalized": false,
17
+ "special": true
18
+ },
19
+ "154822": {
20
+ "content": "[gMASK]",
21
+ "single_word": false,
22
+ "lstrip": false,
23
+ "rstrip": false,
24
+ "normalized": false,
25
+ "special": true
26
+ },
27
+ "154823": {
28
+ "content": "[sMASK]",
29
+ "single_word": false,
30
+ "lstrip": false,
31
+ "rstrip": false,
32
+ "normalized": false,
33
+ "special": true
34
+ },
35
+ "154824": {
36
+ "content": "<sop>",
37
+ "single_word": false,
38
+ "lstrip": false,
39
+ "rstrip": false,
40
+ "normalized": false,
41
+ "special": true
42
+ },
43
+ "154825": {
44
+ "content": "<eop>",
45
+ "single_word": false,
46
+ "lstrip": false,
47
+ "rstrip": false,
48
+ "normalized": false,
49
+ "special": true
50
+ },
51
+ "154826": {
52
+ "content": "<|system|>",
53
+ "single_word": false,
54
+ "lstrip": false,
55
+ "rstrip": false,
56
+ "normalized": false,
57
+ "special": true
58
+ },
59
+ "154827": {
60
+ "content": "<|user|>",
61
+ "single_word": false,
62
+ "lstrip": false,
63
+ "rstrip": false,
64
+ "normalized": false,
65
+ "special": true
66
+ },
67
+ "154828": {
68
+ "content": "<|assistant|>",
69
+ "single_word": false,
70
+ "lstrip": false,
71
+ "rstrip": false,
72
+ "normalized": false,
73
+ "special": true
74
+ },
75
+ "154829": {
76
+ "content": "<|observation|>",
77
+ "single_word": false,
78
+ "lstrip": false,
79
+ "rstrip": false,
80
+ "normalized": false,
81
+ "special": true
82
+ },
83
+ "154830": {
84
+ "content": "<|begin_of_image|>",
85
+ "single_word": false,
86
+ "lstrip": false,
87
+ "rstrip": false,
88
+ "normalized": false,
89
+ "special": true
90
+ },
91
+ "154831": {
92
+ "content": "<|end_of_image|>",
93
+ "single_word": false,
94
+ "lstrip": false,
95
+ "rstrip": false,
96
+ "normalized": false,
97
+ "special": true
98
+ },
99
+ "154832": {
100
+ "content": "<|begin_of_video|>",
101
+ "single_word": false,
102
+ "lstrip": false,
103
+ "rstrip": false,
104
+ "normalized": false,
105
+ "special": true
106
+ },
107
+ "154833": {
108
+ "content": "<|end_of_video|>",
109
+ "single_word": false,
110
+ "lstrip": false,
111
+ "rstrip": false,
112
+ "normalized": false,
113
+ "special": true
114
+ },
115
+ "154834": {
116
+ "content": "<|begin_of_audio|>",
117
+ "single_word": false,
118
+ "lstrip": false,
119
+ "rstrip": false,
120
+ "normalized": false,
121
+ "special": true
122
+ },
123
+ "154835": {
124
+ "content": "<|end_of_audio|>",
125
+ "single_word": false,
126
+ "lstrip": false,
127
+ "rstrip": false,
128
+ "normalized": false,
129
+ "special": true
130
+ },
131
+ "154836": {
132
+ "content": "<|begin_of_transcription|>",
133
+ "single_word": false,
134
+ "lstrip": false,
135
+ "rstrip": false,
136
+ "normalized": false,
137
+ "special": true
138
+ },
139
+ "154837": {
140
+ "content": "<|end_of_transcription|>",
141
+ "single_word": false,
142
+ "lstrip": false,
143
+ "rstrip": false,
144
+ "normalized": false,
145
+ "special": true
146
+ },
147
+ "154838": {
148
+ "content": "<|code_prefix|>",
149
+ "single_word": false,
150
+ "lstrip": false,
151
+ "rstrip": false,
152
+ "normalized": false,
153
+ "special": false
154
+ },
155
+ "154839": {
156
+ "content": "<|code_middle|>",
157
+ "single_word": false,
158
+ "lstrip": false,
159
+ "rstrip": false,
160
+ "normalized": false,
161
+ "special": false
162
+ },
163
+ "154840": {
164
+ "content": "<|code_suffix|>",
165
+ "single_word": false,
166
+ "lstrip": false,
167
+ "rstrip": false,
168
+ "normalized": false,
169
+ "special": false
170
+ },
171
+ "154841": {
172
+ "content": "<think>",
173
+ "single_word": false,
174
+ "lstrip": false,
175
+ "rstrip": false,
176
+ "normalized": false,
177
+ "special": false
178
+ },
179
+ "154842": {
180
+ "content": "</think>",
181
+ "single_word": false,
182
+ "lstrip": false,
183
+ "rstrip": false,
184
+ "normalized": false,
185
+ "special": false
186
+ },
187
+ "154843": {
188
+ "content": "<tool_call>",
189
+ "single_word": false,
190
+ "lstrip": false,
191
+ "rstrip": false,
192
+ "normalized": false,
193
+ "special": false
194
+ },
195
+ "154844": {
196
+ "content": "</tool_call>",
197
+ "single_word": false,
198
+ "lstrip": false,
199
+ "rstrip": false,
200
+ "normalized": false,
201
+ "special": false
202
+ },
203
+ "154845": {
204
+ "content": "<tool_response>",
205
+ "single_word": false,
206
+ "lstrip": false,
207
+ "rstrip": false,
208
+ "normalized": false,
209
+ "special": false
210
+ },
211
+ "154846": {
212
+ "content": "</tool_response>",
213
+ "single_word": false,
214
+ "lstrip": false,
215
+ "rstrip": false,
216
+ "normalized": false,
217
+ "special": false
218
+ },
219
+ "154847": {
220
+ "content": "<arg_key>",
221
+ "single_word": false,
222
+ "lstrip": false,
223
+ "rstrip": false,
224
+ "normalized": false,
225
+ "special": false
226
+ },
227
+ "154848": {
228
+ "content": "</arg_key>",
229
+ "single_word": false,
230
+ "lstrip": false,
231
+ "rstrip": false,
232
+ "normalized": false,
233
+ "special": false
234
+ },
235
+ "154849": {
236
+ "content": "<arg_value>",
237
+ "single_word": false,
238
+ "lstrip": false,
239
+ "rstrip": false,
240
+ "normalized": false,
241
+ "special": false
242
+ },
243
+ "154850": {
244
+ "content": "</arg_value>",
245
+ "single_word": false,
246
+ "lstrip": false,
247
+ "rstrip": false,
248
+ "normalized": false,
249
+ "special": false
250
+ },
251
+ "154851": {
252
+ "content": "/nothink",
253
+ "single_word": false,
254
+ "lstrip": false,
255
+ "rstrip": false,
256
+ "normalized": false,
257
+ "special": false
258
+ },
259
+ "154852": {
260
+ "content": "<|begin_of_box|>",
261
+ "single_word": false,
262
+ "lstrip": false,
263
+ "rstrip": false,
264
+ "normalized": false,
265
+ "special": false
266
+ },
267
+ "154853": {
268
+ "content": "<|end_of_box|>",
269
+ "single_word": false,
270
+ "lstrip": false,
271
+ "rstrip": false,
272
+ "normalized": false,
273
+ "special": false
274
+ },
275
+ "154854": {
276
+ "content": "<|image|>",
277
+ "single_word": false,
278
+ "lstrip": false,
279
+ "rstrip": false,
280
+ "normalized": false,
281
+ "special": false
282
+ },
283
+ "154855": {
284
+ "content": "<|video|>",
285
+ "single_word": false,
286
+ "lstrip": false,
287
+ "rstrip": false,
288
+ "normalized": false,
289
+ "special": false
290
+ }
291
+ },
292
+ "additional_special_tokens": [
293
+ "<|endoftext|>",
294
+ "[MASK]",
295
+ "[gMASK]",
296
+ "[sMASK]",
297
+ "<sop>",
298
+ "<eop>",
299
+ "<|system|>",
300
+ "<|user|>",
301
+ "<|assistant|>",
302
+ "<|observation|>",
303
+ "<|begin_of_image|>",
304
+ "<|end_of_image|>",
305
+ "<|begin_of_video|>",
306
+ "<|end_of_video|>",
307
+ "<|begin_of_audio|>",
308
+ "<|end_of_audio|>",
309
+ "<|begin_of_transcription|>",
310
+ "<|end_of_transcription|>"
311
+ ],
312
+ "clean_up_tokenization_spaces": false,
313
+ "do_lower_case": false,
314
+ "eos_token": "<|endoftext|>",
315
+ "extra_special_tokens": {},
316
+ "model_max_length": 128000,
317
+ "pad_token": "<|endoftext|>",
318
+ "padding_side": "left",
319
+ "remove_space": false,
320
+ "tokenizer_class": "PreTrainedTokenizer"
321
+ }