Upload Gemma2ForCausalLM
Browse files- README.md +3 -6
- config.json +38 -0
- configuration_gelinear.py +175 -0
- generation_config.json +8 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +513 -0
README.md
CHANGED
@@ -1,6 +1,3 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
4 |
-
- google/gemma-2-9b-it
|
5 |
-
pipeline_tag: text2text-generation
|
6 |
-
---
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
|
|
|
|
|
config.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Gemma2ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"attn_logit_softcapping": 50.0,
|
8 |
+
"auto_map": {
|
9 |
+
"AutoConfig": "configuration_gelinear.Gemma2Config",
|
10 |
+
"AutoModelForCausalLM": "modeling_gelinear.Gemma2ForCausalLM"
|
11 |
+
},
|
12 |
+
"bos_token_id": 2,
|
13 |
+
"cache_implementation": "hybrid",
|
14 |
+
"eos_token_id": 107,
|
15 |
+
"feature_dim": 64,
|
16 |
+
"final_logit_softcapping": 30.0,
|
17 |
+
"head_dim": 256,
|
18 |
+
"hidden_act": "gelu_pytorch_tanh",
|
19 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
20 |
+
"hidden_size": 3584,
|
21 |
+
"initializer_range": 0.02,
|
22 |
+
"intermediate_size": 14336,
|
23 |
+
"max_position_embeddings": 8192,
|
24 |
+
"model_type": "gemma2",
|
25 |
+
"num_attention_heads": 16,
|
26 |
+
"num_hidden_layers": 42,
|
27 |
+
"num_key_value_heads": 8,
|
28 |
+
"pad_token_id": 0,
|
29 |
+
"query_pre_attn_scalar": 256,
|
30 |
+
"rms_norm_eps": 1e-06,
|
31 |
+
"rope_theta": 10000.0,
|
32 |
+
"sliding_window": 4096,
|
33 |
+
"sliding_window_size": 4096,
|
34 |
+
"torch_dtype": "bfloat16",
|
35 |
+
"transformers_version": "4.50.1",
|
36 |
+
"use_cache": true,
|
37 |
+
"vocab_size": 256000
|
38 |
+
}
|
configuration_gelinear.py
ADDED
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
2 |
+
# This file was automatically generated from src/transformers/models/gemma2/modular_gemma2.py.
|
3 |
+
# Do NOT edit this file manually as any edits will be overwritten by the generation of
|
4 |
+
# the file from the modular. If any change should be done, please apply the change to the
|
5 |
+
# modular_gemma2.py file directly. One of our CI enforces this.
|
6 |
+
# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
7 |
+
# coding=utf-8
|
8 |
+
# Copyright 2024 Google Inc. HuggingFace Inc. team. All rights reserved.
|
9 |
+
#
|
10 |
+
#
|
11 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
12 |
+
# you may not use this file except in compliance with the License.
|
13 |
+
# You may obtain a copy of the License at
|
14 |
+
#
|
15 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
16 |
+
#
|
17 |
+
# Unless required by applicable law or agreed to in writing, software
|
18 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
19 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20 |
+
# See the License for the specific language governing permissions and
|
21 |
+
# limitations under the License.
|
22 |
+
from transformers.configuration_utils import PretrainedConfig
|
23 |
+
|
24 |
+
|
25 |
+
class Gemma2Config(PretrainedConfig):
|
26 |
+
r"""
|
27 |
+
This is the configuration class to store the configuration of a [`Gemma2Model`]. It is used to instantiate an Gemma2
|
28 |
+
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
29 |
+
defaults will yield a similar configuration to that of the Gemma2-7B.
|
30 |
+
e.g. [google/gemma2-7b](https://huggingface.co/google/gemma2-7b)
|
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 |
+
Args:
|
34 |
+
vocab_size (`int`, *optional*, defaults to 256000):
|
35 |
+
Vocabulary size of the Gemma2 model. Defines the number of different tokens that can be represented by the
|
36 |
+
`inputs_ids` passed when calling [`Gemma2Model`]
|
37 |
+
hidden_size (`int`, *optional*, defaults to 2304):
|
38 |
+
Dimension of the hidden representations.
|
39 |
+
intermediate_size (`int`, *optional*, defaults to 9216):
|
40 |
+
Dimension of the MLP representations.
|
41 |
+
num_hidden_layers (`int`, *optional*, defaults to 26):
|
42 |
+
Number of hidden layers in the Transformer decoder.
|
43 |
+
num_attention_heads (`int`, *optional*, defaults to 8):
|
44 |
+
Number of attention heads for each attention layer in the Transformer decoder.
|
45 |
+
num_key_value_heads (`int`, *optional*, defaults to 4):
|
46 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
47 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
48 |
+
`num_key_value_heads=1` the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
49 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
50 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
51 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
52 |
+
`num_attention_heads`.
|
53 |
+
head_dim (`int`, *optional*, defaults to 256):
|
54 |
+
The attention head dimension.
|
55 |
+
hidden_activation (`str` or `function`, *optional*, defaults to `"gelu_pytorch_tanh"`):
|
56 |
+
The non-linear activation function (function or string) in the decoder. Will default to `"gelu_pytorch_tanh"`
|
57 |
+
if not specified. `"gelu_pytorch_tanh"` uses an approximation of the `"gelu"` activation function.
|
58 |
+
max_position_embeddings (`int`, *optional*, defaults to 8192):
|
59 |
+
The maximum sequence length that this model might ever be used with.
|
60 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
61 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
62 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
63 |
+
The epsilon used by the rms normalization layers.
|
64 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
65 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
66 |
+
relevant if `config.is_decoder=True`.
|
67 |
+
pad_token_id (`int`, *optional*, defaults to 0):
|
68 |
+
Padding token id.
|
69 |
+
eos_token_id (`int`, *optional*, defaults to 1):
|
70 |
+
End of stream token id.
|
71 |
+
bos_token_id (`int`, *optional*, defaults to 2):
|
72 |
+
Beginning of stream token id.
|
73 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `True`):
|
74 |
+
Whether to tie weight embeddings
|
75 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
76 |
+
The base period of the RoPE embeddings.
|
77 |
+
attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
|
78 |
+
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
79 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
80 |
+
The dropout ratio for the attention probabilities.
|
81 |
+
query_pre_attn_scalar (`float`, *optional*, defaults to 256): scaling factor used on the attention scores
|
82 |
+
sliding_window (`int`, *optional*, defaults to 4096): in Gemma2, every other layer uses sliding window attention. This is the
|
83 |
+
size of the sliding window.
|
84 |
+
feature_dim (`int`, defaults to 64): in Gemma2. This is the feature dimension of feature map.
|
85 |
+
final_logit_softcapping (`float`, *optional*, defaults to 30.0): scaling factor when applying tanh softcapping on the logits.
|
86 |
+
attn_logit_softcapping (`float`, *optional*, defaults to 50.0): scaling factor when applying tanh softcapping on the attention scores.
|
87 |
+
cache_implementation (`str`, *optional*, defaults to `"hybrid"`): the cache type to be used with `generate`.
|
88 |
+
|
89 |
+
```python
|
90 |
+
>>> from transformers import Gemma2Model, Gemma2Config
|
91 |
+
>>> # Initializing a Gemma2 gemma2-7b style configuration
|
92 |
+
>>> configuration = Gemma2Config()
|
93 |
+
>>> # Initializing a model from the gemma2-7b style configuration
|
94 |
+
>>> model = Gemma2Model(configuration)
|
95 |
+
>>> # Accessing the model configuration
|
96 |
+
>>> configuration = model.config
|
97 |
+
```"""
|
98 |
+
|
99 |
+
model_type = "gemma2"
|
100 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
101 |
+
base_model_tp_plan = {
|
102 |
+
"layers.*.self_attn.q_proj": "colwise",
|
103 |
+
"layers.*.self_attn.k_proj": "colwise",
|
104 |
+
"layers.*.self_attn.v_proj": "colwise",
|
105 |
+
"layers.*.self_attn.o_proj": "rowwise",
|
106 |
+
"layers.*.mlp.gate_proj": "colwise",
|
107 |
+
"layers.*.mlp.up_proj": "colwise",
|
108 |
+
"layers.*.mlp.down_proj": "rowwise",
|
109 |
+
}
|
110 |
+
base_model_pp_plan = {
|
111 |
+
"embed_tokens": (["input_ids"], ["inputs_embeds"]),
|
112 |
+
"layers": (["hidden_states", "attention_mask"], ["hidden_states"]),
|
113 |
+
"norm": (["hidden_states"], ["hidden_states"]),
|
114 |
+
}
|
115 |
+
|
116 |
+
def __init__(
|
117 |
+
self,
|
118 |
+
vocab_size=256000,
|
119 |
+
hidden_size=2304,
|
120 |
+
intermediate_size=9216,
|
121 |
+
num_hidden_layers=26,
|
122 |
+
num_attention_heads=8,
|
123 |
+
num_key_value_heads=4,
|
124 |
+
head_dim=256,
|
125 |
+
hidden_activation="gelu_pytorch_tanh",
|
126 |
+
max_position_embeddings=8192,
|
127 |
+
initializer_range=0.02,
|
128 |
+
rms_norm_eps=1e-6,
|
129 |
+
use_cache=True,
|
130 |
+
pad_token_id=0,
|
131 |
+
eos_token_id=1,
|
132 |
+
bos_token_id=2,
|
133 |
+
tie_word_embeddings=True,
|
134 |
+
rope_theta=10000.0,
|
135 |
+
attention_bias=False,
|
136 |
+
attention_dropout=0.0,
|
137 |
+
query_pre_attn_scalar=256,
|
138 |
+
sliding_window=4096,
|
139 |
+
feature_dim=64,
|
140 |
+
final_logit_softcapping=30.0,
|
141 |
+
attn_logit_softcapping=50.0,
|
142 |
+
cache_implementation="hybrid",
|
143 |
+
**kwargs,
|
144 |
+
):
|
145 |
+
super().__init__(
|
146 |
+
pad_token_id=pad_token_id,
|
147 |
+
bos_token_id=bos_token_id,
|
148 |
+
eos_token_id=eos_token_id,
|
149 |
+
tie_word_embeddings=tie_word_embeddings,
|
150 |
+
**kwargs,
|
151 |
+
)
|
152 |
+
self.vocab_size = vocab_size
|
153 |
+
self.max_position_embeddings = max_position_embeddings
|
154 |
+
self.hidden_size = hidden_size
|
155 |
+
self.intermediate_size = intermediate_size
|
156 |
+
self.num_hidden_layers = num_hidden_layers
|
157 |
+
self.num_attention_heads = num_attention_heads
|
158 |
+
self.head_dim = head_dim
|
159 |
+
self.num_key_value_heads = num_key_value_heads
|
160 |
+
self.initializer_range = initializer_range
|
161 |
+
self.rms_norm_eps = rms_norm_eps
|
162 |
+
self.use_cache = use_cache
|
163 |
+
self.rope_theta = rope_theta
|
164 |
+
self.attention_bias = attention_bias
|
165 |
+
self.attention_dropout = attention_dropout
|
166 |
+
self.hidden_activation = hidden_activation
|
167 |
+
self.query_pre_attn_scalar = query_pre_attn_scalar
|
168 |
+
self.sliding_window = sliding_window
|
169 |
+
self.feature_dim = feature_dim
|
170 |
+
self.final_logit_softcapping = final_logit_softcapping
|
171 |
+
self.attn_logit_softcapping = attn_logit_softcapping
|
172 |
+
self.cache_implementation = cache_implementation
|
173 |
+
|
174 |
+
|
175 |
+
__all__ = ["Gemma2Config"]
|
generation_config.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 2,
|
4 |
+
"cache_implementation": "hybrid",
|
5 |
+
"eos_token_id": 107,
|
6 |
+
"pad_token_id": 0,
|
7 |
+
"transformers_version": "4.50.1"
|
8 |
+
}
|
model-00001-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32b07f56bc9ee5233cfafb5e21cb9ab7c56c1ada54caffd96a44637a51e63f3f
|
3 |
+
size 4907547200
|
model-00002-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6078f678abb36253979f55b6531a1f029db6523c635d4a17bce551950501363
|
3 |
+
size 4953863808
|
model-00003-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63563eb3111b202cedfc4a306cd280201be6d7bea20c55a1ef36a5499b53fbea
|
3 |
+
size 4968514400
|
model-00004-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5daebeabc72d8800b6fcfbe0ce190846cb2d491a5a39512b22220686db06f9ca
|
3 |
+
size 3675566320
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,513 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 18505432064
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
12 |
+
"model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
13 |
+
"model.layers.0.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
18 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
19 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
20 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
21 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
22 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
23 |
+
"model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
24 |
+
"model.layers.1.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
25 |
+
"model.layers.1.self_attn.feature_map_k.layer": "model-00001-of-00004.safetensors",
|
26 |
+
"model.layers.1.self_attn.feature_map_q.layer": "model-00001-of-00004.safetensors",
|
27 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
28 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
36 |
+
"model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
37 |
+
"model.layers.10.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
38 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
39 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
42 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
43 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
44 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
45 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
46 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
47 |
+
"model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
48 |
+
"model.layers.11.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
49 |
+
"model.layers.11.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
50 |
+
"model.layers.11.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
51 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
52 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
53 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
60 |
+
"model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
61 |
+
"model.layers.12.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
66 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
67 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
68 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
69 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
70 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
71 |
+
"model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
72 |
+
"model.layers.13.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
73 |
+
"model.layers.13.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
74 |
+
"model.layers.13.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
75 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
76 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
77 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
84 |
+
"model.layers.14.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
85 |
+
"model.layers.14.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
86 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
87 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
90 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
91 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
92 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
93 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
94 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
95 |
+
"model.layers.15.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
96 |
+
"model.layers.15.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
97 |
+
"model.layers.15.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
98 |
+
"model.layers.15.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
99 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
100 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
101 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
108 |
+
"model.layers.16.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
109 |
+
"model.layers.16.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
110 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
111 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
114 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
115 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
116 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
117 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
118 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
119 |
+
"model.layers.17.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
120 |
+
"model.layers.17.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
121 |
+
"model.layers.17.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
122 |
+
"model.layers.17.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
123 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
124 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
125 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
132 |
+
"model.layers.18.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
133 |
+
"model.layers.18.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
134 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
135 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
138 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
139 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
140 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
141 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
142 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
143 |
+
"model.layers.19.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
144 |
+
"model.layers.19.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
145 |
+
"model.layers.19.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
146 |
+
"model.layers.19.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
147 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
148 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
149 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
156 |
+
"model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
157 |
+
"model.layers.2.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
158 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
159 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
162 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
163 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
164 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
165 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
166 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
167 |
+
"model.layers.20.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
168 |
+
"model.layers.20.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
172 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
173 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
174 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
175 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
176 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
177 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
178 |
+
"model.layers.21.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
179 |
+
"model.layers.21.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
180 |
+
"model.layers.21.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
181 |
+
"model.layers.21.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
182 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
183 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
186 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
187 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
188 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
189 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
190 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
191 |
+
"model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
192 |
+
"model.layers.22.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
196 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
197 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
198 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
199 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
200 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
201 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
202 |
+
"model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
203 |
+
"model.layers.23.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
204 |
+
"model.layers.23.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
205 |
+
"model.layers.23.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
206 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
207 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
210 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
211 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
212 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
213 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
214 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
215 |
+
"model.layers.24.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
216 |
+
"model.layers.24.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
220 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
221 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
222 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
223 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
224 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
225 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
226 |
+
"model.layers.25.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
227 |
+
"model.layers.25.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
228 |
+
"model.layers.25.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
229 |
+
"model.layers.25.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
230 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
231 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
234 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
235 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
236 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
237 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
238 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
239 |
+
"model.layers.26.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
240 |
+
"model.layers.26.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
244 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
245 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
246 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
247 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
248 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
249 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
250 |
+
"model.layers.27.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
251 |
+
"model.layers.27.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
252 |
+
"model.layers.27.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
253 |
+
"model.layers.27.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
254 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
255 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
258 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
259 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
260 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
261 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
262 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
263 |
+
"model.layers.28.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
264 |
+
"model.layers.28.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
268 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
269 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
270 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
271 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
272 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
273 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
274 |
+
"model.layers.29.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
275 |
+
"model.layers.29.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
276 |
+
"model.layers.29.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
277 |
+
"model.layers.29.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
278 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
279 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
282 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
283 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
284 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
285 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
286 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
287 |
+
"model.layers.3.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
288 |
+
"model.layers.3.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
289 |
+
"model.layers.3.self_attn.feature_map_k.layer": "model-00001-of-00004.safetensors",
|
290 |
+
"model.layers.3.self_attn.feature_map_q.layer": "model-00001-of-00004.safetensors",
|
291 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
292 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
293 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
300 |
+
"model.layers.30.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
301 |
+
"model.layers.30.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
302 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
303 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
306 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
307 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
308 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
309 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
310 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
311 |
+
"model.layers.31.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
312 |
+
"model.layers.31.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
313 |
+
"model.layers.31.self_attn.feature_map_k.layer": "model-00003-of-00004.safetensors",
|
314 |
+
"model.layers.31.self_attn.feature_map_q.layer": "model-00003-of-00004.safetensors",
|
315 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
316 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
317 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
324 |
+
"model.layers.32.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
325 |
+
"model.layers.32.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
326 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
327 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
330 |
+
"model.layers.33.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
331 |
+
"model.layers.33.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
332 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
333 |
+
"model.layers.33.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
334 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
335 |
+
"model.layers.33.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
336 |
+
"model.layers.33.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
337 |
+
"model.layers.33.self_attn.feature_map_k.layer": "model-00004-of-00004.safetensors",
|
338 |
+
"model.layers.33.self_attn.feature_map_q.layer": "model-00004-of-00004.safetensors",
|
339 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
340 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
341 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
348 |
+
"model.layers.34.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
349 |
+
"model.layers.34.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
350 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
351 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
354 |
+
"model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
355 |
+
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
356 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
357 |
+
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
358 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
359 |
+
"model.layers.35.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
360 |
+
"model.layers.35.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
361 |
+
"model.layers.35.self_attn.feature_map_k.layer": "model-00004-of-00004.safetensors",
|
362 |
+
"model.layers.35.self_attn.feature_map_q.layer": "model-00004-of-00004.safetensors",
|
363 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
364 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
365 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
367 |
+
"model.layers.36.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
368 |
+
"model.layers.36.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
369 |
+
"model.layers.36.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
370 |
+
"model.layers.36.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
371 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
372 |
+
"model.layers.36.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
373 |
+
"model.layers.36.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
374 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
375 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
376 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
377 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
378 |
+
"model.layers.37.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
379 |
+
"model.layers.37.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
380 |
+
"model.layers.37.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
381 |
+
"model.layers.37.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
382 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
383 |
+
"model.layers.37.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
384 |
+
"model.layers.37.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
385 |
+
"model.layers.37.self_attn.feature_map_k.layer": "model-00004-of-00004.safetensors",
|
386 |
+
"model.layers.37.self_attn.feature_map_q.layer": "model-00004-of-00004.safetensors",
|
387 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
388 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
389 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
390 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
391 |
+
"model.layers.38.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
392 |
+
"model.layers.38.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
393 |
+
"model.layers.38.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
394 |
+
"model.layers.38.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
395 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
396 |
+
"model.layers.38.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
397 |
+
"model.layers.38.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
398 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
399 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
400 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
401 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
402 |
+
"model.layers.39.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
403 |
+
"model.layers.39.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
404 |
+
"model.layers.39.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
405 |
+
"model.layers.39.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
406 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
407 |
+
"model.layers.39.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
408 |
+
"model.layers.39.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
409 |
+
"model.layers.39.self_attn.feature_map_k.layer": "model-00004-of-00004.safetensors",
|
410 |
+
"model.layers.39.self_attn.feature_map_q.layer": "model-00004-of-00004.safetensors",
|
411 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
412 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
413 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
414 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
415 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
416 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
417 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
418 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
419 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
420 |
+
"model.layers.4.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
421 |
+
"model.layers.4.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
422 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
423 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
424 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
425 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
426 |
+
"model.layers.40.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
427 |
+
"model.layers.40.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
428 |
+
"model.layers.40.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
429 |
+
"model.layers.40.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
430 |
+
"model.layers.40.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
431 |
+
"model.layers.40.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
432 |
+
"model.layers.40.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
433 |
+
"model.layers.40.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
434 |
+
"model.layers.40.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
435 |
+
"model.layers.40.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
436 |
+
"model.layers.40.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
437 |
+
"model.layers.41.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
438 |
+
"model.layers.41.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
439 |
+
"model.layers.41.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
440 |
+
"model.layers.41.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
441 |
+
"model.layers.41.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
442 |
+
"model.layers.41.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
443 |
+
"model.layers.41.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
444 |
+
"model.layers.41.self_attn.feature_map_k.layer": "model-00004-of-00004.safetensors",
|
445 |
+
"model.layers.41.self_attn.feature_map_q.layer": "model-00004-of-00004.safetensors",
|
446 |
+
"model.layers.41.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
447 |
+
"model.layers.41.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
448 |
+
"model.layers.41.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
449 |
+
"model.layers.41.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
450 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
451 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
452 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
453 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
454 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
455 |
+
"model.layers.5.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
456 |
+
"model.layers.5.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
457 |
+
"model.layers.5.self_attn.feature_map_k.layer": "model-00001-of-00004.safetensors",
|
458 |
+
"model.layers.5.self_attn.feature_map_q.layer": "model-00001-of-00004.safetensors",
|
459 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
460 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
461 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
462 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
463 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
464 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
465 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
466 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
467 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
468 |
+
"model.layers.6.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
469 |
+
"model.layers.6.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
470 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
471 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
472 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
473 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
474 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
475 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
476 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
477 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
478 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
479 |
+
"model.layers.7.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
480 |
+
"model.layers.7.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
481 |
+
"model.layers.7.self_attn.feature_map_k.layer": "model-00001-of-00004.safetensors",
|
482 |
+
"model.layers.7.self_attn.feature_map_q.layer": "model-00001-of-00004.safetensors",
|
483 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
484 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
485 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
486 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
487 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
488 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
489 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
490 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
491 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
492 |
+
"model.layers.8.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
493 |
+
"model.layers.8.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
494 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
495 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
496 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
497 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
498 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
499 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
500 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
501 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
502 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
503 |
+
"model.layers.9.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
504 |
+
"model.layers.9.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
505 |
+
"model.layers.9.self_attn.feature_map_k.layer": "model-00002-of-00004.safetensors",
|
506 |
+
"model.layers.9.self_attn.feature_map_q.layer": "model-00002-of-00004.safetensors",
|
507 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
508 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
509 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
510 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
511 |
+
"model.norm.weight": "model-00004-of-00004.safetensors"
|
512 |
+
}
|
513 |
+
}
|