Upload HATForCausalLM
Browse files- config.json +86 -0
- config.py +232 -0
- generation_config.json +4 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +418 -0
config.json
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"auto_map": {
|
3 |
+
"AutoConfig": "config.HATArchitectureConfig",
|
4 |
+
"AutoModelForCausalLM": "model.HATForCausalLM"
|
5 |
+
},
|
6 |
+
"backbone_config": {
|
7 |
+
"hidden_size": 4096,
|
8 |
+
"intermediate_size": 14336,
|
9 |
+
"max_position_embeddings": 32900,
|
10 |
+
"mlp_bias": false,
|
11 |
+
"num_attention_heads": 32,
|
12 |
+
"num_hidden_layers": 32,
|
13 |
+
"num_key_value_heads": 8,
|
14 |
+
"rms_norm_eps": 1e-05,
|
15 |
+
"rope_scaling": {
|
16 |
+
"factor": 8.0,
|
17 |
+
"high_freq_factor": 4.0,
|
18 |
+
"low_freq_factor": 1.0,
|
19 |
+
"original_max_position_embeddings": 8192,
|
20 |
+
"rope_type": "llama3"
|
21 |
+
},
|
22 |
+
"rope_theta": 500000,
|
23 |
+
"sliding_window": null,
|
24 |
+
"transformers_version": null,
|
25 |
+
"use_cache": true,
|
26 |
+
"vocab_size": 0
|
27 |
+
},
|
28 |
+
"decoder_config": {
|
29 |
+
"cross_attention_config": {
|
30 |
+
"attention_num_kv_heads": 8,
|
31 |
+
"hidden_size": 1024,
|
32 |
+
"hidden_size_kv": 4096,
|
33 |
+
"hidden_size_q": 1024,
|
34 |
+
"num_attention_heads": 8,
|
35 |
+
"word_window_size": 1
|
36 |
+
},
|
37 |
+
"cross_attn_every_layer": true,
|
38 |
+
"hidden_size": 1024,
|
39 |
+
"intermediate_size": 2816,
|
40 |
+
"max_position_embeddings": 262144,
|
41 |
+
"mlp_bias": false,
|
42 |
+
"num_attention_heads": 8,
|
43 |
+
"num_hidden_layers": 4,
|
44 |
+
"num_key_value_heads": 8,
|
45 |
+
"rms_norm_eps": 1e-05,
|
46 |
+
"rope_scaling": {
|
47 |
+
"rope_type": "default"
|
48 |
+
},
|
49 |
+
"rope_theta": 100000,
|
50 |
+
"sliding_window": 768,
|
51 |
+
"transformers_version": null,
|
52 |
+
"use_cache": true,
|
53 |
+
"vocab_size": 256
|
54 |
+
},
|
55 |
+
"encoder_config": {
|
56 |
+
"cross_attention_config": {
|
57 |
+
"attention_num_kv_heads": 32,
|
58 |
+
"hidden_size": 4096,
|
59 |
+
"hidden_size_kv": 1024,
|
60 |
+
"hidden_size_q": 4096,
|
61 |
+
"num_attention_heads": 32,
|
62 |
+
"word_window_size": 1
|
63 |
+
},
|
64 |
+
"hidden_size": 1024,
|
65 |
+
"intermediate_size": 2816,
|
66 |
+
"max_position_embeddings": 262144,
|
67 |
+
"mlp_bias": false,
|
68 |
+
"num_attention_heads": 8,
|
69 |
+
"num_hidden_layers": 6,
|
70 |
+
"num_key_value_heads": 8,
|
71 |
+
"rms_norm_eps": 1e-05,
|
72 |
+
"rope_scaling": {
|
73 |
+
"rope_type": "default"
|
74 |
+
},
|
75 |
+
"rope_theta": 100000,
|
76 |
+
"sliding_window": 768,
|
77 |
+
"transformers_version": null,
|
78 |
+
"use_cache": true,
|
79 |
+
"vocab_size": 256
|
80 |
+
},
|
81 |
+
"model_type": "hierarchical_autoregressive_transformer",
|
82 |
+
"special_token_dict": {
|
83 |
+
"<|eot_id|>": 192
|
84 |
+
},
|
85 |
+
"transformers_version": "4.46.3"
|
86 |
+
}
|
config.py
ADDED
@@ -0,0 +1,232 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from dataclasses import dataclass
|
2 |
+
|
3 |
+
import torch.nn as nn
|
4 |
+
from transformers.configuration_utils import PretrainedConfig
|
5 |
+
from transformers.models.llama.configuration_llama import LlamaConfig
|
6 |
+
|
7 |
+
|
8 |
+
@dataclass
|
9 |
+
class TransformerHATModelConfig(LlamaConfig):
|
10 |
+
def __init__(
|
11 |
+
self,
|
12 |
+
hidden_size: int,
|
13 |
+
num_hidden_layers: int,
|
14 |
+
num_attention_heads: int,
|
15 |
+
num_key_value_heads: int,
|
16 |
+
rms_norm_eps: float,
|
17 |
+
intermediate_size: int,
|
18 |
+
max_position_embeddings: int,
|
19 |
+
rope_scaling: dict,
|
20 |
+
rope_theta: float,
|
21 |
+
mlp_bias: bool,
|
22 |
+
use_cache: bool = True,
|
23 |
+
sliding_window: int | None = None,
|
24 |
+
vocab_size: int = 0,
|
25 |
+
hidden_act: str = "silu",
|
26 |
+
**kwargs,
|
27 |
+
):
|
28 |
+
super().__init__(
|
29 |
+
vocab_size=vocab_size,
|
30 |
+
hidden_size=hidden_size,
|
31 |
+
num_hidden_layers=num_hidden_layers,
|
32 |
+
num_attention_heads=num_attention_heads,
|
33 |
+
num_key_value_heads=num_key_value_heads,
|
34 |
+
hidden_act=hidden_act,
|
35 |
+
rms_norm_eps=rms_norm_eps,
|
36 |
+
intermediate_size=intermediate_size,
|
37 |
+
max_position_embeddings=max_position_embeddings,
|
38 |
+
rope_scaling=rope_scaling,
|
39 |
+
rope_theta=rope_theta,
|
40 |
+
mlp_bias=mlp_bias,
|
41 |
+
use_cache=use_cache,
|
42 |
+
**kwargs,
|
43 |
+
)
|
44 |
+
|
45 |
+
self.sliding_window = sliding_window
|
46 |
+
|
47 |
+
def to_dict(self):
|
48 |
+
config_dict = {
|
49 |
+
"vocab_size": self.vocab_size,
|
50 |
+
"hidden_size": self.hidden_size,
|
51 |
+
"num_hidden_layers": self.num_hidden_layers,
|
52 |
+
"num_attention_heads": self.num_attention_heads,
|
53 |
+
"num_key_value_heads": self.num_key_value_heads,
|
54 |
+
"rms_norm_eps": self.rms_norm_eps,
|
55 |
+
"intermediate_size": self.intermediate_size,
|
56 |
+
"max_position_embeddings": self.max_position_embeddings,
|
57 |
+
"rope_scaling": self.rope_scaling,
|
58 |
+
"rope_theta": self.rope_theta,
|
59 |
+
"mlp_bias": self.mlp_bias,
|
60 |
+
"use_cache": self.use_cache,
|
61 |
+
"sliding_window": self.sliding_window,
|
62 |
+
"transformers_version": self.transformers_version,
|
63 |
+
}
|
64 |
+
return config_dict
|
65 |
+
|
66 |
+
|
67 |
+
@dataclass
|
68 |
+
class CrossAttentionConfig:
|
69 |
+
def __init__(
|
70 |
+
self,
|
71 |
+
hidden_size: int,
|
72 |
+
hidden_size_q: int,
|
73 |
+
hidden_size_kv: int,
|
74 |
+
num_attention_heads: int,
|
75 |
+
attention_num_kv_heads: int,
|
76 |
+
word_window_size: int,
|
77 |
+
):
|
78 |
+
self.hidden_size = hidden_size
|
79 |
+
self.hidden_size_q = hidden_size_q
|
80 |
+
self.hidden_size_kv = hidden_size_kv
|
81 |
+
self.num_attention_heads = num_attention_heads
|
82 |
+
self.attention_num_kv_heads = attention_num_kv_heads
|
83 |
+
self.word_window_size = word_window_size
|
84 |
+
|
85 |
+
def to_dict(self):
|
86 |
+
return {
|
87 |
+
"hidden_size_q": self.hidden_size_q,
|
88 |
+
"hidden_size_kv": self.hidden_size_kv,
|
89 |
+
"hidden_size": self.hidden_size,
|
90 |
+
"num_attention_heads": self.num_attention_heads,
|
91 |
+
"attention_num_kv_heads": self.attention_num_kv_heads,
|
92 |
+
"word_window_size": self.word_window_size,
|
93 |
+
}
|
94 |
+
|
95 |
+
|
96 |
+
@dataclass
|
97 |
+
class DecoderHATModelConfig(TransformerHATModelConfig):
|
98 |
+
def __init__(
|
99 |
+
self,
|
100 |
+
num_attention_heads: int,
|
101 |
+
num_key_value_heads: int,
|
102 |
+
sliding_window: int,
|
103 |
+
cross_attention_config: CrossAttentionConfig,
|
104 |
+
cross_attn_every_layer: bool,
|
105 |
+
**kwargs,
|
106 |
+
):
|
107 |
+
super().__init__(
|
108 |
+
num_attention_heads=num_attention_heads,
|
109 |
+
num_key_value_heads=num_key_value_heads,
|
110 |
+
sliding_window=sliding_window,
|
111 |
+
**kwargs,
|
112 |
+
)
|
113 |
+
self.cross_attn_every_layer = cross_attn_every_layer
|
114 |
+
self.cross_attention_config = cross_attention_config
|
115 |
+
|
116 |
+
def to_dict(self):
|
117 |
+
config_dict = super().to_dict()
|
118 |
+
config_dict["cross_attn_every_layer"] = self.cross_attn_every_layer
|
119 |
+
config_dict["cross_attention_config"] = self.cross_attention_config.to_dict()
|
120 |
+
return config_dict
|
121 |
+
|
122 |
+
@classmethod
|
123 |
+
def from_dict(cls, config_dict, **kwargs):
|
124 |
+
config_dict = config_dict.copy() # Avoid modifying the original dict
|
125 |
+
config_dict.update(kwargs) # Apply overrides
|
126 |
+
dict_config = config_dict.pop("cross_attention_config", {})
|
127 |
+
cross_attention_config = CrossAttentionConfig(**dict_config)
|
128 |
+
config_dict["cross_attention_config"] = cross_attention_config
|
129 |
+
return cls(**config_dict)
|
130 |
+
|
131 |
+
|
132 |
+
@dataclass
|
133 |
+
class EncoderHATModelConfig(TransformerHATModelConfig):
|
134 |
+
def __init__(
|
135 |
+
self,
|
136 |
+
cross_attention_config: CrossAttentionConfig,
|
137 |
+
**kwargs,
|
138 |
+
):
|
139 |
+
super().__init__(**kwargs)
|
140 |
+
self.cross_attention_config = cross_attention_config
|
141 |
+
|
142 |
+
@classmethod
|
143 |
+
def from_dict(cls, config_dict, **kwargs):
|
144 |
+
config_dict = config_dict.copy() # Avoid modifying the original dict
|
145 |
+
config_dict.update(kwargs) # Apply overrides
|
146 |
+
dict_config = config_dict.pop("cross_attention_config", {})
|
147 |
+
cross_attention_config = CrossAttentionConfig(**dict_config)
|
148 |
+
config_dict["cross_attention_config"] = cross_attention_config
|
149 |
+
|
150 |
+
return cls(**config_dict)
|
151 |
+
|
152 |
+
def to_dict(self):
|
153 |
+
config_dict = super().to_dict()
|
154 |
+
if self.cross_attention_config:
|
155 |
+
config_dict["cross_attention_config"] = self.cross_attention_config.to_dict()
|
156 |
+
return config_dict
|
157 |
+
|
158 |
+
|
159 |
+
@dataclass
|
160 |
+
class HATArchitectureConfig(PretrainedConfig):
|
161 |
+
model_type: str
|
162 |
+
|
163 |
+
def __init__(
|
164 |
+
self,
|
165 |
+
special_token_dict : dict | None = None,
|
166 |
+
encoder_config: EncoderHATModelConfig | None = None,
|
167 |
+
backbone_config: TransformerHATModelConfig | None = None,
|
168 |
+
decoder_config: DecoderHATModelConfig | None = None,
|
169 |
+
model_type: str = "hierarchical_autoregressive_transformer",
|
170 |
+
eos_token_id: int = 192,
|
171 |
+
max_word_size: int = 100,
|
172 |
+
**kwargs,
|
173 |
+
):
|
174 |
+
super().__init__(**kwargs)
|
175 |
+
self.encoder_config = encoder_config
|
176 |
+
self.backbone_config = backbone_config
|
177 |
+
self.decoder_config = decoder_config
|
178 |
+
self.model_type = model_type
|
179 |
+
self.eos_token_id = eos_token_id
|
180 |
+
self.max_word_size = max_word_size
|
181 |
+
self.special_token_dict = special_token_dict
|
182 |
+
self.transformers_version = "4.46.3"
|
183 |
+
|
184 |
+
@classmethod
|
185 |
+
def from_dict(cls, config_dict, **kwargs):
|
186 |
+
"""
|
187 |
+
Instantiates a HATArchitectureConfig from a Python dictionary of parameters.
|
188 |
+
|
189 |
+
Overrides the base `from_dict` to correctly handle nested config objects.
|
190 |
+
"""
|
191 |
+
config_dict = config_dict.copy() # Avoid modifying the original dict
|
192 |
+
config_dict.update(kwargs) # Apply overrides
|
193 |
+
|
194 |
+
# Pop and instantiate nested config dictionaries
|
195 |
+
encoder_dict = config_dict.pop("encoder_config", {})
|
196 |
+
backbone_dict = config_dict.pop("backbone_config", {})
|
197 |
+
decoder_dict = config_dict.pop("decoder_config", {})
|
198 |
+
|
199 |
+
# Instantiate nested configs
|
200 |
+
encoder_config = EncoderHATModelConfig.from_dict(encoder_dict) if encoder_dict else None
|
201 |
+
backbone_config = TransformerHATModelConfig.from_dict(backbone_dict) if backbone_dict else None
|
202 |
+
decoder_config = DecoderHATModelConfig.from_dict(decoder_dict) if decoder_dict else None
|
203 |
+
special_token_dict = config_dict.pop("special_token_dict", {"<|eot_id|>": 192})
|
204 |
+
max_word_size = config_dict.pop("max_word_size", 100)
|
205 |
+
return cls(
|
206 |
+
encoder_config=encoder_config,
|
207 |
+
backbone_config=backbone_config,
|
208 |
+
decoder_config=decoder_config,
|
209 |
+
special_token_dict=special_token_dict,
|
210 |
+
max_word_size=max_word_size,
|
211 |
+
**config_dict,
|
212 |
+
), {}
|
213 |
+
|
214 |
+
def to_dict(self):
|
215 |
+
config_dict = {}
|
216 |
+
if self.encoder_config:
|
217 |
+
config_dict["encoder_config"] = self.encoder_config.to_dict()
|
218 |
+
if self.backbone_config:
|
219 |
+
config_dict["backbone_config"] = self.backbone_config.to_dict()
|
220 |
+
if self.decoder_config:
|
221 |
+
config_dict["decoder_config"] = self.decoder_config.to_dict()
|
222 |
+
config_dict["model_type"] = self.model_type
|
223 |
+
config_dict["transformers_version"] = self.transformers_version
|
224 |
+
config_dict["auto_map"] = {"AutoConfig": "config.HATArchitectureConfig", "AutoModelForCausalLM": "model.HATForCausalLM"}
|
225 |
+
config_dict["special_token_dict"] = self.special_token_dict
|
226 |
+
return config_dict
|
227 |
+
|
228 |
+
|
229 |
+
class EncoderHATModel(nn.Module):
|
230 |
+
def __init__(self, config: HATArchitectureConfig, *args, **kwargs):
|
231 |
+
super().__init__(*args, **kwargs)
|
232 |
+
self.config = config
|
generation_config.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"transformers_version": "4.46.3"
|
4 |
+
}
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9f521d1f8718e6f1a5c01024634d4d93601510e7a5220cf9bff1bb1d99127da0
|
3 |
+
size 4919609440
|
model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a34cfe3c6655a656ca8cde7015c38e41cff670c3be80dd387346c310fdda2307
|
3 |
+
size 4999819656
|
model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e80d1987d9ecbc99651a16bc1b7181d4e975ebd1fa8c4ef821678b8ea7054407
|
3 |
+
size 4465610896
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 14384990208
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"backbone.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"backbone.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"backbone.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"backbone.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"backbone.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"backbone.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"backbone.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
13 |
+
"backbone.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"backbone.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"backbone.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
16 |
+
"backbone.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"backbone.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
18 |
+
"backbone.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"backbone.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"backbone.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"backbone.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"backbone.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"backbone.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"backbone.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
25 |
+
"backbone.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
26 |
+
"backbone.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"backbone.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
28 |
+
"backbone.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
29 |
+
"backbone.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
30 |
+
"backbone.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"backbone.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"backbone.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"backbone.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
34 |
+
"backbone.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
35 |
+
"backbone.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
36 |
+
"backbone.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
37 |
+
"backbone.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
38 |
+
"backbone.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
39 |
+
"backbone.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
40 |
+
"backbone.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
41 |
+
"backbone.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
42 |
+
"backbone.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
43 |
+
"backbone.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
44 |
+
"backbone.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
45 |
+
"backbone.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
46 |
+
"backbone.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
47 |
+
"backbone.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
48 |
+
"backbone.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
49 |
+
"backbone.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
50 |
+
"backbone.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
51 |
+
"backbone.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
52 |
+
"backbone.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
53 |
+
"backbone.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
54 |
+
"backbone.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
55 |
+
"backbone.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"backbone.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"backbone.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"backbone.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"backbone.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"backbone.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
61 |
+
"backbone.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
62 |
+
"backbone.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
63 |
+
"backbone.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
64 |
+
"backbone.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
65 |
+
"backbone.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
66 |
+
"backbone.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
67 |
+
"backbone.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"backbone.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"backbone.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"backbone.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"backbone.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"backbone.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
73 |
+
"backbone.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"backbone.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"backbone.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
76 |
+
"backbone.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"backbone.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
78 |
+
"backbone.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"backbone.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"backbone.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"backbone.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"backbone.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"backbone.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"backbone.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
85 |
+
"backbone.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"backbone.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"backbone.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
88 |
+
"backbone.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"backbone.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
90 |
+
"backbone.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"backbone.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"backbone.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"backbone.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"backbone.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"backbone.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"backbone.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
97 |
+
"backbone.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"backbone.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"backbone.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
100 |
+
"backbone.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"backbone.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
102 |
+
"backbone.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"backbone.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"backbone.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"backbone.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"backbone.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"backbone.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"backbone.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
109 |
+
"backbone.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"backbone.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"backbone.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
112 |
+
"backbone.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"backbone.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
114 |
+
"backbone.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
115 |
+
"backbone.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
116 |
+
"backbone.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
117 |
+
"backbone.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
118 |
+
"backbone.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
119 |
+
"backbone.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
120 |
+
"backbone.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
121 |
+
"backbone.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
122 |
+
"backbone.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
123 |
+
"backbone.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
124 |
+
"backbone.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"backbone.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
126 |
+
"backbone.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"backbone.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"backbone.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"backbone.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"backbone.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"backbone.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"backbone.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
133 |
+
"backbone.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"backbone.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"backbone.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
136 |
+
"backbone.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"backbone.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
138 |
+
"backbone.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"backbone.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"backbone.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"backbone.layers.22.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
142 |
+
"backbone.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
143 |
+
"backbone.layers.22.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
144 |
+
"backbone.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
145 |
+
"backbone.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
146 |
+
"backbone.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"backbone.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
148 |
+
"backbone.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"backbone.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
150 |
+
"backbone.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
151 |
+
"backbone.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
152 |
+
"backbone.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
153 |
+
"backbone.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
154 |
+
"backbone.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
155 |
+
"backbone.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
156 |
+
"backbone.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
157 |
+
"backbone.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
158 |
+
"backbone.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
159 |
+
"backbone.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
160 |
+
"backbone.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
161 |
+
"backbone.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
162 |
+
"backbone.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
163 |
+
"backbone.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
164 |
+
"backbone.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
165 |
+
"backbone.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
166 |
+
"backbone.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
167 |
+
"backbone.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
168 |
+
"backbone.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
169 |
+
"backbone.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
170 |
+
"backbone.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
171 |
+
"backbone.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
172 |
+
"backbone.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
173 |
+
"backbone.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
174 |
+
"backbone.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
175 |
+
"backbone.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
176 |
+
"backbone.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
177 |
+
"backbone.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
178 |
+
"backbone.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
179 |
+
"backbone.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
180 |
+
"backbone.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
181 |
+
"backbone.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
182 |
+
"backbone.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
183 |
+
"backbone.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
184 |
+
"backbone.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
185 |
+
"backbone.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
186 |
+
"backbone.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
187 |
+
"backbone.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
188 |
+
"backbone.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
189 |
+
"backbone.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
190 |
+
"backbone.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
191 |
+
"backbone.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
192 |
+
"backbone.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
193 |
+
"backbone.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
194 |
+
"backbone.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
195 |
+
"backbone.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
196 |
+
"backbone.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
197 |
+
"backbone.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
198 |
+
"backbone.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
199 |
+
"backbone.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
200 |
+
"backbone.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
201 |
+
"backbone.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
202 |
+
"backbone.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
203 |
+
"backbone.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
204 |
+
"backbone.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
205 |
+
"backbone.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
206 |
+
"backbone.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
207 |
+
"backbone.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
208 |
+
"backbone.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
209 |
+
"backbone.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
210 |
+
"backbone.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
211 |
+
"backbone.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
212 |
+
"backbone.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
213 |
+
"backbone.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
214 |
+
"backbone.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
215 |
+
"backbone.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
216 |
+
"backbone.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
217 |
+
"backbone.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
218 |
+
"backbone.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
219 |
+
"backbone.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
220 |
+
"backbone.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
221 |
+
"backbone.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
222 |
+
"backbone.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
223 |
+
"backbone.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
224 |
+
"backbone.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
225 |
+
"backbone.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
226 |
+
"backbone.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
227 |
+
"backbone.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
228 |
+
"backbone.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
229 |
+
"backbone.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
230 |
+
"backbone.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
231 |
+
"backbone.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
232 |
+
"backbone.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
233 |
+
"backbone.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
234 |
+
"backbone.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
235 |
+
"backbone.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
236 |
+
"backbone.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
237 |
+
"backbone.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
238 |
+
"backbone.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
239 |
+
"backbone.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
240 |
+
"backbone.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
241 |
+
"backbone.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
242 |
+
"backbone.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
243 |
+
"backbone.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
244 |
+
"backbone.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
245 |
+
"backbone.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
246 |
+
"backbone.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
247 |
+
"backbone.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
248 |
+
"backbone.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
249 |
+
"backbone.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
250 |
+
"backbone.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
251 |
+
"backbone.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
252 |
+
"backbone.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
253 |
+
"backbone.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
254 |
+
"backbone.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
255 |
+
"backbone.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
256 |
+
"backbone.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
257 |
+
"backbone.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
258 |
+
"backbone.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
259 |
+
"backbone.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
260 |
+
"backbone.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
261 |
+
"backbone.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
262 |
+
"backbone.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
263 |
+
"backbone.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
264 |
+
"backbone.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
265 |
+
"backbone.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
266 |
+
"backbone.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
267 |
+
"backbone.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
268 |
+
"backbone.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
269 |
+
"backbone.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
270 |
+
"backbone.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
271 |
+
"backbone.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
272 |
+
"backbone.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
273 |
+
"backbone.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
274 |
+
"backbone.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
275 |
+
"backbone.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
276 |
+
"backbone.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
277 |
+
"backbone.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
278 |
+
"backbone.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
279 |
+
"backbone.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
280 |
+
"backbone.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
281 |
+
"backbone.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
282 |
+
"backbone.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
283 |
+
"backbone.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"backbone.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"backbone.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"backbone.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"backbone.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"backbone.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
289 |
+
"backbone.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"backbone.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"backbone.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
292 |
+
"backbone.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"backbone.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
294 |
+
"decoder.decoder_layers.0.cross_attention.k_proj.weight": "model-00003-of-00003.safetensors",
|
295 |
+
"decoder.decoder_layers.0.cross_attention.o_proj.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"decoder.decoder_layers.0.cross_attention.q_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"decoder.decoder_layers.0.cross_attention.v_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"decoder.decoder_layers.0.kv_norm.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"decoder.decoder_layers.0.llama_layer.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"decoder.decoder_layers.0.llama_layer.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
301 |
+
"decoder.decoder_layers.0.llama_layer.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"decoder.decoder_layers.0.llama_layer.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"decoder.decoder_layers.0.llama_layer.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
304 |
+
"decoder.decoder_layers.0.llama_layer.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"decoder.decoder_layers.0.llama_layer.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
306 |
+
"decoder.decoder_layers.0.llama_layer.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"decoder.decoder_layers.0.llama_layer.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"decoder.decoder_layers.0.query_norm.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"decoder.decoder_layers.1.cross_attention.k_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"decoder.decoder_layers.1.cross_attention.o_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"decoder.decoder_layers.1.cross_attention.q_proj.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"decoder.decoder_layers.1.cross_attention.v_proj.weight": "model-00003-of-00003.safetensors",
|
313 |
+
"decoder.decoder_layers.1.kv_norm.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"decoder.decoder_layers.1.llama_layer.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"decoder.decoder_layers.1.llama_layer.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
316 |
+
"decoder.decoder_layers.1.llama_layer.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"decoder.decoder_layers.1.llama_layer.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
318 |
+
"decoder.decoder_layers.1.llama_layer.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"decoder.decoder_layers.1.llama_layer.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"decoder.decoder_layers.1.llama_layer.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"decoder.decoder_layers.1.llama_layer.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"decoder.decoder_layers.1.llama_layer.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"decoder.decoder_layers.1.query_norm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"decoder.decoder_layers.2.cross_attention.k_proj.weight": "model-00003-of-00003.safetensors",
|
325 |
+
"decoder.decoder_layers.2.cross_attention.o_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"decoder.decoder_layers.2.cross_attention.q_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"decoder.decoder_layers.2.cross_attention.v_proj.weight": "model-00003-of-00003.safetensors",
|
328 |
+
"decoder.decoder_layers.2.kv_norm.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"decoder.decoder_layers.2.llama_layer.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
330 |
+
"decoder.decoder_layers.2.llama_layer.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"decoder.decoder_layers.2.llama_layer.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"decoder.decoder_layers.2.llama_layer.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"decoder.decoder_layers.2.llama_layer.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"decoder.decoder_layers.2.llama_layer.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"decoder.decoder_layers.2.llama_layer.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"decoder.decoder_layers.2.llama_layer.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
337 |
+
"decoder.decoder_layers.2.llama_layer.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"decoder.decoder_layers.2.query_norm.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"decoder.decoder_layers.3.cross_attention.k_proj.weight": "model-00003-of-00003.safetensors",
|
340 |
+
"decoder.decoder_layers.3.cross_attention.o_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"decoder.decoder_layers.3.cross_attention.q_proj.weight": "model-00003-of-00003.safetensors",
|
342 |
+
"decoder.decoder_layers.3.cross_attention.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"decoder.decoder_layers.3.kv_norm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"decoder.decoder_layers.3.llama_layer.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"decoder.decoder_layers.3.llama_layer.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"decoder.decoder_layers.3.llama_layer.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"decoder.decoder_layers.3.llama_layer.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"decoder.decoder_layers.3.llama_layer.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
349 |
+
"decoder.decoder_layers.3.llama_layer.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"decoder.decoder_layers.3.llama_layer.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"decoder.decoder_layers.3.llama_layer.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
352 |
+
"decoder.decoder_layers.3.llama_layer.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"decoder.decoder_layers.3.query_norm.weight": "model-00003-of-00003.safetensors",
|
354 |
+
"decoder_connector.first_word_embedding": "model-00003-of-00003.safetensors",
|
355 |
+
"encoder.embedding_layer.weight": "model-00001-of-00003.safetensors",
|
356 |
+
"encoder.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
357 |
+
"encoder.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
358 |
+
"encoder.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
359 |
+
"encoder.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
360 |
+
"encoder.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
361 |
+
"encoder.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
362 |
+
"encoder.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
363 |
+
"encoder.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
364 |
+
"encoder.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
365 |
+
"encoder.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
366 |
+
"encoder.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
367 |
+
"encoder.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"encoder.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"encoder.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"encoder.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"encoder.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"encoder.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
373 |
+
"encoder.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"encoder.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"encoder.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
376 |
+
"encoder.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"encoder.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
378 |
+
"encoder.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"encoder.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"encoder.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"encoder.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"encoder.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"encoder.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"encoder.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
385 |
+
"encoder.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"encoder.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"encoder.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
388 |
+
"encoder.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"encoder.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
390 |
+
"encoder.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"encoder.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"encoder.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"encoder.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"encoder.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"encoder.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"encoder.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
397 |
+
"encoder.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"encoder.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"encoder.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
400 |
+
"encoder.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"encoder.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
402 |
+
"encoder.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"encoder.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"encoder.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"encoder.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"encoder.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"encoder.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
408 |
+
"encoder.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
409 |
+
"encoder.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"encoder_connector.cross_attention_encoder_connector.k_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"encoder_connector.cross_attention_encoder_connector.o_proj.weight": "model-00001-of-00003.safetensors",
|
412 |
+
"encoder_connector.cross_attention_encoder_connector.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"encoder_connector.cross_attention_encoder_connector.v_proj.weight": "model-00001-of-00003.safetensors",
|
414 |
+
"encoder_connector.latent_query": "model-00001-of-00003.safetensors",
|
415 |
+
"layer_norm.weight": "model-00003-of-00003.safetensors",
|
416 |
+
"lm_head.weight": "model-00003-of-00003.safetensors"
|
417 |
+
}
|
418 |
+
}
|