tpoisonooo commited on
Commit
3121222
·
verified ·
1 Parent(s): 33adbb9

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,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "+:model\\.model\\.layers\\.31\\..*": {
85
+ "bits": 8
86
+ }
87
+ },
88
+ "format": "gptq",
89
+ "group_size": 128,
90
+ "lm_head": false,
91
+ "meta": {
92
+ "act_group_aware": true,
93
+ "auto_forward_data_parallel": true,
94
+ "damp_auto_increment": 0.01,
95
+ "damp_percent": 0.05,
96
+ "failsafe": {
97
+ "smooth": {
98
+ "group_size_threshold": 128,
99
+ "k": 2.75,
100
+ "type": "mad"
101
+ },
102
+ "strategy": "rtn",
103
+ "threshold": "0.5%"
104
+ },
105
+ "gc_mode": "interval",
106
+ "gptaq": null,
107
+ "hessian": {
108
+ "chunk_bytes": null,
109
+ "chunk_size": null,
110
+ "staging_dtype": "float32"
111
+ },
112
+ "mock_quantization": false,
113
+ "mse": 0.0,
114
+ "offload_to_disk": true,
115
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
116
+ "pack_impl": "cpu",
117
+ "quantizer": [
118
+ "gptqmodel:5.7.0"
119
+ ],
120
+ "static_groups": false,
121
+ "true_sequential": true,
122
+ "uri": "https://github.com/modelcloud/gptqmodel",
123
+ "vram_strategy": "exclusive",
124
+ "wait_for_submodule_finalizers": false
125
+ },
126
+ "pack_dtype": "int32",
127
+ "quant_method": "gptq",
128
+ "sym": true
129
+ },
130
+ "rms_norm_eps": 1e-06,
131
+ "rope_scaling": null,
132
+ "rope_theta": 10000.0,
133
+ "scale_depth": 1.4,
134
+ "scale_emb": 12,
135
+ "shift_labels": true,
136
+ "sparse_config": {
137
+ "block_size": 64,
138
+ "dense_len": 8192,
139
+ "init_blocks": 1,
140
+ "kernel_size": 32,
141
+ "kernel_stride": 16,
142
+ "topk": 64,
143
+ "use_nope": false,
144
+ "window_size": 2048
145
+ },
146
+ "tie_word_embeddings": false,
147
+ "transformers_version": "4.57.1",
148
+ "use_cache": true,
149
+ "use_output_gate": true,
150
+ "use_output_norm": true,
151
+ "vocab_size": 73448
152
+ }
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:ca3de35351b80d007c21dc2a9236f503a74b8ce7c4043afaa997bc2ab021119e
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:aee4f2b8308307f06b235c79ef3607f37f6a48441587488dba2157001be4fbbc
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,mlp.gate_proj,0.0000019575,0.05000,2.282
3
+ 0,mlp.up_proj,0.0000027544,0.05000,2.295
4
+ 0,mlp.down_proj,0.0000010484,0.05000,3.485
5
+ 0,self_attn.o_proj,failsafe(rtn): 0.0018692,0.00000,0.133
6
+ 0,self_attn.k_proj,0.0000001276,0.05000,1.896
7
+ 0,self_attn.q_proj,0.0000026756,0.05000,1.900
8
+ 0,self_attn.v_proj,0.0000002852,0.05000,1.926
9
+ 0,self_attn.o_gate,0.0000056989,0.05000,0.416
10
+ 1,mlp.up_proj,0.0000019776,0.05000,2.523
11
+ 1,mlp.gate_proj,0.0000018764,0.05000,2.584
12
+ 1,mlp.down_proj,0.0000005803,0.05000,3.835
13
+ 1,self_attn.v_proj,0.0000274517,0.05000,3.357
14
+ 1,self_attn.o_proj,0.0000006033,0.05000,3.382
15
+ 1,self_attn.q_proj,0.0000212897,0.05000,3.414
16
+ 1,self_attn.k_proj,0.0000216100,0.05000,3.420
17
+ 2,mlp.gate_proj,0.0000023568,0.05000,2.246
18
+ 2,mlp.up_proj,0.0000023672,0.05000,2.256
19
+ 2,mlp.down_proj,0.0000010073,0.05000,3.446
20
+ 2,self_attn.q_proj,0.0000107203,0.05000,2.823
21
+ 2,self_attn.v_proj,0.0000126155,0.05000,2.848
22
+ 2,self_attn.o_proj,0.0000002600,0.05000,2.851
23
+ 2,self_attn.k_proj,0.0000106647,0.05000,2.854
24
+ 3,mlp.up_proj,0.0000042655,0.05000,2.150
25
+ 3,mlp.gate_proj,0.0000048281,0.05000,2.155
26
+ 3,mlp.down_proj,0.0000014951,0.05000,3.343
27
+ 3,self_attn.v_proj,0.0000143808,0.05000,2.827
28
+ 3,self_attn.q_proj,0.0000133468,0.05000,2.856
29
+ 3,self_attn.o_proj,0.0000003673,0.05000,2.865
30
+ 3,self_attn.k_proj,0.0000136954,0.05000,2.868
31
+ 4,mlp.up_proj,0.0000057488,0.05000,2.549
32
+ 4,mlp.gate_proj,0.0000063297,0.05000,2.552
33
+ 4,mlp.down_proj,0.0000016230,0.05000,3.892
34
+ 4,self_attn.q_proj,0.0000106056,0.05000,3.481
35
+ 4,self_attn.v_proj,0.0000128426,0.05000,3.494
36
+ 4,self_attn.k_proj,0.0000108418,0.05000,3.509
37
+ 4,self_attn.o_proj,0.0000002972,0.05000,3.519
38
+ 5,mlp.up_proj,0.0000071429,0.05000,2.613
39
+ 5,mlp.gate_proj,0.0000078490,0.05000,2.635
40
+ 5,mlp.down_proj,0.0000017132,0.05000,3.949
41
+ 5,self_attn.v_proj,0.0000129791,0.05000,3.126
42
+ 5,self_attn.k_proj,0.0000121584,0.05000,3.347
43
+ 5,self_attn.q_proj,0.0000115177,0.05000,3.356
44
+ 5,self_attn.o_proj,0.0000004817,0.05000,3.377
45
+ 6,mlp.up_proj,0.0000088197,0.05000,2.675
46
+ 6,mlp.gate_proj,0.0000095654,0.05000,2.748
47
+ 6,mlp.down_proj,0.0000019187,0.05000,3.957
48
+ 6,self_attn.o_proj,0.0000004831,0.05000,2.738
49
+ 6,self_attn.q_proj,0.0000111541,0.05000,2.795
50
+ 6,self_attn.k_proj,0.0000133217,0.05000,2.824
51
+ 6,self_attn.v_proj,0.0000116766,0.05000,2.834
52
+ 7,mlp.up_proj,0.0000092302,0.05000,1.289
53
+ 7,mlp.gate_proj,0.0000097952,0.05000,1.293
54
+ 7,mlp.down_proj,0.0000022242,0.05000,2.475
55
+ 7,self_attn.v_proj,0.0000109299,0.05000,2.075
56
+ 7,self_attn.k_proj,0.0000121253,0.05000,2.156
57
+ 7,self_attn.q_proj,0.0000099677,0.05000,2.286
58
+ 7,self_attn.o_proj,0.0000005160,0.05000,2.289
59
+ 8,mlp.gate_proj,0.0000104388,0.05000,1.974
60
+ 8,mlp.up_proj,0.0000095090,0.05000,2.055
61
+ 8,mlp.down_proj,0.0000021816,0.05000,3.211
62
+ 8,self_attn.k_proj,0.0000085051,0.05000,2.614
63
+ 8,self_attn.v_proj,0.0000075190,0.05000,2.743
64
+ 8,self_attn.o_proj,0.0000008019,0.05000,2.750
65
+ 8,self_attn.q_proj,0.0000069249,0.05000,2.772
66
+ 9,mlp.gate_proj,0.0000114569,0.05000,1.817
67
+ 9,mlp.up_proj,0.0000109181,0.05000,1.822
68
+ 9,mlp.down_proj,0.0000028727,0.05000,3.040
69
+ 9,self_attn.o_proj,failsafe(rtn): 0.0020905,0.00000,0.095
70
+ 9,self_attn.v_proj,0.0000005232,0.05000,1.285
71
+ 9,self_attn.k_proj,0.0000008164,0.05000,1.304
72
+ 9,self_attn.q_proj,0.0000084581,0.05000,1.328
73
+ 9,self_attn.o_gate,0.0000059179,0.05000,0.404
74
+ 10,mlp.up_proj,0.0000110046,0.05000,1.756
75
+ 10,mlp.gate_proj,0.0000113558,0.05000,1.940
76
+ 10,mlp.down_proj,0.0000026231,0.05000,3.068
77
+ 10,self_attn.q_proj,0.0000101732,0.05000,2.230
78
+ 10,self_attn.o_proj,0.0000007549,0.05000,2.262
79
+ 10,self_attn.k_proj,0.0000127262,0.05000,2.365
80
+ 10,self_attn.v_proj,0.0000108463,0.05000,2.387
81
+ 11,mlp.up_proj,0.0000111043,0.05000,2.183
82
+ 11,mlp.gate_proj,0.0000110840,0.05000,2.187
83
+ 11,mlp.down_proj,0.0000028018,0.05000,3.373
84
+ 11,self_attn.v_proj,0.0000078623,0.05000,2.592
85
+ 11,self_attn.k_proj,0.0000090132,0.05000,2.733
86
+ 11,self_attn.o_proj,0.0000008556,0.05000,2.759
87
+ 11,self_attn.q_proj,0.0000073984,0.05000,2.772
88
+ 12,mlp.gate_proj,0.0000107157,0.05000,2.134
89
+ 12,mlp.up_proj,0.0000109496,0.05000,2.144
90
+ 12,mlp.down_proj,0.0000028660,0.05000,3.327
91
+ 12,self_attn.v_proj,0.0000108852,0.05000,2.999
92
+ 12,self_attn.q_proj,0.0000093560,0.05000,3.022
93
+ 12,self_attn.o_proj,0.0000010866,0.05000,3.033
94
+ 12,self_attn.k_proj,0.0000102958,0.05000,3.039
95
+ 13,mlp.up_proj,0.0000113037,0.05000,2.134
96
+ 13,mlp.gate_proj,0.0000108564,0.05000,2.150
97
+ 13,mlp.down_proj,0.0000030354,0.05000,3.340
98
+ 13,self_attn.o_proj,0.0000011258,0.05000,2.630
99
+ 13,self_attn.q_proj,0.0000071202,0.05000,2.637
100
+ 13,self_attn.v_proj,0.0000072887,0.05000,2.655
101
+ 13,self_attn.k_proj,0.0000090965,0.05000,2.658
102
+ 14,mlp.gate_proj,0.0000102864,0.05000,2.116
103
+ 14,mlp.up_proj,0.0000112935,0.05000,2.131
104
+ 14,mlp.down_proj,0.0000033973,0.05000,3.311
105
+ 14,self_attn.q_proj,0.0000077342,0.05000,2.791
106
+ 14,self_attn.k_proj,0.0000088883,0.05000,2.801
107
+ 14,self_attn.o_proj,0.0000014352,0.05000,2.806
108
+ 14,self_attn.v_proj,0.0000076372,0.05000,2.810
109
+ 15,mlp.up_proj,0.0000109415,0.05000,2.113
110
+ 15,mlp.gate_proj,0.0000106577,0.05000,2.117
111
+ 15,mlp.down_proj,0.0000029832,0.05000,3.304
112
+ 15,self_attn.v_proj,0.0000053197,0.05000,2.740
113
+ 15,self_attn.k_proj,0.0000064845,0.05000,2.750
114
+ 15,self_attn.q_proj,0.0000050206,0.05000,2.756
115
+ 15,self_attn.o_proj,0.0000019126,0.05000,2.758
116
+ 16,mlp.up_proj,0.0000153010,0.05000,2.529
117
+ 16,mlp.gate_proj,0.0000156530,0.05000,2.533
118
+ 16,mlp.down_proj,0.0000057073,0.05000,3.721
119
+ 16,self_attn.o_proj,failsafe(rtn): 0.0021057,0.00000,0.100
120
+ 16,self_attn.q_proj,0.0000078978,0.05000,1.962
121
+ 16,self_attn.k_proj,0.0000007718,0.05000,1.963
122
+ 16,self_attn.v_proj,0.0000004404,0.05000,1.968
123
+ 16,self_attn.o_gate,0.0000046133,0.05000,0.430
124
+ 17,mlp.gate_proj,0.0000172837,0.05000,2.243
125
+ 17,mlp.up_proj,0.0000157615,0.05000,2.252
126
+ 17,mlp.down_proj,0.0000047822,0.05000,3.442
127
+ 17,self_attn.o_proj,failsafe(rtn): 0.0021667,0.00000,0.103
128
+ 17,self_attn.q_proj,0.0000081782,0.05000,1.955
129
+ 17,self_attn.k_proj,0.0000007155,0.05000,1.958
130
+ 17,self_attn.v_proj,0.0000006458,0.05000,1.977
131
+ 17,self_attn.o_gate,0.0000054807,0.05000,0.410
132
+ 18,mlp.up_proj,0.0000136515,0.05000,2.710
133
+ 18,mlp.gate_proj,0.0000141853,0.05000,2.718
134
+ 18,mlp.down_proj,0.0000036975,0.05000,3.911
135
+ 18,self_attn.q_proj,0.0000070243,0.05000,3.069
136
+ 18,self_attn.k_proj,0.0000099378,0.05000,3.079
137
+ 18,self_attn.v_proj,0.0000070944,0.05000,3.091
138
+ 18,self_attn.o_proj,0.0000013901,0.05000,3.093
139
+ 19,mlp.up_proj,0.0000140069,0.05000,2.184
140
+ 19,mlp.gate_proj,0.0000137057,0.05000,2.188
141
+ 19,mlp.down_proj,0.0000041433,0.05000,3.382
142
+ 19,self_attn.v_proj,0.0000092466,0.05000,2.955
143
+ 19,self_attn.k_proj,0.0000115108,0.05000,2.976
144
+ 19,self_attn.q_proj,0.0000087993,0.05000,2.978
145
+ 19,self_attn.o_proj,0.0000013312,0.05000,2.981
146
+ 20,mlp.gate_proj,0.0000136300,0.05000,2.360
147
+ 20,mlp.up_proj,0.0000144002,0.05000,2.367
148
+ 20,mlp.down_proj,0.0000054458,0.05000,3.551
149
+ 20,self_attn.k_proj,0.0000093558,0.05000,2.430
150
+ 20,self_attn.v_proj,0.0000069220,0.05000,2.485
151
+ 20,self_attn.q_proj,0.0000069259,0.05000,2.488
152
+ 20,self_attn.o_proj,0.0000021510,0.05000,2.491
153
+ 21,mlp.up_proj,0.0000136941,0.05000,1.901
154
+ 21,mlp.gate_proj,0.0000127453,0.05000,2.069
155
+ 21,mlp.down_proj,0.0000064656,0.05000,3.211
156
+ 21,self_attn.o_proj,0.0000032435,0.05000,2.564
157
+ 21,self_attn.k_proj,0.0000082270,0.05000,2.652
158
+ 21,self_attn.q_proj,0.0000072292,0.05000,2.698
159
+ 21,self_attn.v_proj,0.0000077253,0.05000,2.702
160
+ 22,mlp.gate_proj,0.0000178435,0.05000,2.226
161
+ 22,mlp.up_proj,0.0000191504,0.05000,2.237
162
+ 22,mlp.down_proj,0.0000115692,0.05000,3.429
163
+ 22,self_attn.o_proj,failsafe(rtn): 0.0022430,0.00000,0.105
164
+ 22,self_attn.q_proj,0.0000098795,0.05000,1.564
165
+ 22,self_attn.v_proj,0.0000011001,0.05000,1.603
166
+ 22,self_attn.k_proj,0.0000006362,0.05000,1.802
167
+ 22,self_attn.o_gate,0.0000052467,0.05000,0.556
168
+ 23,mlp.up_proj,0.0000205944,0.05000,2.568
169
+ 23,mlp.gate_proj,0.0000191698,0.05000,2.574
170
+ 23,mlp.down_proj,0.0000114501,0.05000,3.838
171
+ 23,self_attn.k_proj,0.0000123230,0.05000,3.183
172
+ 23,self_attn.v_proj,0.0000092833,0.05000,3.241
173
+ 23,self_attn.q_proj,0.0000096182,0.05000,3.242
174
+ 23,self_attn.o_proj,0.0000029686,0.05000,3.246
175
+ 24,mlp.up_proj,0.0000243043,0.05000,2.174
176
+ 24,mlp.gate_proj,0.0000224462,0.05000,2.178
177
+ 24,mlp.down_proj,0.0000185971,0.05000,3.367
178
+ 24,self_attn.o_proj,0.0000049888,0.05000,2.975
179
+ 24,self_attn.v_proj,0.0000083148,0.05000,2.986
180
+ 24,self_attn.k_proj,0.0000101886,0.05000,2.996
181
+ 24,self_attn.q_proj,0.0000081873,0.05000,3.004
182
+ 25,mlp.gate_proj,0.0000260207,0.05000,2.247
183
+ 25,mlp.up_proj,0.0000286292,0.05000,2.265
184
+ 25,mlp.down_proj,0.0000327358,0.05000,3.458
185
+ 25,self_attn.k_proj,0.0000109056,0.05000,3.008
186
+ 25,self_attn.o_proj,0.0000064882,0.05000,3.029
187
+ 25,self_attn.v_proj,0.0000084491,0.05000,3.036
188
+ 25,self_attn.q_proj,0.0000085720,0.05000,3.038
189
+ 26,mlp.gate_proj,0.0000290269,0.05000,2.488
190
+ 26,mlp.up_proj,0.0000328542,0.05000,2.502
191
+ 26,mlp.down_proj,0.0000283380,0.05000,3.690
192
+ 26,self_attn.o_proj,0.0000122008,0.05000,2.982
193
+ 26,self_attn.k_proj,0.0000195720,0.05000,2.992
194
+ 26,self_attn.q_proj,0.0000137304,0.05000,2.997
195
+ 26,self_attn.v_proj,0.0000134189,0.05000,2.999
196
+ 27,mlp.up_proj,0.0000379276,0.05000,2.567
197
+ 27,mlp.gate_proj,0.0000329030,0.05000,2.567
198
+ 27,mlp.down_proj,0.0000369176,0.05000,3.824
199
+ 27,self_attn.v_proj,0.0000120097,0.05000,2.916
200
+ 27,self_attn.q_proj,0.0000128456,0.05000,2.921
201
+ 27,self_attn.o_proj,0.0000076826,0.05000,2.924
202
+ 27,self_attn.k_proj,0.0000141221,0.05000,2.928
203
+ 28,mlp.gate_proj,0.0000373178,0.05000,2.244
204
+ 28,mlp.up_proj,0.0000440524,0.05000,2.267
205
+ 28,mlp.down_proj,0.0000514231,0.05000,3.471
206
+ 28,self_attn.k_proj,0.0000228180,0.05000,3.043
207
+ 28,self_attn.v_proj,0.0000169691,0.05000,3.054
208
+ 28,self_attn.q_proj,0.0000164989,0.05000,3.059
209
+ 28,self_attn.o_proj,0.0000238898,0.05000,3.062
210
+ 29,mlp.up_proj,0.0000564963,0.05000,2.573
211
+ 29,mlp.gate_proj,0.0000464832,0.05000,2.598
212
+ 29,mlp.down_proj,0.0000851531,0.05000,3.805
213
+ 29,self_attn.o_proj,failsafe(rtn): 0.0025024,0.00000,0.113
214
+ 29,self_attn.v_proj,0.0000107679,0.05000,2.037
215
+ 29,self_attn.q_proj,0.0000211549,0.05000,2.046
216
+ 29,self_attn.k_proj,0.0000011045,0.05000,2.075
217
+ 29,self_attn.o_gate,0.0000234260,0.05000,0.413
218
+ 30,mlp.gate_proj,0.0000589105,0.05000,2.553
219
+ 30,mlp.up_proj,0.0000711039,0.05000,2.561
220
+ 30,mlp.down_proj,0.0001752567,0.05000,3.852
221
+ 30,self_attn.o_proj,failsafe(rtn): 0.0025940,0.00000,0.099
222
+ 30,self_attn.k_proj,0.0000012830,0.05000,2.137
223
+ 30,self_attn.q_proj,0.0000324827,0.05000,2.140
224
+ 30,self_attn.v_proj,0.0000334367,0.05000,2.190
225
+ 30,self_attn.o_gate,0.0000373244,0.05000,0.436
226
+ 31,mlp.up_proj,0.0001038903,0.05000,2.291
227
+ 31,mlp.gate_proj,0.0000930895,0.05000,2.361
228
+ 31,mlp.down_proj,0.0007491196,0.05000,3.548
229
+ 31,self_attn.o_proj,failsafe(rtn): 0.0024261,0.00000,0.107
230
+ 31,self_attn.k_proj,0.0000008259,0.05000,2.147
231
+ 31,self_attn.v_proj,0.0000051840,0.05000,2.153
232
+ 31,self_attn.q_proj,0.0000221746,0.05000,2.155
233
+ 31,self_attn.o_gate,0.0000232037,0.05000,0.409
quantize_config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "dynamic": {
4
+ "+:model\\.model\\.layers\\.0\\..*": {
5
+ "bits": 8
6
+ },
7
+ "+:model\\.model\\.layers\\.31\\..*": {
8
+ "bits": 8
9
+ }
10
+ },
11
+ "group_size": 128,
12
+ "desc_act": false,
13
+ "lm_head": false,
14
+ "quant_method": "gptq",
15
+ "checkpoint_format": "gptq",
16
+ "pack_dtype": "int32",
17
+ "meta": {
18
+ "quantizer": [
19
+ "gptqmodel:5.7.0"
20
+ ],
21
+ "uri": "https://github.com/modelcloud/gptqmodel",
22
+ "damp_percent": 0.05,
23
+ "damp_auto_increment": 0.01,
24
+ "static_groups": false,
25
+ "true_sequential": true,
26
+ "mse": 0.0,
27
+ "gptaq": null,
28
+ "act_group_aware": true,
29
+ "failsafe": {
30
+ "strategy": "rtn",
31
+ "threshold": "0.5%",
32
+ "smooth": {
33
+ "type": "mad",
34
+ "group_size_threshold": 128,
35
+ "k": 2.75
36
+ }
37
+ },
38
+ "offload_to_disk": true,
39
+ "offload_to_disk_path": "./gptqmodel_offload/hqdpgrum-rkaakpxx/",
40
+ "pack_impl": "cpu",
41
+ "mock_quantization": false,
42
+ "gc_mode": "interval",
43
+ "wait_for_submodule_finalizers": false,
44
+ "auto_forward_data_parallel": true,
45
+ "hessian": {
46
+ "chunk_size": null,
47
+ "chunk_bytes": null,
48
+ "staging_dtype": "float32"
49
+ },
50
+ "vram_strategy": "exclusive"
51
+ },
52
+ "sym": true,
53
+ "format": "gptq"
54
+ }
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
+ }