daven3 commited on
Commit
1f04f09
·
verified ·
1 Parent(s): 955b70f

Upload EdgellmForCausalLM

Browse files
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/home/c84379517/PLM-Team/plm-instruct-rl",
3
+ "architectures": [
4
+ "EdgellmForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "attn_implementation": "flash_attention_2",
9
+ "auto_map": {
10
+ "AutoConfig": "configuration_edgellm.EdgellmConfig",
11
+ "AutoModel": "modeling_edgellm.EdgellmForCausalLM",
12
+ "AutoModelForCausalLM": "modeling_edgellm.EdgellmForCausalLM"
13
+ },
14
+ "bos_token_id": 151643,
15
+ "eos_token_id": 151643,
16
+ "hidden_act": "relu2",
17
+ "hidden_size": 2048,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 8192,
20
+ "kv_lora_rank": 512,
21
+ "max_position_embeddings": 4096,
22
+ "model_type": "edgellm",
23
+ "num_attention_heads": 16,
24
+ "num_hidden_layers": 32,
25
+ "num_key_value_heads": 32,
26
+ "pretraining_tp": 1,
27
+ "q_lora_rank": null,
28
+ "qk_nope_head_dim": 128,
29
+ "qk_rope_head_dim": 64,
30
+ "rms_norm_eps": 1e-06,
31
+ "rope_scaling": null,
32
+ "rope_theta": 100000.0,
33
+ "sliding_window": 4096,
34
+ "tie_word_embeddings": true,
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.46.1",
37
+ "use_cache": false,
38
+ "use_sliding_window": false,
39
+ "v_head_dim": 128,
40
+ "vocab_size": 151936
41
+ }
configuration_edgellm.py ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2024 The EdgeLLM team and The HuggingFace Inc. 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
+ """EdgeLLM model configuration"""
16
+ # Test test
17
+ from transformers.configuration_utils import PretrainedConfig
18
+ from transformers.utils import logging
19
+
20
+
21
+ logger = logging.get_logger(__name__)
22
+
23
+
24
+ class EdgellmConfig(PretrainedConfig):
25
+ r"""
26
+ This is the configuration class to store the configuration of a [`Qwen2Model`]. It is used to instantiate a
27
+ Qwen2 model according to the specified arguments, defining the model architecture. Instantiating a configuration
28
+ with the defaults will yield a similar configuration to that of
29
+ Qwen2-7B-beta [Qwen/Qwen2-7B-beta](https://huggingface.co/Qwen/Qwen2-7B-beta).
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 151936):
37
+ Vocabulary size of the Qwen2 model. Defines the number of different tokens that can be represented by the
38
+ `inputs_ids` passed when calling [`Qwen2Model`]
39
+ hidden_size (`int`, *optional*, defaults to 4096):
40
+ Dimension of the hidden representations.
41
+ intermediate_size (`int`, *optional*, defaults to 22016):
42
+ Dimension of the MLP representations.
43
+ num_hidden_layers (`int`, *optional*, defaults to 32):
44
+ Number of hidden layers in the Transformer encoder.
45
+ num_attention_heads (`int`, *optional*, defaults to 32):
46
+ Number of attention heads for each attention layer in the Transformer encoder.
47
+ num_key_value_heads (`int`, *optional*, defaults to 32):
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 `32`.
54
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
55
+ The non-linear activation function (function or string) in the decoder.
56
+ max_position_embeddings (`int`, *optional*, defaults to 32768):
57
+ The maximum sequence length that this model might ever be used with.
58
+ initializer_range (`float`, *optional*, defaults to 0.02):
59
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
60
+ rms_norm_eps (`float`, *optional*, defaults to 1e-06):
61
+ The epsilon used by the rms normalization layers.
62
+ use_cache (`bool`, *optional*, defaults to `True`):
63
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
64
+ relevant if `config.is_decoder=True`.
65
+ tie_word_embeddings (`bool`, *optional*, defaults to `False`):
66
+ Whether the model's input and output word embeddings should be tied.
67
+ rope_theta (`float`, *optional*, defaults to 10000.0):
68
+ The base period of the RoPE embeddings.
69
+ use_sliding_window (`bool`, *optional*, defaults to `False`):
70
+ Whether to use sliding window attention.
71
+ sliding_window (`int`, *optional*, defaults to 4096):
72
+ Sliding window attention (SWA) window size. If not specified, will default to `4096`.
73
+ max_window_layers (`int`, *optional*, defaults to 28):
74
+ The number of layers that use SWA (Sliding Window Attention). The bottom layers use SWA while the top use full attention.
75
+ attention_dropout (`float`, *optional*, defaults to 0.0):
76
+ The dropout ratio for the attention probabilities.
77
+
78
+ ```python
79
+ >>> from transformers import Qwen2Model, Qwen2Config
80
+
81
+ >>> # Initializing a Qwen2 style configuration
82
+ >>> configuration = Qwen2Config()
83
+
84
+ >>> # Initializing a model from the Qwen2-7B style configuration
85
+ >>> model = Qwen2Model(configuration)
86
+
87
+ >>> # Accessing the model configuration
88
+ >>> configuration = model.config
89
+ ```"""
90
+
91
+ model_type = "edgellm"
92
+ keys_to_ignore_at_inference = ["past_key_values"]
93
+
94
+ def __init__(
95
+ self,
96
+ vocab_size=102400,
97
+ hidden_size=4096,
98
+ intermediate_size=11008,
99
+ num_hidden_layers=30,
100
+ num_attention_heads=32,
101
+ num_key_value_heads=32,
102
+ kv_lora_rank = 512,
103
+ q_lora_rank = 1536,
104
+ qk_rope_head_dim = 64,
105
+ v_head_dim = 128,
106
+ qk_nope_head_dim = 128,
107
+ hidden_act="relu",
108
+ max_position_embeddings=2048,
109
+ initializer_range=0.02,
110
+ rms_norm_eps=1e-6,
111
+ use_cache=True,
112
+ pretraining_tp=1,
113
+ tie_word_embeddings=False,
114
+ rope_theta=10000.0,
115
+ rope_scaling=None,
116
+ attention_bias=False,
117
+ attention_dropout=0.0,
118
+ use_sliding_window=False,
119
+ sliding_window=4096,
120
+ **kwargs,
121
+ ):
122
+ self.vocab_size = vocab_size
123
+ self.max_position_embeddings = max_position_embeddings
124
+ self.hidden_size = hidden_size
125
+ self.intermediate_size = intermediate_size
126
+ self.num_hidden_layers = num_hidden_layers
127
+ self.num_attention_heads = num_attention_heads
128
+ self.kv_lora_rank = kv_lora_rank
129
+ self.q_lora_rank = q_lora_rank
130
+ self.qk_rope_head_dim = qk_rope_head_dim
131
+ self.v_head_dim = v_head_dim
132
+ self.qk_nope_head_dim = qk_nope_head_dim
133
+ # for backward compatibility
134
+ if num_key_value_heads is None:
135
+ num_key_value_heads = num_attention_heads
136
+
137
+ self.num_key_value_heads = num_key_value_heads
138
+ self.hidden_act = hidden_act
139
+ self.initializer_range = initializer_range
140
+ self.rms_norm_eps = rms_norm_eps
141
+ self.pretraining_tp = pretraining_tp
142
+ self.use_cache = use_cache
143
+ self.rope_theta = rope_theta
144
+ self.rope_scaling = rope_scaling
145
+ self.attention_bias = attention_bias
146
+ self.attention_dropout = attention_dropout
147
+
148
+ self.use_sliding_window = use_sliding_window
149
+ self.sliding_window = sliding_window
150
+
151
+ # for backward compatibility
152
+ if num_key_value_heads is None:
153
+ num_key_value_heads = num_attention_heads
154
+ self.attn_implementation = "flash_attention_2"
155
+
156
+ super().__init__(
157
+ tie_word_embeddings=tie_word_embeddings,
158
+ **kwargs,
159
+ )
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 151643,
4
+ "eos_token_id": 151643,
5
+ "transformers_version": "4.46.1",
6
+ "use_cache": false
7
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5a53a18c8b2fb35b255a453da9cfc440bfb90c4182a84dae6b241cb0b5ecbc2
3
+ size 4963283312
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d87a336cd9696e020546a71fc259756918e7108db88ba92b9d2023502c34884f
3
+ size 2338583280
model.safetensors.index.json ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 7301832704
4
+ },
5
+ "weight_map": {
6
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
7
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.10.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.11.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.11.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.11.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.12.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.12.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.12.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.13.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.13.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.13.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.14.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.14.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.14.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.15.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.15.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.15.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.16.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.16.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.16.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.17.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.17.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.17.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.18.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.18.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.18.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
107
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
108
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
110
+ "model.layers.19.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.19.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.19.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.2.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.2.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.2.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
125
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
126
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
127
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
128
+ "model.layers.20.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
129
+ "model.layers.20.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
130
+ "model.layers.20.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
131
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
132
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
133
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
134
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
135
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
136
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
137
+ "model.layers.21.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
138
+ "model.layers.21.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
139
+ "model.layers.21.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
140
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
141
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
142
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
143
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
144
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
145
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
146
+ "model.layers.22.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
147
+ "model.layers.22.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
148
+ "model.layers.22.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
149
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
150
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
151
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
152
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
153
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
154
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
155
+ "model.layers.23.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
156
+ "model.layers.23.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
157
+ "model.layers.23.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
158
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
159
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
160
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
161
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
162
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
163
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
164
+ "model.layers.24.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
165
+ "model.layers.24.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
166
+ "model.layers.24.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
167
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
168
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
169
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
170
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
171
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
172
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
173
+ "model.layers.25.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
174
+ "model.layers.25.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
175
+ "model.layers.25.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
176
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
177
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
178
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
179
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
180
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
181
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
182
+ "model.layers.26.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
183
+ "model.layers.26.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
184
+ "model.layers.26.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
185
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
186
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
187
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
188
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
189
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
190
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
191
+ "model.layers.27.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
192
+ "model.layers.27.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
193
+ "model.layers.27.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
194
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
195
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
196
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
197
+ "model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
198
+ "model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
199
+ "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
200
+ "model.layers.28.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
201
+ "model.layers.28.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
202
+ "model.layers.28.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
203
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
204
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
205
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
206
+ "model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
207
+ "model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
208
+ "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
209
+ "model.layers.29.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
210
+ "model.layers.29.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
211
+ "model.layers.29.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
212
+ "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
213
+ "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
214
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
215
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
216
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
217
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
218
+ "model.layers.3.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
219
+ "model.layers.3.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
220
+ "model.layers.3.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
221
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
222
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
223
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
224
+ "model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
225
+ "model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
226
+ "model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
227
+ "model.layers.30.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
228
+ "model.layers.30.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
229
+ "model.layers.30.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
230
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
231
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
232
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
233
+ "model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
234
+ "model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
235
+ "model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
236
+ "model.layers.31.self_attn.kv_a_layernorm.weight": "model-00002-of-00002.safetensors",
237
+ "model.layers.31.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00002.safetensors",
238
+ "model.layers.31.self_attn.kv_b_proj.weight": "model-00002-of-00002.safetensors",
239
+ "model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
240
+ "model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
241
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
242
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
243
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
244
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
245
+ "model.layers.4.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
246
+ "model.layers.4.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
247
+ "model.layers.4.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
248
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
249
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
250
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
251
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
252
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
253
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
254
+ "model.layers.5.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
255
+ "model.layers.5.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
256
+ "model.layers.5.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
257
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
258
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
259
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
260
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
261
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
262
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
263
+ "model.layers.6.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
264
+ "model.layers.6.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
265
+ "model.layers.6.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
266
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
267
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
268
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
269
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
270
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
271
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
272
+ "model.layers.7.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
273
+ "model.layers.7.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
274
+ "model.layers.7.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
275
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
276
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
277
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
278
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
279
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
280
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
281
+ "model.layers.8.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
282
+ "model.layers.8.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
283
+ "model.layers.8.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
284
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
285
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
286
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
287
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
288
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
289
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
290
+ "model.layers.9.self_attn.kv_a_layernorm.weight": "model-00001-of-00002.safetensors",
291
+ "model.layers.9.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00002.safetensors",
292
+ "model.layers.9.self_attn.kv_b_proj.weight": "model-00001-of-00002.safetensors",
293
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
294
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
295
+ "model.norm.weight": "model-00002-of-00002.safetensors"
296
+ }
297
+ }