tpoisonooo commited on
Commit
63deeff
·
verified ·
1 Parent(s): f261311

Upload folder using huggingface_hub

Browse files
added_tokens.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 73443,
3
+ "<tool_call>": 73442,
4
+ "<|fim_middle|>": 73446,
5
+ "<|fim_prefix|>": 73445,
6
+ "<|fim_suffix|>": 73447,
7
+ "<|im_end|>": 73440,
8
+ "<|im_sep|>": 73444,
9
+ "<|im_start|>": 73441
10
+ }
chat_template.jinja ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {%- set tool_definitions %}
3
+ {{- "# Tools\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
4
+ {%- for tool in tools %}
5
+ {{- "\n" }}
6
+ {{- tool | tojson(ensure_ascii=False) }}
7
+ {%- endfor %}
8
+ {{- '\n</tools>\n\nTool usage guidelines:\n- You may call zero or more functions. If no function calls are needed, just answer normally and do not include any <function ... </function>.\n- When calling a function, return an XML object within <function ... </function> using:\n<function name="function-name"><param name="param-name">param-value</param></function>\n- param-value may be multi-line. If it contains <, & or newline characters, wrap it in a CDATA block: <param name="param-name"><![CDATA[...multi-line value...]]></param>' }}
9
+ {%- endset %}
10
+
11
+ {{- '<|im_start|>system\n' }}
12
+ {%- if messages[0].role == 'system' %}
13
+ {%- if '<tool_def_sep>' in messages[0].content %}
14
+ {{- messages[0].content.replace('<tool_def_sep>', tool_definitions) }}
15
+ {%- else %}
16
+ {{- messages[0].content + '\n\n' + tool_definitions }}
17
+ {%- endif %}
18
+ {%- else %}
19
+ {{- tool_definitions.lstrip() }}
20
+ {%- endif %}
21
+ {{- '<|im_end|>\n' }}
22
+ {%- else %}
23
+ {%- if messages[0].role == 'system' %}
24
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
25
+ {%- endif %}
26
+ {%- endif %}
27
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
28
+ {%- for message in messages[::-1] %}
29
+ {%- set index = (messages|length - 1) - loop.index0 %}
30
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
31
+ {%- set ns.multi_step_tool = false %}
32
+ {%- set ns.last_query_index = index %}
33
+ {%- endif %}
34
+ {%- endfor %}
35
+ {%- for message in messages %}
36
+ {%- if message.content is string %}
37
+ {%- set content = message.content %}
38
+ {%- else %}
39
+ {%- set content = '' %}
40
+ {%- endif %}
41
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
42
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
43
+ {%- elif message.role == "assistant" %}
44
+ {%- set reasoning_content = '' %}
45
+ {%- if message.reasoning_content is string %}
46
+ {%- set reasoning_content = message.reasoning_content %}
47
+ {%- else %}
48
+ {%- if '</think>' in content %}
49
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
50
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
51
+ {%- endif %}
52
+ {%- endif %}
53
+
54
+ {%- if message.tool_calls %}
55
+ {%- set content_parts = content.split('<tool_sep>') %}
56
+ {%- set processed_content = content_parts[0] %}
57
+ {%- set tool_calls_count = message.tool_calls|length %}
58
+ {%- set tool_sep_count = content_parts|length - 1 %}
59
+ {%- set min_count = [tool_calls_count, tool_sep_count]|min %}
60
+
61
+ {%- for i in range(1, content_parts|length) %}
62
+ {%- set tool_index = i - 1 %}
63
+ {%- if tool_index < tool_calls_count %}
64
+ {%- set tool_call = message.tool_calls[tool_index] %}
65
+ {%- if tool_call.function %}
66
+ {%- set tool_call = tool_call.function %}
67
+ {%- endif %}
68
+ {%- set single_tool_xml %}
69
+ {{- '<function name="' ~ tool_call.name ~ '">' }}
70
+ {%- if tool_call.arguments %}
71
+ {%- set args_dict = tool_call.arguments %}
72
+ {%- for param_name, param_value in args_dict.items() %}
73
+ {{- '<param name="' ~ param_name ~ '">' }}
74
+ {%- if param_value is string and ('<' in param_value or '&' in param_value or '\n' in param_value) %}
75
+ {{- '<![CDATA[' + param_value + ']]>' }}
76
+ {%- else %}
77
+ {{- param_value }}
78
+ {%- endif %}
79
+ {{- '</param>' }}
80
+ {%- endfor %}
81
+ {%- endif %}
82
+ {{- '</function>' }}
83
+ {%- endset %}
84
+ {%- set processed_content = processed_content + single_tool_xml + content_parts[i] %}
85
+ {%- else %}
86
+ {%- set processed_content = processed_content + content_parts[i] %}
87
+ {%- endif %}
88
+ {%- endfor %}
89
+
90
+ {%- if tool_calls_count > tool_sep_count %}
91
+ {%- for remaining_index in range(tool_sep_count, tool_calls_count) %}
92
+ {%- set tool_call = message.tool_calls[remaining_index] %}
93
+ {%- if tool_call.function %}
94
+ {%- set tool_call = tool_call.function %}
95
+ {%- endif %}
96
+ {%- set remaining_tool_xml %}
97
+ {{- '<function name="' ~ tool_call.name ~ '">' }}
98
+ {%- if tool_call.arguments %}
99
+ {%- set args_dict = tool_call.arguments %}
100
+ {%- for param_name, param_value in args_dict.items() %}
101
+ {{- '<param name="' ~ param_name ~ '">' }}
102
+ {%- if param_value is string and ('<' in param_value or '&' in param_value or '\n' in param_value) %}
103
+ {{- '<![CDATA[' + param_value + ']]>' }}
104
+ {%- else %}
105
+ {{- param_value }}
106
+ {%- endif %}
107
+ {{- '</param>' }}
108
+ {%- endfor %}
109
+ {%- endif %}
110
+ {{- '</function>' }}
111
+ {%- endset %}
112
+ {%- set processed_content = processed_content + remaining_tool_xml %}
113
+ {%- endfor %}
114
+ {%- endif %}
115
+
116
+ {%- set content = processed_content %}
117
+ {%- endif %}
118
+
119
+ {%- if loop.index0 > ns.last_query_index %}
120
+ {%- if reasoning_content %}
121
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
122
+ {%- else %}
123
+ {{- '<|im_start|>' + message.role + '\n' + content }}
124
+ {%- endif %}
125
+ {%- else %}
126
+ {{- '<|im_start|>' + message.role + '\n' + content }}
127
+ {%- endif %}
128
+
129
+ {%- if message.tool_calls and not has_tool_sep %}
130
+ {%- for tool_call in message.tool_calls %}
131
+ {%- if (loop.first and content) or (not loop.first) %}
132
+ {{- '\n' }}
133
+ {%- endif %}
134
+ {%- if tool_call.function %}
135
+ {%- set tool_call = tool_call.function %}
136
+ {%- endif %}
137
+ {{- '<function name="' ~ tool_call.name ~ '">' }}
138
+ {%- if tool_call.arguments %}
139
+ {%- set args_dict = tool_call.arguments %}
140
+ {%- for param_name, param_value in args_dict.items() %}
141
+ {{- '<param name="' ~ param_name ~ '">' }}
142
+ {%- if param_value is string and ('<' in param_value or '&' in param_value or '\n' in param_value) %}
143
+ {{- '<![CDATA[' + param_value + ']]>' }}
144
+ {%- else %}
145
+ {{- param_value }}
146
+ {%- endif %}
147
+ {{- '</param>' }}
148
+ {%- endfor %}
149
+ {%- endif %}
150
+ {{- '</function>' }}
151
+ {%- endfor %}
152
+ {%- endif %}
153
+ {{- '<|im_end|>\n' }}
154
+ {%- elif message.role == "tool" %}
155
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
156
+ {{- '<|im_start|>user' }}
157
+ {%- endif %}
158
+ {{- '\n<tool_response>\n' }}
159
+ {%- if message.content is string %}
160
+ {{- content }}
161
+ {%- else %}
162
+ {{- message.content | tojson(ensure_ascii=False) }}
163
+ {%- endif %}
164
+ {{- '\n</tool_response>' }}
165
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
166
+ {{- '<|im_end|>\n' }}
167
+ {%- endif %}
168
+ {%- endif %}
169
+ {%- endfor %}
170
+ {%- if add_generation_prompt %}
171
+ {{- '<|im_start|>assistant\n' }}
172
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "MiniCPMSALAForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attn_use_output_gate": true,
8
+ "attn_use_rope": false,
9
+ "auto_map": {
10
+ "AutoConfig": "configuration_minicpm_sala.MiniCPMSALAConfig",
11
+ "AutoModel": "modeling_minicpm_sala.MiniCPMSALAModel",
12
+ "AutoModelForCausalLM": "modeling_minicpm_sala.MiniCPMSALAForCausalLM",
13
+ "AutoModelForSeq2SeqLM": "modeling_minicpm_sala.MiniCPMSALAForCausalLM",
14
+ "AutoModelForSequenceClassification": "modeling_minicpm_sala.MiniCPMSALAForSequenceClassification"
15
+ },
16
+ "bos_token_id": 1,
17
+ "dim_model_base": 256,
18
+ "dtype": "bfloat16",
19
+ "eos_token_id": [
20
+ 2,
21
+ 73440
22
+ ],
23
+ "head_dim": 128,
24
+ "hidden_act": "silu",
25
+ "hidden_size": 4096,
26
+ "initializer_range": 0.1,
27
+ "intermediate_size": 16384,
28
+ "lightning_head_dim": 128,
29
+ "lightning_nh": 32,
30
+ "lightning_nkv": 32,
31
+ "lightning_scale": "1/sqrt(d)",
32
+ "lightning_use_rope": true,
33
+ "max_position_embeddings": 524288,
34
+ "mixer_types": [
35
+ "minicpm4",
36
+ "lightning-attn",
37
+ "lightning-attn",
38
+ "lightning-attn",
39
+ "lightning-attn",
40
+ "lightning-attn",
41
+ "lightning-attn",
42
+ "lightning-attn",
43
+ "lightning-attn",
44
+ "minicpm4",
45
+ "lightning-attn",
46
+ "lightning-attn",
47
+ "lightning-attn",
48
+ "lightning-attn",
49
+ "lightning-attn",
50
+ "lightning-attn",
51
+ "minicpm4",
52
+ "minicpm4",
53
+ "lightning-attn",
54
+ "lightning-attn",
55
+ "lightning-attn",
56
+ "lightning-attn",
57
+ "minicpm4",
58
+ "lightning-attn",
59
+ "lightning-attn",
60
+ "lightning-attn",
61
+ "lightning-attn",
62
+ "lightning-attn",
63
+ "lightning-attn",
64
+ "minicpm4",
65
+ "minicpm4",
66
+ "minicpm4"
67
+ ],
68
+ "model_type": "minicpm_sala",
69
+ "mup_denominator": 32,
70
+ "num_attention_heads": 32,
71
+ "num_hidden_layers": 32,
72
+ "num_key_value_heads": 2,
73
+ "pad_token_id": 2,
74
+ "pretraining_tp": 1,
75
+ "qk_norm": true,
76
+ "quantization_config": {
77
+ "bits": 4,
78
+ "checkpoint_format": "gptq",
79
+ "desc_act": false,
80
+ "dynamic": {
81
+ "+:model\\.model\\.layers\\.0\\..*": {
82
+ "bits": 8
83
+ }
84
+ },
85
+ "format": "gptq",
86
+ "group_size": 128,
87
+ "lm_head": false,
88
+ "meta": {
89
+ "act_group_aware": true,
90
+ "auto_forward_data_parallel": true,
91
+ "damp_auto_increment": 0.01,
92
+ "damp_percent": 0.05,
93
+ "failsafe": {
94
+ "smooth": {
95
+ "group_size_threshold": 128,
96
+ "k": 2.75,
97
+ "type": "mad"
98
+ },
99
+ "strategy": "rtn",
100
+ "threshold": "0.5%"
101
+ },
102
+ "gc_mode": "interval",
103
+ "gptaq": null,
104
+ "hessian": {
105
+ "chunk_bytes": null,
106
+ "chunk_size": null,
107
+ "staging_dtype": "float32"
108
+ },
109
+ "mock_quantization": false,
110
+ "mse": 0.0,
111
+ "offload_to_disk": true,
112
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
113
+ "pack_impl": "cpu",
114
+ "quantizer": [
115
+ "gptqmodel:5.7.0"
116
+ ],
117
+ "static_groups": false,
118
+ "true_sequential": true,
119
+ "uri": "https://github.com/modelcloud/gptqmodel",
120
+ "vram_strategy": "exclusive",
121
+ "wait_for_submodule_finalizers": false
122
+ },
123
+ "pack_dtype": "int32",
124
+ "quant_method": "gptq",
125
+ "sym": true
126
+ },
127
+ "rms_norm_eps": 1e-06,
128
+ "rope_scaling": null,
129
+ "rope_theta": 10000.0,
130
+ "scale_depth": 1.4,
131
+ "scale_emb": 12,
132
+ "shift_labels": true,
133
+ "sparse_config": {
134
+ "block_size": 64,
135
+ "dense_len": 8192,
136
+ "init_blocks": 1,
137
+ "kernel_size": 32,
138
+ "kernel_stride": 16,
139
+ "topk": 64,
140
+ "use_nope": false,
141
+ "window_size": 2048
142
+ },
143
+ "tie_word_embeddings": false,
144
+ "transformers_version": "4.57.1",
145
+ "use_cache": true,
146
+ "use_output_gate": true,
147
+ "use_output_norm": true,
148
+ "vocab_size": 73448
149
+ }
configuration_minicpm_sala.py ADDED
@@ -0,0 +1,260 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2025 The OpenBMB Team. All rights reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """MiniCPMSALA model configuration"""
16
+
17
+ from typing import List, Optional
18
+ from transformers.configuration_utils import PretrainedConfig
19
+ from transformers.utils import logging
20
+
21
+ logger = logging.get_logger(__name__)
22
+
23
+ MINICPMSALA_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
24
+
25
+
26
+ class MiniCPMSALAConfig(PretrainedConfig):
27
+ r"""
28
+ This is the configuration class to store the configuration of a [`MiniCPMSALAModel`]. It is used to instantiate an MiniCPMSALA
29
+ model according to the specified arguments, defining the model architecture.
30
+
31
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
32
+ documentation from [`PretrainedConfig`] for more information.
33
+
34
+
35
+ Args:
36
+ vocab_size (`int`, *optional*, defaults to 32000):
37
+ Vocabulary size of the MiniCPMSALA model. Defines the number of different tokens that can be represented by the
38
+ `inputs_ids` passed when calling [`MiniCPMSALAModel`]
39
+ hidden_size (`int`, *optional*, defaults to 4096):
40
+ Dimension of the hidden representations.
41
+ intermediate_size (`int`, *optional*, defaults to 11008):
42
+ Dimension of the MLP representations.
43
+ num_hidden_layers (`int`, *optional*, defaults to 32):
44
+ Number of hidden layers in the Transformer decoder.
45
+ num_attention_heads (`int`, *optional*, defaults to 32):
46
+ Number of attention heads for each attention layer in the Transformer decoder.
47
+ num_key_value_heads (`int`, *optional*):
48
+ This is the number of key_value heads that should be used to implement Grouped Query Attention. If
49
+ `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
50
+ `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
51
+ converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
52
+ by meanpooling all the original heads within that group. For more details checkout [this
53
+ paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
54
+ `num_attention_heads`.
55
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
56
+ The non-linear activation function (function or string) in the decoder.
57
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
58
+ The maximum sequence length that this model might ever be used with. MiniCPMSALA supports up to 524288 tokens.
59
+ initializer_range (`float`, *optional*, defaults to 0.02):
60
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
61
+ rms_norm_eps (`float`, *optional*, defaults to 1e-06):
62
+ The epsilon used by the rms normalization layers.
63
+ use_cache (`bool`, *optional*, defaults to `True`):
64
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
65
+ relevant if `config.is_decoder=True`.
66
+ pad_token_id (`int`, *optional*):
67
+ Padding token id.
68
+ bos_token_id (`int`, *optional*, defaults to 1):
69
+ Beginning of stream token id.
70
+ eos_token_id (`int`, *optional*, defaults to 2):
71
+ End of stream token id.
72
+ pretraining_tp (`int`, *optional*, defaults to 1):
73
+ Experimental feature. Tensor parallelism rank used during pretraining. Please refer to [this
74
+ document](https://huggingface.co/docs/transformers/parallelism) to understand more about it. This value is
75
+ necessary to ensure exact reproducibility of the pretraining results. Please refer to [this
76
+ issue](https://github.com/pytorch/pytorch/issues/76232).
77
+ tie_word_embeddings (`bool`, *optional*, defaults to `False`):
78
+ Whether to tie weight embeddings
79
+ rope_theta (`float`, *optional*, defaults to 10000.0):
80
+ The base period of the RoPE embeddings.
81
+ rope_scaling (`Dict`, *optional*):
82
+ Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
83
+ strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
84
+ `{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
85
+ `max_position_embeddings` to the expected new maximum. See the following thread for more information on how
86
+ these scaling strategies behave:
87
+ https://www.reddit.com/r/LocalMiniCPM/comments/14mrgpr/dynamically_scaled_rope_further_increases/. This is an
88
+ experimental feature, subject to breaking API changes in future versions.
89
+ attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
90
+ Whether to use a bias in the query, key, value and output projection layers during self-attention.
91
+ attention_dropout (`float`, *optional*, defaults to 0.0):
92
+ The dropout ratio for the attention probabilities.
93
+
94
+ ```python
95
+ >>> from transformers import MiniCPMSALAModel, MiniCPMSALAConfig
96
+
97
+ >>> # Initializing a MiniCPMSALA style configuration
98
+ >>> configuration = MiniCPMSALAConfig()
99
+
100
+ >>> # Initializing a model from the minicpm_sala style configuration
101
+ >>> model = MiniCPMSALAModel(configuration)
102
+
103
+ >>> # Accessing the model configuration
104
+ >>> configuration = model.config
105
+ ```"""
106
+
107
+ model_type = "minicpm_sala"
108
+ keys_to_ignore_at_inference = ["past_key_values"]
109
+
110
+ def __init__(
111
+ self,
112
+ vocab_size=32000,
113
+ hidden_size=4096,
114
+ intermediate_size=11008,
115
+ num_hidden_layers=32,
116
+ num_attention_heads=32,
117
+ num_key_value_heads=None,
118
+ hidden_act="silu",
119
+ max_position_embeddings=2048,
120
+ initializer_range=0.02,
121
+ rms_norm_eps=1e-6,
122
+ use_cache=True,
123
+ pad_token_id=None,
124
+ bos_token_id=1,
125
+ eos_token_id=2,
126
+ pretraining_tp=1,
127
+ tie_word_embeddings=True,
128
+ rope_theta=10000.0,
129
+ rope_scaling=None,
130
+ attention_bias=False,
131
+ attention_dropout=0.0,
132
+ scale_emb=1,
133
+ dim_model_base=1,
134
+ scale_depth=1,
135
+ mup_denominator=32,
136
+ sparse_config=None,
137
+ mixer_types: List[str] = ["minicpm4"],
138
+ head_dim: Optional[int] = None,
139
+ use_output_gate: bool = False,
140
+ use_output_norm: bool = False,
141
+ lightning_use_rope: bool = True,
142
+ lightning_nkv: Optional[int] = None,
143
+ lightning_nh: Optional[int] = None,
144
+ qk_norm: bool = False,
145
+ lightning_head_dim: Optional[int] = None,
146
+ rand_init: bool = False,
147
+ train_mlp: bool = True,
148
+ attn_use_rope: bool = True,
149
+ lightning_scale: str = "1/sqrt(d)",
150
+ shift_labels: bool = True,
151
+ attn_use_output_gate: bool = False,
152
+ **kwargs,
153
+ ):
154
+
155
+ self.vocab_size = vocab_size
156
+ self.max_position_embeddings = max_position_embeddings
157
+ self.hidden_size = hidden_size
158
+ self.intermediate_size = intermediate_size
159
+ self.num_hidden_layers = num_hidden_layers
160
+ self.num_attention_heads = num_attention_heads
161
+
162
+ # for backward compatibility
163
+ if num_key_value_heads is None:
164
+ num_key_value_heads = num_attention_heads
165
+
166
+ self.num_key_value_heads = num_key_value_heads
167
+ self.hidden_act = hidden_act
168
+ self.initializer_range = initializer_range
169
+ self.rms_norm_eps = rms_norm_eps
170
+ self.pretraining_tp = pretraining_tp
171
+ self.use_cache = use_cache
172
+ self.rope_theta = rope_theta
173
+ self.rope_scaling = rope_scaling
174
+ self.attention_bias = attention_bias
175
+ self.attention_dropout = attention_dropout
176
+ self.scale_emb = scale_emb
177
+ self.dim_model_base = dim_model_base
178
+ self.scale_depth = scale_depth
179
+ # only used for Eagle Head
180
+ self.mup_denominator = mup_denominator
181
+
182
+ # sparse config
183
+ self.sparse_config = sparse_config
184
+
185
+ self.mixer_types = mixer_types
186
+ if self.mixer_types is None or len(self.mixer_types) == 0:
187
+ # Default to MiniCPMSALA4 (full attention) for all layers
188
+ self.mixer_types = ["minicpm4"] * self.num_hidden_layers
189
+ elif len(self.mixer_types) < self.num_hidden_layers:
190
+ self.mixer_types = (mixer_types * self.num_hidden_layers)[
191
+ : self.num_hidden_layers
192
+ ]
193
+ elif len(self.mixer_types) == self.num_hidden_layers:
194
+ self.mixer_types = mixer_types
195
+ else:
196
+ raise ValueError(f"Invalid number of mixer types: {len(self.mixer_types)}")
197
+ assert len(self.mixer_types) == self.num_hidden_layers
198
+
199
+ # for Lightning
200
+ if head_dim is None:
201
+ head_dim = self.hidden_size // self.num_attention_heads
202
+ self.head_dim = head_dim
203
+ self.use_output_norm = use_output_norm
204
+ self.use_output_gate = use_output_gate
205
+ self.lightning_use_rope = lightning_use_rope
206
+ self.qk_norm = qk_norm
207
+ self.lightning_nkv = (
208
+ lightning_nkv if lightning_nkv is not None else self.num_key_value_heads
209
+ )
210
+ self.lightning_nh = (
211
+ lightning_nh if lightning_nh is not None else self.num_attention_heads
212
+ )
213
+ self.lightning_head_dim = (
214
+ lightning_head_dim if lightning_head_dim is not None else self.head_dim
215
+ )
216
+ self.lightning_scale = lightning_scale
217
+ self.attn_use_rope = attn_use_rope
218
+ self.shift_labels = shift_labels
219
+ self.attn_use_output_gate = attn_use_output_gate
220
+
221
+ super().__init__(
222
+ pad_token_id=pad_token_id,
223
+ bos_token_id=bos_token_id,
224
+ eos_token_id=eos_token_id,
225
+ tie_word_embeddings=tie_word_embeddings,
226
+ **kwargs,
227
+ )
228
+ try:
229
+ import flash_attn
230
+
231
+ self._attn_implementation = "flash_attention_2"
232
+ except ImportError:
233
+ pass
234
+
235
+ def _rope_scaling_validation(self):
236
+ """
237
+ Validate the `rope_scaling` configuration.
238
+ """
239
+ if self.rope_scaling is None:
240
+ return
241
+
242
+ if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) != 2:
243
+ raise ValueError(
244
+ "`rope_scaling` must be a dictionary with with two fields, `type` and `factor`, "
245
+ f"got {self.rope_scaling}"
246
+ )
247
+ rope_scaling_type = self.rope_scaling.get("type", None)
248
+ rope_scaling_factor = self.rope_scaling.get("factor", None)
249
+ if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]:
250
+ raise ValueError(
251
+ f"`rope_scaling`'s type field must be one of ['linear', 'dynamic'], got {rope_scaling_type}"
252
+ )
253
+ if (
254
+ rope_scaling_factor is None
255
+ or not isinstance(rope_scaling_factor, float)
256
+ or rope_scaling_factor <= 1.0
257
+ ):
258
+ raise ValueError(
259
+ f"`rope_scaling`'s factor field must be a float > 1, got {rope_scaling_factor}"
260
+ )
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 2,
7
+ 73440
8
+ ],
9
+ "pad_token_id": 2,
10
+ "transformers_version": "4.57.1"
11
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af4f142d7084555d9c8a23032bd900139e5d7ab482e7f9f38a6a81b6ec514f4d
3
+ size 4291529723
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d36cb4ee6f37dbbde767e1d819401d69e75b23efb7caa3c117925149af49a95f
3
+ size 2125112105
model.safetensors.index.json ADDED
@@ -0,0 +1,1098 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 6416641828
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00001-of-00002.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
18
+ "model.layers.0.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
19
+ "model.layers.0.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
20
+ "model.layers.0.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
21
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.0.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
23
+ "model.layers.0.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
24
+ "model.layers.0.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
25
+ "model.layers.0.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
26
+ "model.layers.0.self_attn.o_gate.g_idx": "model-00001-of-00002.safetensors",
27
+ "model.layers.0.self_attn.o_gate.qweight": "model-00001-of-00002.safetensors",
28
+ "model.layers.0.self_attn.o_gate.qzeros": "model-00001-of-00002.safetensors",
29
+ "model.layers.0.self_attn.o_gate.scales": "model-00001-of-00002.safetensors",
30
+ "model.layers.0.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
31
+ "model.layers.0.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
32
+ "model.layers.0.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
33
+ "model.layers.0.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
34
+ "model.layers.0.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
35
+ "model.layers.0.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
36
+ "model.layers.0.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
37
+ "model.layers.0.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
38
+ "model.layers.0.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
39
+ "model.layers.0.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
40
+ "model.layers.0.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
41
+ "model.layers.0.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
42
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.1.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
44
+ "model.layers.1.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
45
+ "model.layers.1.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
46
+ "model.layers.1.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
47
+ "model.layers.1.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
48
+ "model.layers.1.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
49
+ "model.layers.1.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
50
+ "model.layers.1.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
51
+ "model.layers.1.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
52
+ "model.layers.1.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
53
+ "model.layers.1.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
54
+ "model.layers.1.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
55
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.1.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
58
+ "model.layers.1.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
59
+ "model.layers.1.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
60
+ "model.layers.1.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
61
+ "model.layers.1.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.1.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
63
+ "model.layers.1.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
64
+ "model.layers.1.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
65
+ "model.layers.1.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
66
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.1.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
68
+ "model.layers.1.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
69
+ "model.layers.1.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
70
+ "model.layers.1.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
71
+ "model.layers.1.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
72
+ "model.layers.1.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
73
+ "model.layers.1.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
74
+ "model.layers.1.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
75
+ "model.layers.1.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.10.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
78
+ "model.layers.10.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
79
+ "model.layers.10.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
80
+ "model.layers.10.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
81
+ "model.layers.10.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
82
+ "model.layers.10.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
83
+ "model.layers.10.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
84
+ "model.layers.10.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
85
+ "model.layers.10.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
86
+ "model.layers.10.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
87
+ "model.layers.10.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
88
+ "model.layers.10.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
89
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.10.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
92
+ "model.layers.10.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
93
+ "model.layers.10.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
94
+ "model.layers.10.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
95
+ "model.layers.10.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.10.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
97
+ "model.layers.10.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
98
+ "model.layers.10.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
99
+ "model.layers.10.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
100
+ "model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.10.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
102
+ "model.layers.10.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
103
+ "model.layers.10.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
104
+ "model.layers.10.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
105
+ "model.layers.10.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
106
+ "model.layers.10.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
107
+ "model.layers.10.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
108
+ "model.layers.10.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
109
+ "model.layers.10.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.11.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
112
+ "model.layers.11.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
113
+ "model.layers.11.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
114
+ "model.layers.11.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
115
+ "model.layers.11.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
116
+ "model.layers.11.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
117
+ "model.layers.11.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
118
+ "model.layers.11.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
119
+ "model.layers.11.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
120
+ "model.layers.11.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
121
+ "model.layers.11.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
122
+ "model.layers.11.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
123
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.11.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
126
+ "model.layers.11.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
127
+ "model.layers.11.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
128
+ "model.layers.11.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
129
+ "model.layers.11.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.11.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
131
+ "model.layers.11.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
132
+ "model.layers.11.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
133
+ "model.layers.11.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
134
+ "model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
135
+ "model.layers.11.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
136
+ "model.layers.11.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
137
+ "model.layers.11.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
138
+ "model.layers.11.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
139
+ "model.layers.11.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
140
+ "model.layers.11.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
141
+ "model.layers.11.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
142
+ "model.layers.11.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
143
+ "model.layers.11.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.12.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
146
+ "model.layers.12.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
147
+ "model.layers.12.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
148
+ "model.layers.12.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
149
+ "model.layers.12.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
150
+ "model.layers.12.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
151
+ "model.layers.12.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
152
+ "model.layers.12.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
153
+ "model.layers.12.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
154
+ "model.layers.12.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
155
+ "model.layers.12.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
156
+ "model.layers.12.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
157
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.12.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
160
+ "model.layers.12.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
161
+ "model.layers.12.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
162
+ "model.layers.12.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
163
+ "model.layers.12.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.12.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
165
+ "model.layers.12.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
166
+ "model.layers.12.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
167
+ "model.layers.12.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
168
+ "model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
169
+ "model.layers.12.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
170
+ "model.layers.12.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
171
+ "model.layers.12.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
172
+ "model.layers.12.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
173
+ "model.layers.12.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
174
+ "model.layers.12.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
175
+ "model.layers.12.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
176
+ "model.layers.12.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
177
+ "model.layers.12.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
178
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
179
+ "model.layers.13.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
180
+ "model.layers.13.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
181
+ "model.layers.13.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
182
+ "model.layers.13.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
183
+ "model.layers.13.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
184
+ "model.layers.13.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
185
+ "model.layers.13.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
186
+ "model.layers.13.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
187
+ "model.layers.13.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
188
+ "model.layers.13.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
189
+ "model.layers.13.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
190
+ "model.layers.13.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
191
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
192
+ "model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
193
+ "model.layers.13.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
194
+ "model.layers.13.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
195
+ "model.layers.13.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
196
+ "model.layers.13.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
197
+ "model.layers.13.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.13.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
199
+ "model.layers.13.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
200
+ "model.layers.13.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
201
+ "model.layers.13.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
202
+ "model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
203
+ "model.layers.13.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
204
+ "model.layers.13.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
205
+ "model.layers.13.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
206
+ "model.layers.13.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
207
+ "model.layers.13.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
208
+ "model.layers.13.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
209
+ "model.layers.13.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
210
+ "model.layers.13.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
211
+ "model.layers.13.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
212
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
213
+ "model.layers.14.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
214
+ "model.layers.14.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
215
+ "model.layers.14.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
216
+ "model.layers.14.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
217
+ "model.layers.14.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
218
+ "model.layers.14.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
219
+ "model.layers.14.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
220
+ "model.layers.14.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
221
+ "model.layers.14.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
222
+ "model.layers.14.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
223
+ "model.layers.14.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
224
+ "model.layers.14.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
225
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
226
+ "model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
227
+ "model.layers.14.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
228
+ "model.layers.14.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
229
+ "model.layers.14.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
230
+ "model.layers.14.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
231
+ "model.layers.14.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
232
+ "model.layers.14.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
233
+ "model.layers.14.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
234
+ "model.layers.14.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
235
+ "model.layers.14.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
236
+ "model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
237
+ "model.layers.14.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
238
+ "model.layers.14.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
239
+ "model.layers.14.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
240
+ "model.layers.14.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
241
+ "model.layers.14.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
242
+ "model.layers.14.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
243
+ "model.layers.14.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
244
+ "model.layers.14.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
245
+ "model.layers.14.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
246
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
247
+ "model.layers.15.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
248
+ "model.layers.15.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
249
+ "model.layers.15.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
250
+ "model.layers.15.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
251
+ "model.layers.15.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
252
+ "model.layers.15.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
253
+ "model.layers.15.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
254
+ "model.layers.15.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
255
+ "model.layers.15.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
256
+ "model.layers.15.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
257
+ "model.layers.15.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
258
+ "model.layers.15.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
259
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
260
+ "model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
261
+ "model.layers.15.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
262
+ "model.layers.15.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
263
+ "model.layers.15.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
264
+ "model.layers.15.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
265
+ "model.layers.15.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
266
+ "model.layers.15.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
267
+ "model.layers.15.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
268
+ "model.layers.15.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
269
+ "model.layers.15.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
270
+ "model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
271
+ "model.layers.15.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
272
+ "model.layers.15.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
273
+ "model.layers.15.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
274
+ "model.layers.15.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
275
+ "model.layers.15.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
276
+ "model.layers.15.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
277
+ "model.layers.15.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
278
+ "model.layers.15.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
279
+ "model.layers.15.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
280
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
281
+ "model.layers.16.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
282
+ "model.layers.16.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
283
+ "model.layers.16.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
284
+ "model.layers.16.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
285
+ "model.layers.16.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
286
+ "model.layers.16.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
287
+ "model.layers.16.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
288
+ "model.layers.16.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
289
+ "model.layers.16.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
290
+ "model.layers.16.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
291
+ "model.layers.16.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
292
+ "model.layers.16.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
293
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
294
+ "model.layers.16.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
295
+ "model.layers.16.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
296
+ "model.layers.16.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
297
+ "model.layers.16.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
298
+ "model.layers.16.self_attn.o_gate.g_idx": "model-00001-of-00002.safetensors",
299
+ "model.layers.16.self_attn.o_gate.qweight": "model-00001-of-00002.safetensors",
300
+ "model.layers.16.self_attn.o_gate.qzeros": "model-00001-of-00002.safetensors",
301
+ "model.layers.16.self_attn.o_gate.scales": "model-00001-of-00002.safetensors",
302
+ "model.layers.16.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
303
+ "model.layers.16.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
304
+ "model.layers.16.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
305
+ "model.layers.16.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
306
+ "model.layers.16.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
307
+ "model.layers.16.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
308
+ "model.layers.16.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
309
+ "model.layers.16.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
310
+ "model.layers.16.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
311
+ "model.layers.16.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
312
+ "model.layers.16.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
313
+ "model.layers.16.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
314
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
315
+ "model.layers.17.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
316
+ "model.layers.17.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
317
+ "model.layers.17.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
318
+ "model.layers.17.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
319
+ "model.layers.17.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
320
+ "model.layers.17.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
321
+ "model.layers.17.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
322
+ "model.layers.17.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
323
+ "model.layers.17.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
324
+ "model.layers.17.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
325
+ "model.layers.17.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
326
+ "model.layers.17.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
327
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
328
+ "model.layers.17.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
329
+ "model.layers.17.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
330
+ "model.layers.17.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
331
+ "model.layers.17.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
332
+ "model.layers.17.self_attn.o_gate.g_idx": "model-00002-of-00002.safetensors",
333
+ "model.layers.17.self_attn.o_gate.qweight": "model-00002-of-00002.safetensors",
334
+ "model.layers.17.self_attn.o_gate.qzeros": "model-00002-of-00002.safetensors",
335
+ "model.layers.17.self_attn.o_gate.scales": "model-00002-of-00002.safetensors",
336
+ "model.layers.17.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
337
+ "model.layers.17.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
338
+ "model.layers.17.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
339
+ "model.layers.17.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
340
+ "model.layers.17.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
341
+ "model.layers.17.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
342
+ "model.layers.17.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
343
+ "model.layers.17.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
344
+ "model.layers.17.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
345
+ "model.layers.17.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
346
+ "model.layers.17.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
347
+ "model.layers.17.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
348
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
349
+ "model.layers.18.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
350
+ "model.layers.18.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
351
+ "model.layers.18.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
352
+ "model.layers.18.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
353
+ "model.layers.18.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
354
+ "model.layers.18.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
355
+ "model.layers.18.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
356
+ "model.layers.18.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
357
+ "model.layers.18.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
358
+ "model.layers.18.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
359
+ "model.layers.18.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
360
+ "model.layers.18.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
361
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
362
+ "model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
363
+ "model.layers.18.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
364
+ "model.layers.18.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
365
+ "model.layers.18.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
366
+ "model.layers.18.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
367
+ "model.layers.18.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
368
+ "model.layers.18.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
369
+ "model.layers.18.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
370
+ "model.layers.18.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
371
+ "model.layers.18.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
372
+ "model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
373
+ "model.layers.18.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
374
+ "model.layers.18.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
375
+ "model.layers.18.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
376
+ "model.layers.18.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
377
+ "model.layers.18.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
378
+ "model.layers.18.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
379
+ "model.layers.18.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
380
+ "model.layers.18.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
381
+ "model.layers.18.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
382
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
383
+ "model.layers.19.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
384
+ "model.layers.19.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
385
+ "model.layers.19.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
386
+ "model.layers.19.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
387
+ "model.layers.19.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
388
+ "model.layers.19.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
389
+ "model.layers.19.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
390
+ "model.layers.19.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
391
+ "model.layers.19.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
392
+ "model.layers.19.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
393
+ "model.layers.19.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
394
+ "model.layers.19.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
395
+ "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
396
+ "model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
397
+ "model.layers.19.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
398
+ "model.layers.19.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
399
+ "model.layers.19.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
400
+ "model.layers.19.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
401
+ "model.layers.19.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
402
+ "model.layers.19.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
403
+ "model.layers.19.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
404
+ "model.layers.19.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
405
+ "model.layers.19.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
406
+ "model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
407
+ "model.layers.19.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
408
+ "model.layers.19.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
409
+ "model.layers.19.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
410
+ "model.layers.19.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
411
+ "model.layers.19.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
412
+ "model.layers.19.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
413
+ "model.layers.19.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
414
+ "model.layers.19.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
415
+ "model.layers.19.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
416
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
417
+ "model.layers.2.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
418
+ "model.layers.2.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
419
+ "model.layers.2.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
420
+ "model.layers.2.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
421
+ "model.layers.2.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
422
+ "model.layers.2.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
423
+ "model.layers.2.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
424
+ "model.layers.2.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
425
+ "model.layers.2.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
426
+ "model.layers.2.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
427
+ "model.layers.2.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
428
+ "model.layers.2.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
429
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
430
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
431
+ "model.layers.2.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
432
+ "model.layers.2.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
433
+ "model.layers.2.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
434
+ "model.layers.2.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
435
+ "model.layers.2.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
436
+ "model.layers.2.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
437
+ "model.layers.2.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
438
+ "model.layers.2.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
439
+ "model.layers.2.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
440
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
441
+ "model.layers.2.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
442
+ "model.layers.2.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
443
+ "model.layers.2.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
444
+ "model.layers.2.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
445
+ "model.layers.2.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
446
+ "model.layers.2.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
447
+ "model.layers.2.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
448
+ "model.layers.2.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
449
+ "model.layers.2.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
450
+ "model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
451
+ "model.layers.20.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
452
+ "model.layers.20.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
453
+ "model.layers.20.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
454
+ "model.layers.20.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
455
+ "model.layers.20.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
456
+ "model.layers.20.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
457
+ "model.layers.20.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
458
+ "model.layers.20.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
459
+ "model.layers.20.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
460
+ "model.layers.20.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
461
+ "model.layers.20.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
462
+ "model.layers.20.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
463
+ "model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
464
+ "model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
465
+ "model.layers.20.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
466
+ "model.layers.20.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
467
+ "model.layers.20.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
468
+ "model.layers.20.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
469
+ "model.layers.20.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
470
+ "model.layers.20.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
471
+ "model.layers.20.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
472
+ "model.layers.20.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
473
+ "model.layers.20.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
474
+ "model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
475
+ "model.layers.20.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
476
+ "model.layers.20.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
477
+ "model.layers.20.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
478
+ "model.layers.20.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
479
+ "model.layers.20.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
480
+ "model.layers.20.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
481
+ "model.layers.20.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
482
+ "model.layers.20.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
483
+ "model.layers.20.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
484
+ "model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
485
+ "model.layers.21.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
486
+ "model.layers.21.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
487
+ "model.layers.21.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
488
+ "model.layers.21.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
489
+ "model.layers.21.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
490
+ "model.layers.21.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
491
+ "model.layers.21.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
492
+ "model.layers.21.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
493
+ "model.layers.21.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
494
+ "model.layers.21.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
495
+ "model.layers.21.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
496
+ "model.layers.21.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
497
+ "model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
498
+ "model.layers.21.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
499
+ "model.layers.21.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
500
+ "model.layers.21.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
501
+ "model.layers.21.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
502
+ "model.layers.21.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
503
+ "model.layers.21.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
504
+ "model.layers.21.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
505
+ "model.layers.21.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
506
+ "model.layers.21.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
507
+ "model.layers.21.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
508
+ "model.layers.21.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
509
+ "model.layers.21.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
510
+ "model.layers.21.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
511
+ "model.layers.21.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
512
+ "model.layers.21.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
513
+ "model.layers.21.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
514
+ "model.layers.21.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
515
+ "model.layers.21.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
516
+ "model.layers.21.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
517
+ "model.layers.21.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
518
+ "model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
519
+ "model.layers.22.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
520
+ "model.layers.22.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
521
+ "model.layers.22.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
522
+ "model.layers.22.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
523
+ "model.layers.22.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
524
+ "model.layers.22.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
525
+ "model.layers.22.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
526
+ "model.layers.22.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
527
+ "model.layers.22.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
528
+ "model.layers.22.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
529
+ "model.layers.22.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
530
+ "model.layers.22.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
531
+ "model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
532
+ "model.layers.22.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
533
+ "model.layers.22.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
534
+ "model.layers.22.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
535
+ "model.layers.22.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
536
+ "model.layers.22.self_attn.o_gate.g_idx": "model-00002-of-00002.safetensors",
537
+ "model.layers.22.self_attn.o_gate.qweight": "model-00002-of-00002.safetensors",
538
+ "model.layers.22.self_attn.o_gate.qzeros": "model-00002-of-00002.safetensors",
539
+ "model.layers.22.self_attn.o_gate.scales": "model-00002-of-00002.safetensors",
540
+ "model.layers.22.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
541
+ "model.layers.22.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
542
+ "model.layers.22.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
543
+ "model.layers.22.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
544
+ "model.layers.22.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
545
+ "model.layers.22.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
546
+ "model.layers.22.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
547
+ "model.layers.22.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
548
+ "model.layers.22.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
549
+ "model.layers.22.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
550
+ "model.layers.22.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
551
+ "model.layers.22.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
552
+ "model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
553
+ "model.layers.23.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
554
+ "model.layers.23.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
555
+ "model.layers.23.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
556
+ "model.layers.23.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
557
+ "model.layers.23.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
558
+ "model.layers.23.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
559
+ "model.layers.23.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
560
+ "model.layers.23.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
561
+ "model.layers.23.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
562
+ "model.layers.23.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
563
+ "model.layers.23.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
564
+ "model.layers.23.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
565
+ "model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
566
+ "model.layers.23.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
567
+ "model.layers.23.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
568
+ "model.layers.23.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
569
+ "model.layers.23.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
570
+ "model.layers.23.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
571
+ "model.layers.23.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
572
+ "model.layers.23.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
573
+ "model.layers.23.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
574
+ "model.layers.23.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
575
+ "model.layers.23.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
576
+ "model.layers.23.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
577
+ "model.layers.23.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
578
+ "model.layers.23.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
579
+ "model.layers.23.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
580
+ "model.layers.23.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
581
+ "model.layers.23.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
582
+ "model.layers.23.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
583
+ "model.layers.23.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
584
+ "model.layers.23.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
585
+ "model.layers.23.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
586
+ "model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
587
+ "model.layers.24.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
588
+ "model.layers.24.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
589
+ "model.layers.24.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
590
+ "model.layers.24.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
591
+ "model.layers.24.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
592
+ "model.layers.24.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
593
+ "model.layers.24.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
594
+ "model.layers.24.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
595
+ "model.layers.24.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
596
+ "model.layers.24.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
597
+ "model.layers.24.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
598
+ "model.layers.24.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
599
+ "model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
600
+ "model.layers.24.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
601
+ "model.layers.24.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
602
+ "model.layers.24.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
603
+ "model.layers.24.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
604
+ "model.layers.24.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
605
+ "model.layers.24.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
606
+ "model.layers.24.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
607
+ "model.layers.24.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
608
+ "model.layers.24.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
609
+ "model.layers.24.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
610
+ "model.layers.24.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
611
+ "model.layers.24.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
612
+ "model.layers.24.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
613
+ "model.layers.24.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
614
+ "model.layers.24.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
615
+ "model.layers.24.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
616
+ "model.layers.24.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
617
+ "model.layers.24.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
618
+ "model.layers.24.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
619
+ "model.layers.24.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
620
+ "model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
621
+ "model.layers.25.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
622
+ "model.layers.25.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
623
+ "model.layers.25.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
624
+ "model.layers.25.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
625
+ "model.layers.25.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
626
+ "model.layers.25.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
627
+ "model.layers.25.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
628
+ "model.layers.25.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
629
+ "model.layers.25.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
630
+ "model.layers.25.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
631
+ "model.layers.25.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
632
+ "model.layers.25.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
633
+ "model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
634
+ "model.layers.25.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
635
+ "model.layers.25.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
636
+ "model.layers.25.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
637
+ "model.layers.25.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
638
+ "model.layers.25.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
639
+ "model.layers.25.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
640
+ "model.layers.25.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
641
+ "model.layers.25.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
642
+ "model.layers.25.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
643
+ "model.layers.25.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
644
+ "model.layers.25.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
645
+ "model.layers.25.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
646
+ "model.layers.25.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
647
+ "model.layers.25.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
648
+ "model.layers.25.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
649
+ "model.layers.25.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
650
+ "model.layers.25.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
651
+ "model.layers.25.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
652
+ "model.layers.25.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
653
+ "model.layers.25.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
654
+ "model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
655
+ "model.layers.26.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
656
+ "model.layers.26.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
657
+ "model.layers.26.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
658
+ "model.layers.26.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
659
+ "model.layers.26.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
660
+ "model.layers.26.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
661
+ "model.layers.26.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
662
+ "model.layers.26.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
663
+ "model.layers.26.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
664
+ "model.layers.26.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
665
+ "model.layers.26.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
666
+ "model.layers.26.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
667
+ "model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
668
+ "model.layers.26.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
669
+ "model.layers.26.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
670
+ "model.layers.26.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
671
+ "model.layers.26.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
672
+ "model.layers.26.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
673
+ "model.layers.26.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
674
+ "model.layers.26.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
675
+ "model.layers.26.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
676
+ "model.layers.26.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
677
+ "model.layers.26.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
678
+ "model.layers.26.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
679
+ "model.layers.26.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
680
+ "model.layers.26.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
681
+ "model.layers.26.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
682
+ "model.layers.26.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
683
+ "model.layers.26.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
684
+ "model.layers.26.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
685
+ "model.layers.26.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
686
+ "model.layers.26.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
687
+ "model.layers.26.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
688
+ "model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
689
+ "model.layers.27.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
690
+ "model.layers.27.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
691
+ "model.layers.27.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
692
+ "model.layers.27.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
693
+ "model.layers.27.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
694
+ "model.layers.27.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
695
+ "model.layers.27.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
696
+ "model.layers.27.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
697
+ "model.layers.27.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
698
+ "model.layers.27.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
699
+ "model.layers.27.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
700
+ "model.layers.27.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
701
+ "model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
702
+ "model.layers.27.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
703
+ "model.layers.27.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
704
+ "model.layers.27.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
705
+ "model.layers.27.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
706
+ "model.layers.27.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
707
+ "model.layers.27.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
708
+ "model.layers.27.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
709
+ "model.layers.27.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
710
+ "model.layers.27.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
711
+ "model.layers.27.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
712
+ "model.layers.27.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
713
+ "model.layers.27.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
714
+ "model.layers.27.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
715
+ "model.layers.27.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
716
+ "model.layers.27.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
717
+ "model.layers.27.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
718
+ "model.layers.27.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
719
+ "model.layers.27.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
720
+ "model.layers.27.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
721
+ "model.layers.27.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
722
+ "model.layers.28.input_layernorm.weight": "model-00001-of-00002.safetensors",
723
+ "model.layers.28.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
724
+ "model.layers.28.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
725
+ "model.layers.28.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
726
+ "model.layers.28.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
727
+ "model.layers.28.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
728
+ "model.layers.28.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
729
+ "model.layers.28.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
730
+ "model.layers.28.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
731
+ "model.layers.28.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
732
+ "model.layers.28.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
733
+ "model.layers.28.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
734
+ "model.layers.28.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
735
+ "model.layers.28.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
736
+ "model.layers.28.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
737
+ "model.layers.28.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
738
+ "model.layers.28.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
739
+ "model.layers.28.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
740
+ "model.layers.28.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
741
+ "model.layers.28.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
742
+ "model.layers.28.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
743
+ "model.layers.28.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
744
+ "model.layers.28.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
745
+ "model.layers.28.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
746
+ "model.layers.28.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
747
+ "model.layers.28.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
748
+ "model.layers.28.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
749
+ "model.layers.28.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
750
+ "model.layers.28.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
751
+ "model.layers.28.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
752
+ "model.layers.28.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
753
+ "model.layers.28.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
754
+ "model.layers.28.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
755
+ "model.layers.28.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
756
+ "model.layers.29.input_layernorm.weight": "model-00001-of-00002.safetensors",
757
+ "model.layers.29.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
758
+ "model.layers.29.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
759
+ "model.layers.29.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
760
+ "model.layers.29.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
761
+ "model.layers.29.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
762
+ "model.layers.29.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
763
+ "model.layers.29.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
764
+ "model.layers.29.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
765
+ "model.layers.29.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
766
+ "model.layers.29.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
767
+ "model.layers.29.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
768
+ "model.layers.29.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
769
+ "model.layers.29.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
770
+ "model.layers.29.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
771
+ "model.layers.29.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
772
+ "model.layers.29.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
773
+ "model.layers.29.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
774
+ "model.layers.29.self_attn.o_gate.g_idx": "model-00002-of-00002.safetensors",
775
+ "model.layers.29.self_attn.o_gate.qweight": "model-00002-of-00002.safetensors",
776
+ "model.layers.29.self_attn.o_gate.qzeros": "model-00002-of-00002.safetensors",
777
+ "model.layers.29.self_attn.o_gate.scales": "model-00002-of-00002.safetensors",
778
+ "model.layers.29.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
779
+ "model.layers.29.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
780
+ "model.layers.29.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
781
+ "model.layers.29.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
782
+ "model.layers.29.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
783
+ "model.layers.29.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
784
+ "model.layers.29.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
785
+ "model.layers.29.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
786
+ "model.layers.29.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
787
+ "model.layers.29.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
788
+ "model.layers.29.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
789
+ "model.layers.29.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
790
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
791
+ "model.layers.3.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
792
+ "model.layers.3.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
793
+ "model.layers.3.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
794
+ "model.layers.3.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
795
+ "model.layers.3.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
796
+ "model.layers.3.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
797
+ "model.layers.3.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
798
+ "model.layers.3.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
799
+ "model.layers.3.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
800
+ "model.layers.3.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
801
+ "model.layers.3.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
802
+ "model.layers.3.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
803
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
804
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
805
+ "model.layers.3.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
806
+ "model.layers.3.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
807
+ "model.layers.3.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
808
+ "model.layers.3.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
809
+ "model.layers.3.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
810
+ "model.layers.3.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
811
+ "model.layers.3.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
812
+ "model.layers.3.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
813
+ "model.layers.3.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
814
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
815
+ "model.layers.3.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
816
+ "model.layers.3.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
817
+ "model.layers.3.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
818
+ "model.layers.3.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
819
+ "model.layers.3.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
820
+ "model.layers.3.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
821
+ "model.layers.3.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
822
+ "model.layers.3.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
823
+ "model.layers.3.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
824
+ "model.layers.30.input_layernorm.weight": "model-00001-of-00002.safetensors",
825
+ "model.layers.30.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
826
+ "model.layers.30.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
827
+ "model.layers.30.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
828
+ "model.layers.30.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
829
+ "model.layers.30.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
830
+ "model.layers.30.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
831
+ "model.layers.30.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
832
+ "model.layers.30.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
833
+ "model.layers.30.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
834
+ "model.layers.30.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
835
+ "model.layers.30.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
836
+ "model.layers.30.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
837
+ "model.layers.30.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
838
+ "model.layers.30.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
839
+ "model.layers.30.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
840
+ "model.layers.30.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
841
+ "model.layers.30.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
842
+ "model.layers.30.self_attn.o_gate.g_idx": "model-00002-of-00002.safetensors",
843
+ "model.layers.30.self_attn.o_gate.qweight": "model-00002-of-00002.safetensors",
844
+ "model.layers.30.self_attn.o_gate.qzeros": "model-00002-of-00002.safetensors",
845
+ "model.layers.30.self_attn.o_gate.scales": "model-00002-of-00002.safetensors",
846
+ "model.layers.30.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
847
+ "model.layers.30.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
848
+ "model.layers.30.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
849
+ "model.layers.30.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
850
+ "model.layers.30.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
851
+ "model.layers.30.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
852
+ "model.layers.30.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
853
+ "model.layers.30.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
854
+ "model.layers.30.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
855
+ "model.layers.30.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
856
+ "model.layers.30.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
857
+ "model.layers.30.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
858
+ "model.layers.31.input_layernorm.weight": "model-00001-of-00002.safetensors",
859
+ "model.layers.31.mlp.down_proj.g_idx": "model-00002-of-00002.safetensors",
860
+ "model.layers.31.mlp.down_proj.qweight": "model-00002-of-00002.safetensors",
861
+ "model.layers.31.mlp.down_proj.qzeros": "model-00002-of-00002.safetensors",
862
+ "model.layers.31.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
863
+ "model.layers.31.mlp.gate_proj.g_idx": "model-00002-of-00002.safetensors",
864
+ "model.layers.31.mlp.gate_proj.qweight": "model-00002-of-00002.safetensors",
865
+ "model.layers.31.mlp.gate_proj.qzeros": "model-00002-of-00002.safetensors",
866
+ "model.layers.31.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
867
+ "model.layers.31.mlp.up_proj.g_idx": "model-00002-of-00002.safetensors",
868
+ "model.layers.31.mlp.up_proj.qweight": "model-00002-of-00002.safetensors",
869
+ "model.layers.31.mlp.up_proj.qzeros": "model-00002-of-00002.safetensors",
870
+ "model.layers.31.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
871
+ "model.layers.31.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
872
+ "model.layers.31.self_attn.k_proj.g_idx": "model-00002-of-00002.safetensors",
873
+ "model.layers.31.self_attn.k_proj.qweight": "model-00002-of-00002.safetensors",
874
+ "model.layers.31.self_attn.k_proj.qzeros": "model-00002-of-00002.safetensors",
875
+ "model.layers.31.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
876
+ "model.layers.31.self_attn.o_gate.g_idx": "model-00002-of-00002.safetensors",
877
+ "model.layers.31.self_attn.o_gate.qweight": "model-00002-of-00002.safetensors",
878
+ "model.layers.31.self_attn.o_gate.qzeros": "model-00002-of-00002.safetensors",
879
+ "model.layers.31.self_attn.o_gate.scales": "model-00002-of-00002.safetensors",
880
+ "model.layers.31.self_attn.o_proj.g_idx": "model-00002-of-00002.safetensors",
881
+ "model.layers.31.self_attn.o_proj.qweight": "model-00002-of-00002.safetensors",
882
+ "model.layers.31.self_attn.o_proj.qzeros": "model-00002-of-00002.safetensors",
883
+ "model.layers.31.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
884
+ "model.layers.31.self_attn.q_proj.g_idx": "model-00002-of-00002.safetensors",
885
+ "model.layers.31.self_attn.q_proj.qweight": "model-00002-of-00002.safetensors",
886
+ "model.layers.31.self_attn.q_proj.qzeros": "model-00002-of-00002.safetensors",
887
+ "model.layers.31.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
888
+ "model.layers.31.self_attn.v_proj.g_idx": "model-00002-of-00002.safetensors",
889
+ "model.layers.31.self_attn.v_proj.qweight": "model-00002-of-00002.safetensors",
890
+ "model.layers.31.self_attn.v_proj.qzeros": "model-00002-of-00002.safetensors",
891
+ "model.layers.31.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
892
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
893
+ "model.layers.4.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
894
+ "model.layers.4.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
895
+ "model.layers.4.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
896
+ "model.layers.4.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
897
+ "model.layers.4.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
898
+ "model.layers.4.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
899
+ "model.layers.4.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
900
+ "model.layers.4.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
901
+ "model.layers.4.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
902
+ "model.layers.4.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
903
+ "model.layers.4.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
904
+ "model.layers.4.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
905
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
906
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
907
+ "model.layers.4.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
908
+ "model.layers.4.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
909
+ "model.layers.4.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
910
+ "model.layers.4.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
911
+ "model.layers.4.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
912
+ "model.layers.4.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
913
+ "model.layers.4.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
914
+ "model.layers.4.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
915
+ "model.layers.4.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
916
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
917
+ "model.layers.4.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
918
+ "model.layers.4.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
919
+ "model.layers.4.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
920
+ "model.layers.4.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
921
+ "model.layers.4.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
922
+ "model.layers.4.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
923
+ "model.layers.4.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
924
+ "model.layers.4.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
925
+ "model.layers.4.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
926
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
927
+ "model.layers.5.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
928
+ "model.layers.5.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
929
+ "model.layers.5.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
930
+ "model.layers.5.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
931
+ "model.layers.5.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
932
+ "model.layers.5.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
933
+ "model.layers.5.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
934
+ "model.layers.5.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
935
+ "model.layers.5.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
936
+ "model.layers.5.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
937
+ "model.layers.5.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
938
+ "model.layers.5.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
939
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
940
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
941
+ "model.layers.5.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
942
+ "model.layers.5.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
943
+ "model.layers.5.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
944
+ "model.layers.5.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
945
+ "model.layers.5.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
946
+ "model.layers.5.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
947
+ "model.layers.5.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
948
+ "model.layers.5.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
949
+ "model.layers.5.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
950
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
951
+ "model.layers.5.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
952
+ "model.layers.5.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
953
+ "model.layers.5.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
954
+ "model.layers.5.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
955
+ "model.layers.5.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
956
+ "model.layers.5.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
957
+ "model.layers.5.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
958
+ "model.layers.5.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
959
+ "model.layers.5.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
960
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
961
+ "model.layers.6.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
962
+ "model.layers.6.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
963
+ "model.layers.6.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
964
+ "model.layers.6.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
965
+ "model.layers.6.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
966
+ "model.layers.6.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
967
+ "model.layers.6.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
968
+ "model.layers.6.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
969
+ "model.layers.6.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
970
+ "model.layers.6.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
971
+ "model.layers.6.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
972
+ "model.layers.6.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
973
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
974
+ "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
975
+ "model.layers.6.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
976
+ "model.layers.6.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
977
+ "model.layers.6.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
978
+ "model.layers.6.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
979
+ "model.layers.6.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
980
+ "model.layers.6.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
981
+ "model.layers.6.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
982
+ "model.layers.6.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
983
+ "model.layers.6.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
984
+ "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
985
+ "model.layers.6.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
986
+ "model.layers.6.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
987
+ "model.layers.6.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
988
+ "model.layers.6.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
989
+ "model.layers.6.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
990
+ "model.layers.6.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
991
+ "model.layers.6.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
992
+ "model.layers.6.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
993
+ "model.layers.6.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
994
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
995
+ "model.layers.7.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
996
+ "model.layers.7.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
997
+ "model.layers.7.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
998
+ "model.layers.7.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
999
+ "model.layers.7.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
1000
+ "model.layers.7.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
1001
+ "model.layers.7.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
1002
+ "model.layers.7.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
1003
+ "model.layers.7.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
1004
+ "model.layers.7.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
1005
+ "model.layers.7.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
1006
+ "model.layers.7.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
1007
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
1008
+ "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
1009
+ "model.layers.7.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
1010
+ "model.layers.7.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
1011
+ "model.layers.7.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
1012
+ "model.layers.7.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
1013
+ "model.layers.7.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
1014
+ "model.layers.7.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
1015
+ "model.layers.7.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
1016
+ "model.layers.7.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
1017
+ "model.layers.7.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
1018
+ "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
1019
+ "model.layers.7.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
1020
+ "model.layers.7.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
1021
+ "model.layers.7.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
1022
+ "model.layers.7.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
1023
+ "model.layers.7.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
1024
+ "model.layers.7.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
1025
+ "model.layers.7.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
1026
+ "model.layers.7.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
1027
+ "model.layers.7.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
1028
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
1029
+ "model.layers.8.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
1030
+ "model.layers.8.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
1031
+ "model.layers.8.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
1032
+ "model.layers.8.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
1033
+ "model.layers.8.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
1034
+ "model.layers.8.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
1035
+ "model.layers.8.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
1036
+ "model.layers.8.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
1037
+ "model.layers.8.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
1038
+ "model.layers.8.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
1039
+ "model.layers.8.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
1040
+ "model.layers.8.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
1041
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
1042
+ "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
1043
+ "model.layers.8.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
1044
+ "model.layers.8.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
1045
+ "model.layers.8.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
1046
+ "model.layers.8.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
1047
+ "model.layers.8.self_attn.o_norm.weight": "model-00001-of-00002.safetensors",
1048
+ "model.layers.8.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
1049
+ "model.layers.8.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
1050
+ "model.layers.8.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
1051
+ "model.layers.8.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
1052
+ "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
1053
+ "model.layers.8.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
1054
+ "model.layers.8.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
1055
+ "model.layers.8.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
1056
+ "model.layers.8.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
1057
+ "model.layers.8.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
1058
+ "model.layers.8.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
1059
+ "model.layers.8.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
1060
+ "model.layers.8.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
1061
+ "model.layers.8.self_attn.z_proj.weight": "model-00001-of-00002.safetensors",
1062
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
1063
+ "model.layers.9.mlp.down_proj.g_idx": "model-00001-of-00002.safetensors",
1064
+ "model.layers.9.mlp.down_proj.qweight": "model-00001-of-00002.safetensors",
1065
+ "model.layers.9.mlp.down_proj.qzeros": "model-00001-of-00002.safetensors",
1066
+ "model.layers.9.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
1067
+ "model.layers.9.mlp.gate_proj.g_idx": "model-00001-of-00002.safetensors",
1068
+ "model.layers.9.mlp.gate_proj.qweight": "model-00001-of-00002.safetensors",
1069
+ "model.layers.9.mlp.gate_proj.qzeros": "model-00001-of-00002.safetensors",
1070
+ "model.layers.9.mlp.gate_proj.scales": "model-00001-of-00002.safetensors",
1071
+ "model.layers.9.mlp.up_proj.g_idx": "model-00001-of-00002.safetensors",
1072
+ "model.layers.9.mlp.up_proj.qweight": "model-00001-of-00002.safetensors",
1073
+ "model.layers.9.mlp.up_proj.qzeros": "model-00001-of-00002.safetensors",
1074
+ "model.layers.9.mlp.up_proj.scales": "model-00001-of-00002.safetensors",
1075
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
1076
+ "model.layers.9.self_attn.k_proj.g_idx": "model-00001-of-00002.safetensors",
1077
+ "model.layers.9.self_attn.k_proj.qweight": "model-00001-of-00002.safetensors",
1078
+ "model.layers.9.self_attn.k_proj.qzeros": "model-00001-of-00002.safetensors",
1079
+ "model.layers.9.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
1080
+ "model.layers.9.self_attn.o_gate.g_idx": "model-00001-of-00002.safetensors",
1081
+ "model.layers.9.self_attn.o_gate.qweight": "model-00001-of-00002.safetensors",
1082
+ "model.layers.9.self_attn.o_gate.qzeros": "model-00001-of-00002.safetensors",
1083
+ "model.layers.9.self_attn.o_gate.scales": "model-00001-of-00002.safetensors",
1084
+ "model.layers.9.self_attn.o_proj.g_idx": "model-00001-of-00002.safetensors",
1085
+ "model.layers.9.self_attn.o_proj.qweight": "model-00001-of-00002.safetensors",
1086
+ "model.layers.9.self_attn.o_proj.qzeros": "model-00001-of-00002.safetensors",
1087
+ "model.layers.9.self_attn.o_proj.scales": "model-00001-of-00002.safetensors",
1088
+ "model.layers.9.self_attn.q_proj.g_idx": "model-00001-of-00002.safetensors",
1089
+ "model.layers.9.self_attn.q_proj.qweight": "model-00001-of-00002.safetensors",
1090
+ "model.layers.9.self_attn.q_proj.qzeros": "model-00001-of-00002.safetensors",
1091
+ "model.layers.9.self_attn.q_proj.scales": "model-00001-of-00002.safetensors",
1092
+ "model.layers.9.self_attn.v_proj.g_idx": "model-00001-of-00002.safetensors",
1093
+ "model.layers.9.self_attn.v_proj.qweight": "model-00001-of-00002.safetensors",
1094
+ "model.layers.9.self_attn.v_proj.qzeros": "model-00001-of-00002.safetensors",
1095
+ "model.layers.9.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
1096
+ "model.norm.weight": "model-00001-of-00002.safetensors"
1097
+ }
1098
+ }
modeling_minicpm_sala.py ADDED
The diff for this file is too large to render. See raw diff
 
quant_log.csv ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.o_proj,failsafe(rtn): 0.0018692,0.00000,0.191
3
+ 0,self_attn.q_proj,0.0000026754,0.05000,2.073
4
+ 0,self_attn.v_proj,0.0000002852,0.05000,2.125
5
+ 0,self_attn.k_proj,0.0000001276,0.05000,2.127
6
+ 0,self_attn.o_gate,0.0000056994,0.05000,0.670
7
+ 0,mlp.up_proj,0.0000029969,0.05000,2.432
8
+ 0,mlp.gate_proj,0.0000021178,0.05000,2.590
9
+ 0,mlp.down_proj,0.0000014851,0.05000,4.498
10
+ 1,self_attn.o_proj,0.0000006074,0.05000,3.033
11
+ 1,self_attn.k_proj,0.0000217632,0.05000,3.057
12
+ 1,self_attn.q_proj,0.0000214327,0.05000,3.062
13
+ 1,self_attn.v_proj,0.0000276329,0.05000,3.066
14
+ 1,mlp.up_proj,0.0000020071,0.05000,2.278
15
+ 1,mlp.gate_proj,0.0000019046,0.05000,2.293
16
+ 1,mlp.down_proj,0.0000005985,0.05000,4.240
17
+ 2,self_attn.v_proj,0.0000127656,0.05000,3.075
18
+ 2,self_attn.k_proj,0.0000107873,0.05000,3.085
19
+ 2,self_attn.o_proj,0.0000002624,0.05000,3.097
20
+ 2,self_attn.q_proj,0.0000108437,0.05000,3.099
21
+ 2,mlp.up_proj,0.0000023888,0.05000,2.368
22
+ 2,mlp.gate_proj,0.0000023777,0.05000,2.405
23
+ 2,mlp.down_proj,0.0000010156,0.05000,4.324
24
+ 3,self_attn.o_proj,0.0000003675,0.05000,2.948
25
+ 3,self_attn.q_proj,0.0000134180,0.05000,2.948
26
+ 3,self_attn.v_proj,0.0000144534,0.05000,2.965
27
+ 3,self_attn.k_proj,0.0000137554,0.05000,2.968
28
+ 3,mlp.gate_proj,0.0000048571,0.05000,2.246
29
+ 3,mlp.up_proj,0.0000042930,0.05000,2.267
30
+ 3,mlp.down_proj,0.0000015000,0.05000,4.228
31
+ 4,self_attn.k_proj,0.0000108806,0.05000,2.927
32
+ 4,self_attn.v_proj,0.0000128837,0.05000,2.952
33
+ 4,self_attn.q_proj,0.0000106413,0.05000,2.965
34
+ 4,self_attn.o_proj,0.0000002981,0.05000,2.969
35
+ 4,mlp.up_proj,0.0000057718,0.05000,2.376
36
+ 4,mlp.gate_proj,0.0000063566,0.05000,2.425
37
+ 4,mlp.down_proj,0.0000016298,0.05000,4.328
38
+ 5,self_attn.q_proj,0.0000115468,0.05000,2.960
39
+ 5,self_attn.o_proj,0.0000004831,0.05000,2.972
40
+ 5,self_attn.k_proj,0.0000121797,0.05000,2.985
41
+ 5,self_attn.v_proj,0.0000130083,0.05000,2.986
42
+ 5,mlp.gate_proj,0.0000078714,0.05000,2.229
43
+ 5,mlp.up_proj,0.0000071630,0.05000,2.238
44
+ 5,mlp.down_proj,0.0000017172,0.05000,4.199
45
+ 6,self_attn.v_proj,0.0000116934,0.05000,2.973
46
+ 6,self_attn.k_proj,0.0000133436,0.05000,2.995
47
+ 6,self_attn.o_proj,0.0000004840,0.05000,3.018
48
+ 6,self_attn.q_proj,0.0000111725,0.05000,3.020
49
+ 6,mlp.up_proj,0.0000088430,0.05000,2.270
50
+ 6,mlp.gate_proj,0.0000095918,0.05000,2.285
51
+ 6,mlp.down_proj,0.0000019229,0.05000,4.204
52
+ 7,self_attn.o_proj,0.0000005164,0.05000,2.996
53
+ 7,self_attn.v_proj,0.0000109389,0.05000,3.003
54
+ 7,self_attn.k_proj,0.0000121498,0.05000,3.006
55
+ 7,self_attn.q_proj,0.0000099772,0.05000,3.012
56
+ 7,mlp.up_proj,0.0000092494,0.05000,2.391
57
+ 7,mlp.gate_proj,0.0000098175,0.05000,2.396
58
+ 7,mlp.down_proj,0.0000022285,0.05000,4.357
59
+ 8,self_attn.v_proj,0.0000075184,0.05000,2.976
60
+ 8,self_attn.k_proj,0.0000085118,0.05000,2.983
61
+ 8,self_attn.o_proj,0.0000008018,0.05000,2.994
62
+ 8,self_attn.q_proj,0.0000069240,0.05000,2.997
63
+ 8,mlp.up_proj,0.0000095222,0.05000,2.494
64
+ 8,mlp.gate_proj,0.0000104520,0.05000,2.512
65
+ 8,mlp.down_proj,0.0000021819,0.05000,4.426
66
+ 9,self_attn.o_proj,failsafe(rtn): 0.0020905,0.00000,0.100
67
+ 9,self_attn.q_proj,0.0000084631,0.05000,2.006
68
+ 9,self_attn.v_proj,0.0000005231,0.05000,2.039
69
+ 9,self_attn.k_proj,0.0000008172,0.05000,2.044
70
+ 9,self_attn.o_gate,0.0000059200,0.05000,0.671
71
+ 9,mlp.up_proj,0.0000109114,0.05000,2.436
72
+ 9,mlp.gate_proj,0.0000114498,0.05000,2.474
73
+ 9,mlp.down_proj,0.0000027955,0.05000,4.400
74
+ 10,self_attn.o_proj,0.0000007525,0.05000,3.000
75
+ 10,self_attn.q_proj,0.0000101399,0.05000,3.006
76
+ 10,self_attn.k_proj,0.0000126859,0.05000,3.008
77
+ 10,self_attn.v_proj,0.0000108107,0.05000,3.016
78
+ 10,mlp.up_proj,0.0000109930,0.05000,2.540
79
+ 10,mlp.gate_proj,0.0000113431,0.05000,2.546
80
+ 10,mlp.down_proj,0.0000026212,0.05000,4.586
81
+ 11,self_attn.v_proj,0.0000078508,0.05000,3.009
82
+ 11,self_attn.o_proj,0.0000008535,0.05000,3.016
83
+ 11,self_attn.k_proj,0.0000090067,0.05000,3.021
84
+ 11,self_attn.q_proj,0.0000073924,0.05000,3.026
85
+ 11,mlp.up_proj,0.0000111078,0.05000,2.454
86
+ 11,mlp.gate_proj,0.0000110846,0.05000,2.462
87
+ 11,mlp.down_proj,0.0000028039,0.05000,4.392
88
+ 12,self_attn.o_proj,0.0000010843,0.05000,2.991
89
+ 12,self_attn.q_proj,0.0000093472,0.05000,2.999
90
+ 12,self_attn.k_proj,0.0000102964,0.05000,3.016
91
+ 12,self_attn.v_proj,0.0000108772,0.05000,3.027
92
+ 12,mlp.gate_proj,0.0000107207,0.05000,3.187
93
+ 12,mlp.up_proj,0.0000109570,0.05000,3.195
94
+ 12,mlp.down_proj,0.0000028664,0.05000,5.429
95
+ 13,self_attn.o_proj,0.0000011266,0.05000,3.005
96
+ 13,self_attn.k_proj,0.0000091001,0.05000,3.011
97
+ 13,self_attn.v_proj,0.0000072897,0.05000,3.022
98
+ 13,self_attn.q_proj,0.0000071197,0.05000,3.026
99
+ 13,mlp.up_proj,0.0000113227,0.05000,2.730
100
+ 13,mlp.gate_proj,0.0000108762,0.05000,2.742
101
+ 13,mlp.down_proj,0.0000030420,0.05000,4.675
102
+ 14,self_attn.q_proj,0.0000077435,0.05000,2.935
103
+ 14,self_attn.o_proj,0.0000014335,0.05000,2.956
104
+ 14,self_attn.v_proj,0.0000076484,0.05000,2.956
105
+ 14,self_attn.k_proj,0.0000088960,0.05000,2.965
106
+ 14,mlp.gate_proj,0.0000103122,0.05000,3.145
107
+ 14,mlp.up_proj,0.0000113208,0.05000,3.171
108
+ 14,mlp.down_proj,0.0000034068,0.05000,5.263
109
+ 15,self_attn.v_proj,0.0000053345,0.05000,3.992
110
+ 15,self_attn.k_proj,0.0000064964,0.05000,4.008
111
+ 15,self_attn.o_proj,0.0000019109,0.05000,4.021
112
+ 15,self_attn.q_proj,0.0000050335,0.05000,4.064
113
+ 15,mlp.gate_proj,0.0000107005,0.05000,2.665
114
+ 15,mlp.up_proj,0.0000109866,0.05000,2.683
115
+ 15,mlp.down_proj,0.0000029978,0.05000,4.616
116
+ 16,self_attn.o_proj,failsafe(rtn): 0.0021057,0.00000,0.098
117
+ 16,self_attn.k_proj,0.0000007737,0.05000,1.938
118
+ 16,self_attn.q_proj,0.0000079238,0.05000,1.948
119
+ 16,self_attn.v_proj,0.0000004417,0.05000,1.950
120
+ 16,self_attn.o_gate,0.0000046259,0.05000,0.657
121
+ 16,mlp.gate_proj,0.0000140706,0.05000,2.433
122
+ 16,mlp.up_proj,0.0000137589,0.05000,2.452
123
+ 16,mlp.down_proj,0.0000043833,0.05000,4.380
124
+ 17,self_attn.o_proj,failsafe(rtn): 0.0021667,0.00000,0.099
125
+ 17,self_attn.q_proj,0.0000081710,0.05000,1.895
126
+ 17,self_attn.k_proj,0.0000007150,0.05000,1.922
127
+ 17,self_attn.v_proj,0.0000006462,0.05000,1.936
128
+ 17,self_attn.o_gate,0.0000054756,0.05000,0.764
129
+ 17,mlp.up_proj,0.0000150262,0.05000,2.489
130
+ 17,mlp.gate_proj,0.0000164731,0.05000,2.571
131
+ 17,mlp.down_proj,0.0000042990,0.05000,4.477
132
+ 18,self_attn.q_proj,0.0000070301,0.05000,2.990
133
+ 18,self_attn.o_proj,0.0000013950,0.05000,3.027
134
+ 18,self_attn.k_proj,0.0000099344,0.05000,3.036
135
+ 18,self_attn.v_proj,0.0000070985,0.05000,3.040
136
+ 18,mlp.up_proj,0.0000136936,0.05000,2.253
137
+ 18,mlp.gate_proj,0.0000142274,0.05000,2.267
138
+ 18,mlp.down_proj,0.0000037070,0.05000,4.206
139
+ 19,self_attn.v_proj,0.0000092693,0.05000,2.947
140
+ 19,self_attn.k_proj,0.0000115510,0.05000,2.960
141
+ 19,self_attn.q_proj,0.0000088237,0.05000,2.965
142
+ 19,self_attn.o_proj,0.0000013337,0.05000,2.967
143
+ 19,mlp.gate_proj,0.0000137574,0.05000,2.278
144
+ 19,mlp.up_proj,0.0000140591,0.05000,2.286
145
+ 19,mlp.down_proj,0.0000041625,0.05000,4.212
146
+ 20,self_attn.o_proj,0.0000021536,0.05000,2.909
147
+ 20,self_attn.q_proj,0.0000069513,0.05000,2.916
148
+ 20,self_attn.v_proj,0.0000069475,0.05000,2.927
149
+ 20,self_attn.k_proj,0.0000093887,0.05000,2.932
150
+ 20,mlp.gate_proj,0.0000136980,0.05000,2.209
151
+ 20,mlp.up_proj,0.0000144703,0.05000,2.222
152
+ 20,mlp.down_proj,0.0000054780,0.05000,4.168
153
+ 21,self_attn.k_proj,0.0000082680,0.05000,2.952
154
+ 21,self_attn.v_proj,0.0000077593,0.05000,2.964
155
+ 21,self_attn.q_proj,0.0000072644,0.05000,2.969
156
+ 21,self_attn.o_proj,0.0000032405,0.05000,2.975
157
+ 21,mlp.up_proj,0.0000137799,0.05000,2.308
158
+ 21,mlp.gate_proj,0.0000128238,0.05000,2.328
159
+ 21,mlp.down_proj,0.0000064990,0.05000,4.246
160
+ 22,self_attn.o_proj,failsafe(rtn): 0.0022430,0.00000,0.101
161
+ 22,self_attn.q_proj,0.0000099220,0.05000,1.950
162
+ 22,self_attn.k_proj,0.0000006394,0.05000,1.984
163
+ 22,self_attn.v_proj,0.0000011052,0.05000,2.031
164
+ 22,self_attn.o_gate,0.0000052709,0.05000,0.694
165
+ 22,mlp.gate_proj,0.0000165171,0.05000,2.286
166
+ 22,mlp.up_proj,0.0000177268,0.05000,2.291
167
+ 22,mlp.down_proj,0.0000096671,0.05000,4.204
168
+ 23,self_attn.o_proj,0.0000029835,0.05000,2.911
169
+ 23,self_attn.q_proj,0.0000096832,0.05000,2.918
170
+ 23,self_attn.v_proj,0.0000093455,0.05000,2.929
171
+ 23,self_attn.k_proj,0.0000124099,0.05000,2.932
172
+ 23,mlp.gate_proj,0.0000193158,0.05000,2.231
173
+ 23,mlp.up_proj,0.0000207531,0.05000,2.240
174
+ 23,mlp.down_proj,0.0000115674,0.05000,4.174
175
+ 24,self_attn.k_proj,0.0000102661,0.05000,2.938
176
+ 24,self_attn.v_proj,0.0000083745,0.05000,2.960
177
+ 24,self_attn.o_proj,0.0000050032,0.05000,2.966
178
+ 24,self_attn.q_proj,0.0000082454,0.05000,2.969
179
+ 24,mlp.up_proj,0.0000245099,0.05000,2.249
180
+ 24,mlp.gate_proj,0.0000226359,0.05000,2.264
181
+ 24,mlp.down_proj,0.0000187627,0.05000,4.206
182
+ 25,self_attn.q_proj,0.0000086351,0.05000,2.928
183
+ 25,self_attn.k_proj,0.0000109922,0.05000,2.955
184
+ 25,self_attn.o_proj,0.0000065444,0.05000,2.956
185
+ 25,self_attn.v_proj,0.0000085155,0.05000,2.961
186
+ 25,mlp.gate_proj,0.0000262606,0.05000,2.240
187
+ 25,mlp.up_proj,0.0000288957,0.05000,2.263
188
+ 25,mlp.down_proj,0.0000330173,0.05000,4.186
189
+ 26,self_attn.q_proj,0.0000138319,0.05000,2.959
190
+ 26,self_attn.o_proj,0.0000122393,0.05000,2.967
191
+ 26,self_attn.v_proj,0.0000135245,0.05000,2.970
192
+ 26,self_attn.k_proj,0.0000197168,0.05000,2.987
193
+ 26,mlp.gate_proj,0.0000293236,0.05000,2.263
194
+ 26,mlp.up_proj,0.0000331990,0.05000,2.278
195
+ 26,mlp.down_proj,0.0000287111,0.05000,4.210
196
+ 27,self_attn.v_proj,0.0000121277,0.05000,2.904
197
+ 27,self_attn.o_proj,0.0000077357,0.05000,2.916
198
+ 27,self_attn.q_proj,0.0000129707,0.05000,2.921
199
+ 27,self_attn.k_proj,0.0000142470,0.05000,2.921
200
+ 27,mlp.gate_proj,0.0000332846,0.05000,2.250
201
+ 27,mlp.up_proj,0.0000383662,0.05000,2.295
202
+ 27,mlp.down_proj,0.0000375026,0.05000,4.208
203
+ 28,self_attn.k_proj,0.0000229948,0.05000,2.890
204
+ 28,self_attn.q_proj,0.0000166297,0.05000,2.907
205
+ 28,self_attn.v_proj,0.0000171070,0.05000,2.913
206
+ 28,self_attn.o_proj,0.0000238302,0.05000,2.915
207
+ 28,mlp.up_proj,0.0000445883,0.05000,2.208
208
+ 28,mlp.gate_proj,0.0000377646,0.05000,2.231
209
+ 28,mlp.down_proj,0.0000522973,0.05000,4.164
210
+ 29,self_attn.o_proj,failsafe(rtn): 0.0025024,0.00000,0.095
211
+ 29,self_attn.v_proj,0.0000108235,0.05000,1.851
212
+ 29,self_attn.k_proj,0.0000011112,0.05000,1.863
213
+ 29,self_attn.q_proj,0.0000212847,0.05000,1.870
214
+ 29,self_attn.o_gate,0.0000235498,0.05000,0.656
215
+ 29,mlp.up_proj,0.0000567799,0.05000,2.281
216
+ 29,mlp.gate_proj,0.0000467146,0.05000,2.297
217
+ 29,mlp.down_proj,0.0000851708,0.05000,4.246
218
+ 30,self_attn.o_proj,failsafe(rtn): 0.0025940,0.00000,0.099
219
+ 30,self_attn.v_proj,0.0000335646,0.05000,1.833
220
+ 30,self_attn.k_proj,0.0000012887,0.05000,1.861
221
+ 30,self_attn.q_proj,0.0000326057,0.05000,1.869
222
+ 30,self_attn.o_gate,0.0000374721,0.05000,0.815
223
+ 30,mlp.gate_proj,0.0000602557,0.05000,2.257
224
+ 30,mlp.up_proj,0.0000727343,0.05000,2.264
225
+ 30,mlp.down_proj,0.0001834925,0.05000,4.187
226
+ 31,self_attn.o_proj,failsafe(rtn): 0.0024261,0.00000,0.099
227
+ 31,self_attn.v_proj,0.0000052294,0.05000,1.898
228
+ 31,self_attn.k_proj,0.0000008337,0.05000,1.914
229
+ 31,self_attn.q_proj,0.0000223652,0.05000,1.931
230
+ 31,self_attn.o_gate,0.0000234013,0.05000,0.657
231
+ 31,mlp.up_proj,0.0001052787,0.05000,2.221
232
+ 31,mlp.gate_proj,0.0000943520,0.05000,2.242
233
+ 31,mlp.down_proj,0.0007571873,0.05000,4.177
quantize_config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "dynamic": {
4
+ "+:model\\.model\\.layers\\.0\\..*": {
5
+ "bits": 8
6
+ }
7
+ },
8
+ "group_size": 128,
9
+ "desc_act": false,
10
+ "lm_head": false,
11
+ "quant_method": "gptq",
12
+ "checkpoint_format": "gptq",
13
+ "pack_dtype": "int32",
14
+ "meta": {
15
+ "quantizer": [
16
+ "gptqmodel:5.7.0"
17
+ ],
18
+ "uri": "https://github.com/modelcloud/gptqmodel",
19
+ "damp_percent": 0.05,
20
+ "damp_auto_increment": 0.01,
21
+ "static_groups": false,
22
+ "true_sequential": true,
23
+ "mse": 0.0,
24
+ "gptaq": null,
25
+ "act_group_aware": true,
26
+ "failsafe": {
27
+ "strategy": "rtn",
28
+ "threshold": "0.5%",
29
+ "smooth": {
30
+ "type": "mad",
31
+ "group_size_threshold": 128,
32
+ "k": 2.75
33
+ }
34
+ },
35
+ "offload_to_disk": true,
36
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
37
+ "pack_impl": "cpu",
38
+ "mock_quantization": false,
39
+ "gc_mode": "interval",
40
+ "wait_for_submodule_finalizers": false,
41
+ "auto_forward_data_parallel": true,
42
+ "hessian": {
43
+ "chunk_size": null,
44
+ "chunk_bytes": null,
45
+ "staging_dtype": "float32"
46
+ },
47
+ "vram_strategy": "exclusive"
48
+ },
49
+ "sym": true,
50
+ "format": "gptq"
51
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_end|>",
4
+ "<|im_start|>",
5
+ "<tool_call>",
6
+ "</tool_call>",
7
+ "<|im_sep|>",
8
+ "<|fim_prefix|>",
9
+ "<|fim_middle|>",
10
+ "<|fim_suffix|>",
11
+ "<tool_response>",
12
+ "</tool_response>",
13
+ "<tools>",
14
+ "</tools>",
15
+ "<arguments>",
16
+ "</arguments>",
17
+ "<parameters>",
18
+ "</parameters>",
19
+ "<function",
20
+ "</function>",
21
+ "<param",
22
+ "</param>"
23
+ ],
24
+ "bos_token": {
25
+ "content": "<s>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ },
31
+ "eos_token": {
32
+ "content": "<|im_end|>",
33
+ "lstrip": false,
34
+ "normalized": false,
35
+ "rstrip": false,
36
+ "single_word": false
37
+ },
38
+ "pad_token": "</s>",
39
+ "unk_token": {
40
+ "content": "<unk>",
41
+ "lstrip": false,
42
+ "normalized": false,
43
+ "rstrip": false,
44
+ "single_word": false
45
+ }
46
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb74d51116831c3bf65db812c553f94ab0c88dcf97a5bbb37e3504f6d359c530
3
+ size 1181204
tokenizer_config.json ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ },
30
+ "101": {
31
+ "content": "<think>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": false
37
+ },
38
+ "102": {
39
+ "content": "</think>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "103": {
47
+ "content": "<tool_response>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": true
53
+ },
54
+ "104": {
55
+ "content": "</tool_response>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": true
61
+ },
62
+ "105": {
63
+ "content": "<tools>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "106": {
71
+ "content": "</tools>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "107": {
79
+ "content": "<parameters>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "108": {
87
+ "content": "</parameters>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "109": {
95
+ "content": "<arguments>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "110": {
103
+ "content": "</arguments>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "111": {
111
+ "content": "<function",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "112": {
119
+ "content": "</function>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": true
125
+ },
126
+ "113": {
127
+ "content": "<param",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": true
133
+ },
134
+ "114": {
135
+ "content": "</param>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": true
141
+ },
142
+ "73440": {
143
+ "content": "<|im_end|>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": true
149
+ },
150
+ "73441": {
151
+ "content": "<|im_start|>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": true
157
+ },
158
+ "73442": {
159
+ "content": "<tool_call>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": true
165
+ },
166
+ "73443": {
167
+ "content": "</tool_call>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": true
173
+ },
174
+ "73444": {
175
+ "content": "<|im_sep|>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": true
181
+ },
182
+ "73445": {
183
+ "content": "<|fim_prefix|>",
184
+ "lstrip": false,
185
+ "normalized": false,
186
+ "rstrip": false,
187
+ "single_word": false,
188
+ "special": true
189
+ },
190
+ "73446": {
191
+ "content": "<|fim_middle|>",
192
+ "lstrip": false,
193
+ "normalized": false,
194
+ "rstrip": false,
195
+ "single_word": false,
196
+ "special": true
197
+ },
198
+ "73447": {
199
+ "content": "<|fim_suffix|>",
200
+ "lstrip": false,
201
+ "normalized": false,
202
+ "rstrip": false,
203
+ "single_word": false,
204
+ "special": true
205
+ }
206
+ },
207
+ "additional_special_tokens": [
208
+ "<|im_end|>",
209
+ "<|im_start|>",
210
+ "<tool_call>",
211
+ "</tool_call>",
212
+ "<|im_sep|>",
213
+ "<|fim_prefix|>",
214
+ "<|fim_middle|>",
215
+ "<|fim_suffix|>",
216
+ "<tool_response>",
217
+ "</tool_response>",
218
+ "<tools>",
219
+ "</tools>",
220
+ "<arguments>",
221
+ "</arguments>",
222
+ "<parameters>",
223
+ "</parameters>",
224
+ "<function",
225
+ "</function>",
226
+ "<param",
227
+ "</param>"
228
+ ],
229
+ "bos_token": "<s>",
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "extra_special_tokens": {},
233
+ "legacy": true,
234
+ "model_max_length": 262144,
235
+ "pad_token": "</s>",
236
+ "sp_model_kwargs": {},
237
+ "spaces_between_special_tokens": false,
238
+ "tokenizer_class": "LlamaTokenizerFast",
239
+ "unk_token": "<unk>",
240
+ "use_default_system_prompt": false,
241
+ "_commit_hash": null
242
+ }