OPT 2.7b Prompt Tuned
Browse files- config.json +35 -0
- generation_config.json +7 -0
- prompt_tuned_opt.py +239 -0
- pytorch_model-00001-of-00002.bin +3 -0
- pytorch_model-00002-of-00002.bin +3 -0
- pytorch_model.bin.index.json +525 -0
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/opt-2.7b",
|
3 |
+
"_remove_final_layer_norm": false,
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "relu",
|
6 |
+
"architectures": [
|
7 |
+
"OPT_PromptTuned_For_SentimentAnalysis"
|
8 |
+
],
|
9 |
+
"attention_dropout": 0.0,
|
10 |
+
"auto_map": {
|
11 |
+
"AutoModel": "prompt_tuned_opt.OPT_PromptTuned_For_SentimentAnalysis"
|
12 |
+
},
|
13 |
+
"bos_token_id": 2,
|
14 |
+
"do_layer_norm_before": true,
|
15 |
+
"dropout": 0.1,
|
16 |
+
"enable_bias": true,
|
17 |
+
"eos_token_id": 1,
|
18 |
+
"ffn_dim": 10240,
|
19 |
+
"hidden_size": 2560,
|
20 |
+
"init_std": 0.02,
|
21 |
+
"layer_norm_elementwise_affine": true,
|
22 |
+
"layerdrop": 0.0,
|
23 |
+
"max_position_embeddings": 2048,
|
24 |
+
"model_type": "opt",
|
25 |
+
"num_attention_heads": 32,
|
26 |
+
"num_hidden_layers": 32,
|
27 |
+
"pad_token_id": 1,
|
28 |
+
"prefix": "</s>",
|
29 |
+
"prompt_dict_path": "./prompt_embedding",
|
30 |
+
"torch_dtype": "float32",
|
31 |
+
"transformers_version": "4.33.1",
|
32 |
+
"use_cache": true,
|
33 |
+
"vocab_size": 50272,
|
34 |
+
"word_embed_proj_dim": 2560
|
35 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 2,
|
4 |
+
"eos_token_id": 1,
|
5 |
+
"pad_token_id": 1,
|
6 |
+
"transformers_version": "4.33.1"
|
7 |
+
}
|
prompt_tuned_opt.py
ADDED
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoConfig, AutoModelForCausalLM, AutoTokenizer, PreTrainedModel
|
2 |
+
import torch
|
3 |
+
import torch.nn as nn
|
4 |
+
from typing import List, Optional, Tuple, Union
|
5 |
+
|
6 |
+
from transformers.utils import (
|
7 |
+
add_code_sample_docstrings,
|
8 |
+
add_start_docstrings,
|
9 |
+
add_start_docstrings_to_model_forward,
|
10 |
+
logging,
|
11 |
+
replace_return_docstrings,
|
12 |
+
)
|
13 |
+
|
14 |
+
from transformers.modeling_outputs import (
|
15 |
+
BaseModelOutputWithPast,
|
16 |
+
CausalLMOutputWithPast,
|
17 |
+
QuestionAnsweringModelOutput,
|
18 |
+
SequenceClassifierOutputWithPast,
|
19 |
+
)
|
20 |
+
|
21 |
+
from transformers import OPTConfig
|
22 |
+
from transformers.models.opt.modeling_opt import OPTModel
|
23 |
+
from transformers.models.opt.modeling_opt import OPTPreTrainedModel
|
24 |
+
|
25 |
+
class OPT_PromptTuned_For_SentimentAnalysis(OPTPreTrainedModel):
|
26 |
+
_tied_weights_keys = ["lm_head.weight"]
|
27 |
+
_CONFIG_FOR_DOC = "OPTConfig"
|
28 |
+
config_class = OPTConfig
|
29 |
+
|
30 |
+
|
31 |
+
def __init__(self, config):
|
32 |
+
|
33 |
+
self.config = config
|
34 |
+
super().__init__(config)
|
35 |
+
self.model = OPTModel(config)
|
36 |
+
self.lm_head = nn.Linear(config.word_embed_proj_dim, config.vocab_size, bias=False)
|
37 |
+
self.embedding = nn.Embedding(8, config.word_embed_proj_dim)
|
38 |
+
self.post_init()
|
39 |
+
|
40 |
+
|
41 |
+
def get_input_embeddings(self):
|
42 |
+
return self.model.decoder.embed_tokens
|
43 |
+
|
44 |
+
def set_input_embeddings(self, value):
|
45 |
+
self.model.decoder.embed_tokens = value
|
46 |
+
|
47 |
+
def get_output_embeddings(self):
|
48 |
+
return self.lm_head
|
49 |
+
|
50 |
+
def set_output_embeddings(self, new_embeddings):
|
51 |
+
self.lm_head = new_embeddings
|
52 |
+
|
53 |
+
def set_decoder(self, decoder):
|
54 |
+
self.model.decoder = decoder
|
55 |
+
|
56 |
+
def get_decoder(self):
|
57 |
+
return self.model.decoder
|
58 |
+
|
59 |
+
def load_prompts(self):
|
60 |
+
self.embedding.load_state_dict(torch.load(self.config.prompt_dict_path))
|
61 |
+
return self
|
62 |
+
|
63 |
+
@replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
|
64 |
+
def forward(
|
65 |
+
self,
|
66 |
+
input_ids: torch.LongTensor = None,
|
67 |
+
attention_mask: Optional[torch.Tensor] = None,
|
68 |
+
head_mask: Optional[torch.Tensor] = None,
|
69 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
70 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
71 |
+
labels: Optional[torch.LongTensor] = None,
|
72 |
+
use_cache: Optional[bool] = None,
|
73 |
+
output_attentions: Optional[bool] = None,
|
74 |
+
output_hidden_states: Optional[bool] = None,
|
75 |
+
return_dict: Optional[bool] = None
|
76 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
77 |
+
r"""
|
78 |
+
Args:
|
79 |
+
input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
|
80 |
+
Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you
|
81 |
+
provide it.
|
82 |
+
|
83 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
84 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
85 |
+
|
86 |
+
[What are input IDs?](../glossary#input-ids)
|
87 |
+
attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
|
88 |
+
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
89 |
+
|
90 |
+
- 1 for tokens that are **not masked**,
|
91 |
+
- 0 for tokens that are **masked**.
|
92 |
+
|
93 |
+
[What are attention masks?](../glossary#attention-mask)
|
94 |
+
head_mask (`torch.Tensor` of shape `(num_hidden_layers, num_attention_heads)`, *optional*):
|
95 |
+
Mask to nullify selected heads of the attention modules. Mask values selected in `[0, 1]`:
|
96 |
+
|
97 |
+
- 1 indicates the head is **not masked**,
|
98 |
+
- 0 indicates the head is **masked**.
|
99 |
+
|
100 |
+
past_key_values (`tuple(tuple(torch.FloatTensor))`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):
|
101 |
+
Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
|
102 |
+
shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`) and 2 additional tensors of
|
103 |
+
shape `(batch_size, num_heads, encoder_sequence_length, embed_size_per_head)`. The two additional
|
104 |
+
tensors are only required when the model is used as a decoder in a Sequence to Sequence model.
|
105 |
+
|
106 |
+
Contains pre-computed hidden-states (key and values in the self-attention blocks and in the
|
107 |
+
cross-attention blocks) that can be used (see `past_key_values` input) to speed up sequential decoding.
|
108 |
+
|
109 |
+
If `past_key_values` are used, the user can optionally input only the last `decoder_input_ids` (those
|
110 |
+
that don't have their past key value states given to this model) of shape `(batch_size, 1)` instead of
|
111 |
+
all `decoder_input_ids` of shape `(batch_size, sequence_length)`.
|
112 |
+
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
|
113 |
+
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation.
|
114 |
+
This is useful if you want more control over how to convert `input_ids` indices into associated vectors
|
115 |
+
than the model's internal embedding lookup matrix.
|
116 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
117 |
+
Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
|
118 |
+
config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
|
119 |
+
(masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
|
120 |
+
use_cache (`bool`, *optional*):
|
121 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
|
122 |
+
(see `past_key_values`).
|
123 |
+
output_attentions (`bool`, *optional*):
|
124 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
|
125 |
+
returned tensors for more detail.
|
126 |
+
output_hidden_states (`bool`, *optional*):
|
127 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors
|
128 |
+
for more detail.
|
129 |
+
return_dict (`bool`, *optional*):
|
130 |
+
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
131 |
+
|
132 |
+
Returns:
|
133 |
+
|
134 |
+
Example:
|
135 |
+
|
136 |
+
```python
|
137 |
+
>>> from transformers import AutoTokenizer, OPTForCausalLM
|
138 |
+
|
139 |
+
>>> model = OPTForCausalLM.from_pretrained("facebook/opt-350m")
|
140 |
+
>>> tokenizer = AutoTokenizer.from_pretrained("facebook/opt-350m")
|
141 |
+
|
142 |
+
>>> prompt = "Hey, are you conscious? Can you talk to me?"
|
143 |
+
>>> inputs = tokenizer(prompt, return_tensors="pt")
|
144 |
+
|
145 |
+
>>> # Generate
|
146 |
+
>>> generate_ids = model.generate(inputs.input_ids, max_length=30)
|
147 |
+
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
148 |
+
"Hey, are you conscious? Can you talk to me?\nI'm not conscious. I'm just a little bit of a weirdo."
|
149 |
+
```"""
|
150 |
+
|
151 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
152 |
+
output_hidden_states = (
|
153 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
154 |
+
)
|
155 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
156 |
+
|
157 |
+
# decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
|
158 |
+
|
159 |
+
|
160 |
+
outputs = self.model.decoder(
|
161 |
+
input_ids=input_ids,
|
162 |
+
attention_mask=attention_mask,
|
163 |
+
head_mask=head_mask,
|
164 |
+
past_key_values=past_key_values,
|
165 |
+
inputs_embeds=inputs_embeds,
|
166 |
+
use_cache=True,
|
167 |
+
output_attentions=output_attentions,
|
168 |
+
output_hidden_states=output_hidden_states,
|
169 |
+
return_dict=return_dict
|
170 |
+
)
|
171 |
+
|
172 |
+
logits = self.lm_head(outputs[0]).contiguous()
|
173 |
+
|
174 |
+
loss = None
|
175 |
+
if labels is not None:
|
176 |
+
# move labels to correct device to enable model parallelism
|
177 |
+
labels = labels.to(logits.device)
|
178 |
+
# Shift so that tokens < n predict n
|
179 |
+
shift_logits = logits[..., :-1, :].contiguous()
|
180 |
+
shift_labels = labels[..., 1:].contiguous()
|
181 |
+
# Flatten the tokens
|
182 |
+
loss_fct = CrossEntropyLoss()
|
183 |
+
loss = loss_fct(shift_logits.view(-1, self.config.vocab_size), shift_labels.view(-1))
|
184 |
+
|
185 |
+
if not return_dict:
|
186 |
+
output = (logits,) + outputs[1:]
|
187 |
+
return (loss,) + output if loss is not None else output
|
188 |
+
|
189 |
+
return CausalLMOutputWithPast(
|
190 |
+
loss=loss,
|
191 |
+
logits=logits,
|
192 |
+
past_key_values=outputs.past_key_values,
|
193 |
+
hidden_states=outputs.hidden_states,
|
194 |
+
attentions=outputs.attentions,
|
195 |
+
)
|
196 |
+
|
197 |
+
def prepare_inputs_for_generation(
|
198 |
+
self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
|
199 |
+
):
|
200 |
+
|
201 |
+
if past_key_values:
|
202 |
+
input_ids = input_ids[:, -1:]
|
203 |
+
|
204 |
+
if inputs_embeds is not None and past_key_values is None:
|
205 |
+
input = torch.tensor([0,1,2,3,4,5,6,7]).to(inputs_embeds.device)
|
206 |
+
inputs_embeds = torch.cat([self.embedding(input).unsqueeze(0), inputs_embeds], dim=1)
|
207 |
+
attention_mask = torch.cat(
|
208 |
+
[torch.ones((attention_mask.shape[0], 8),
|
209 |
+
device=attention_mask.device),
|
210 |
+
attention_mask], dim=1)
|
211 |
+
model_inputs = {"inputs_embeds": inputs_embeds}
|
212 |
+
else:
|
213 |
+
model_inputs = {"input_ids": input_ids}
|
214 |
+
attention_mask = torch.cat(
|
215 |
+
[torch.ones((attention_mask.shape[0], 8),
|
216 |
+
device=attention_mask.device),
|
217 |
+
attention_mask], dim=1)
|
218 |
+
|
219 |
+
model_inputs.update(
|
220 |
+
{
|
221 |
+
"past_key_values": past_key_values,
|
222 |
+
"use_cache": kwargs.get("use_cache"),
|
223 |
+
"attention_mask": attention_mask,
|
224 |
+
}
|
225 |
+
)
|
226 |
+
return model_inputs
|
227 |
+
|
228 |
+
def generate(self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs):
|
229 |
+
max_new_tokens = 3
|
230 |
+
input_embeddings = self.get_input_embeddings()(input_ids).to(input_ids.device)
|
231 |
+
# Call the original generate method
|
232 |
+
return super().generate(input_ids=input_ids, inputs_embeds=input_embeddings,max_new_tokens=max_new_tokens,attention_mask=attention_mask, **kwargs)
|
233 |
+
|
234 |
+
@staticmethod
|
235 |
+
def _reorder_cache(past_key_values, beam_idx):
|
236 |
+
reordered_past = ()
|
237 |
+
for layer_past in past_key_values:
|
238 |
+
reordered_past += (tuple(past_state.index_select(0, beam_idx) for past_state in layer_past),)
|
239 |
+
return reordered_past
|
pytorch_model-00001-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a212da4c1bfe10de10138ba74183d2bd080301b911fa774c238a73e57e9026c
|
3 |
+
size 9977150467
|
pytorch_model-00002-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b819842995682ab6473d63013d778c3d7cb55f34bfff5a7fe3036d6cfc97ccf7
|
3 |
+
size 629505249
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,525 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 10606469120
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embedding.weight": "pytorch_model-00002-of-00002.bin",
|
7 |
+
"lm_head.weight": "pytorch_model-00001-of-00002.bin",
|
8 |
+
"model.decoder.embed_positions.weight": "pytorch_model-00001-of-00002.bin",
|
9 |
+
"model.decoder.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
|
10 |
+
"model.decoder.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
11 |
+
"model.decoder.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
12 |
+
"model.decoder.layers.0.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
13 |
+
"model.decoder.layers.0.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
14 |
+
"model.decoder.layers.0.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
15 |
+
"model.decoder.layers.0.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
16 |
+
"model.decoder.layers.0.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
17 |
+
"model.decoder.layers.0.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
18 |
+
"model.decoder.layers.0.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
19 |
+
"model.decoder.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
20 |
+
"model.decoder.layers.0.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
21 |
+
"model.decoder.layers.0.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
22 |
+
"model.decoder.layers.0.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
23 |
+
"model.decoder.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
24 |
+
"model.decoder.layers.0.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
25 |
+
"model.decoder.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
26 |
+
"model.decoder.layers.0.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
27 |
+
"model.decoder.layers.0.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
28 |
+
"model.decoder.layers.1.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
29 |
+
"model.decoder.layers.1.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
30 |
+
"model.decoder.layers.1.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
31 |
+
"model.decoder.layers.1.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
32 |
+
"model.decoder.layers.1.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
33 |
+
"model.decoder.layers.1.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
34 |
+
"model.decoder.layers.1.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
35 |
+
"model.decoder.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
36 |
+
"model.decoder.layers.1.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
37 |
+
"model.decoder.layers.1.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
38 |
+
"model.decoder.layers.1.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
39 |
+
"model.decoder.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
40 |
+
"model.decoder.layers.1.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
41 |
+
"model.decoder.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
42 |
+
"model.decoder.layers.1.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
43 |
+
"model.decoder.layers.1.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
44 |
+
"model.decoder.layers.10.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
45 |
+
"model.decoder.layers.10.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
46 |
+
"model.decoder.layers.10.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
47 |
+
"model.decoder.layers.10.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
48 |
+
"model.decoder.layers.10.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
49 |
+
"model.decoder.layers.10.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
50 |
+
"model.decoder.layers.10.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
51 |
+
"model.decoder.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
52 |
+
"model.decoder.layers.10.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
53 |
+
"model.decoder.layers.10.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
54 |
+
"model.decoder.layers.10.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
55 |
+
"model.decoder.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
56 |
+
"model.decoder.layers.10.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
57 |
+
"model.decoder.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
58 |
+
"model.decoder.layers.10.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
59 |
+
"model.decoder.layers.10.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
60 |
+
"model.decoder.layers.11.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
61 |
+
"model.decoder.layers.11.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
62 |
+
"model.decoder.layers.11.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
63 |
+
"model.decoder.layers.11.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
64 |
+
"model.decoder.layers.11.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
65 |
+
"model.decoder.layers.11.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
66 |
+
"model.decoder.layers.11.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
67 |
+
"model.decoder.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
68 |
+
"model.decoder.layers.11.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
69 |
+
"model.decoder.layers.11.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
70 |
+
"model.decoder.layers.11.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
71 |
+
"model.decoder.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
72 |
+
"model.decoder.layers.11.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
73 |
+
"model.decoder.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
74 |
+
"model.decoder.layers.11.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
75 |
+
"model.decoder.layers.11.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
76 |
+
"model.decoder.layers.12.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
77 |
+
"model.decoder.layers.12.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
78 |
+
"model.decoder.layers.12.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
79 |
+
"model.decoder.layers.12.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
80 |
+
"model.decoder.layers.12.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
81 |
+
"model.decoder.layers.12.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
82 |
+
"model.decoder.layers.12.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
83 |
+
"model.decoder.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
84 |
+
"model.decoder.layers.12.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
85 |
+
"model.decoder.layers.12.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
86 |
+
"model.decoder.layers.12.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
87 |
+
"model.decoder.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
88 |
+
"model.decoder.layers.12.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
89 |
+
"model.decoder.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
90 |
+
"model.decoder.layers.12.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
91 |
+
"model.decoder.layers.12.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
92 |
+
"model.decoder.layers.13.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
93 |
+
"model.decoder.layers.13.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
94 |
+
"model.decoder.layers.13.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
95 |
+
"model.decoder.layers.13.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
96 |
+
"model.decoder.layers.13.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
97 |
+
"model.decoder.layers.13.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
98 |
+
"model.decoder.layers.13.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
99 |
+
"model.decoder.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
100 |
+
"model.decoder.layers.13.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
101 |
+
"model.decoder.layers.13.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
102 |
+
"model.decoder.layers.13.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
103 |
+
"model.decoder.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
104 |
+
"model.decoder.layers.13.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
105 |
+
"model.decoder.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
106 |
+
"model.decoder.layers.13.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
107 |
+
"model.decoder.layers.13.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
108 |
+
"model.decoder.layers.14.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
109 |
+
"model.decoder.layers.14.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
110 |
+
"model.decoder.layers.14.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
111 |
+
"model.decoder.layers.14.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
112 |
+
"model.decoder.layers.14.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
113 |
+
"model.decoder.layers.14.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
114 |
+
"model.decoder.layers.14.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
115 |
+
"model.decoder.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
116 |
+
"model.decoder.layers.14.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
117 |
+
"model.decoder.layers.14.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
118 |
+
"model.decoder.layers.14.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
119 |
+
"model.decoder.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
120 |
+
"model.decoder.layers.14.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
121 |
+
"model.decoder.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
122 |
+
"model.decoder.layers.14.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
123 |
+
"model.decoder.layers.14.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
124 |
+
"model.decoder.layers.15.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
125 |
+
"model.decoder.layers.15.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
126 |
+
"model.decoder.layers.15.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
127 |
+
"model.decoder.layers.15.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
128 |
+
"model.decoder.layers.15.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
129 |
+
"model.decoder.layers.15.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
130 |
+
"model.decoder.layers.15.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
131 |
+
"model.decoder.layers.15.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
132 |
+
"model.decoder.layers.15.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
133 |
+
"model.decoder.layers.15.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
134 |
+
"model.decoder.layers.15.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
135 |
+
"model.decoder.layers.15.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
136 |
+
"model.decoder.layers.15.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
137 |
+
"model.decoder.layers.15.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
138 |
+
"model.decoder.layers.15.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
139 |
+
"model.decoder.layers.15.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
140 |
+
"model.decoder.layers.16.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
141 |
+
"model.decoder.layers.16.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
142 |
+
"model.decoder.layers.16.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
143 |
+
"model.decoder.layers.16.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
144 |
+
"model.decoder.layers.16.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
145 |
+
"model.decoder.layers.16.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
146 |
+
"model.decoder.layers.16.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
147 |
+
"model.decoder.layers.16.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
148 |
+
"model.decoder.layers.16.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
149 |
+
"model.decoder.layers.16.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
150 |
+
"model.decoder.layers.16.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
151 |
+
"model.decoder.layers.16.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
152 |
+
"model.decoder.layers.16.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
153 |
+
"model.decoder.layers.16.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
154 |
+
"model.decoder.layers.16.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
155 |
+
"model.decoder.layers.16.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
156 |
+
"model.decoder.layers.17.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
157 |
+
"model.decoder.layers.17.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
158 |
+
"model.decoder.layers.17.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
159 |
+
"model.decoder.layers.17.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
160 |
+
"model.decoder.layers.17.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
161 |
+
"model.decoder.layers.17.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
162 |
+
"model.decoder.layers.17.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
163 |
+
"model.decoder.layers.17.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
164 |
+
"model.decoder.layers.17.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
165 |
+
"model.decoder.layers.17.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
166 |
+
"model.decoder.layers.17.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
167 |
+
"model.decoder.layers.17.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
168 |
+
"model.decoder.layers.17.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
169 |
+
"model.decoder.layers.17.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
170 |
+
"model.decoder.layers.17.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
171 |
+
"model.decoder.layers.17.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
172 |
+
"model.decoder.layers.18.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
173 |
+
"model.decoder.layers.18.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
174 |
+
"model.decoder.layers.18.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
175 |
+
"model.decoder.layers.18.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
176 |
+
"model.decoder.layers.18.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
177 |
+
"model.decoder.layers.18.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
178 |
+
"model.decoder.layers.18.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
179 |
+
"model.decoder.layers.18.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
180 |
+
"model.decoder.layers.18.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
181 |
+
"model.decoder.layers.18.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
182 |
+
"model.decoder.layers.18.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
183 |
+
"model.decoder.layers.18.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
184 |
+
"model.decoder.layers.18.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
185 |
+
"model.decoder.layers.18.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
186 |
+
"model.decoder.layers.18.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
187 |
+
"model.decoder.layers.18.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
188 |
+
"model.decoder.layers.19.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
189 |
+
"model.decoder.layers.19.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
190 |
+
"model.decoder.layers.19.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
191 |
+
"model.decoder.layers.19.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
192 |
+
"model.decoder.layers.19.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
193 |
+
"model.decoder.layers.19.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
194 |
+
"model.decoder.layers.19.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
195 |
+
"model.decoder.layers.19.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
196 |
+
"model.decoder.layers.19.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
197 |
+
"model.decoder.layers.19.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
198 |
+
"model.decoder.layers.19.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
199 |
+
"model.decoder.layers.19.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
200 |
+
"model.decoder.layers.19.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
201 |
+
"model.decoder.layers.19.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
202 |
+
"model.decoder.layers.19.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
203 |
+
"model.decoder.layers.19.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
204 |
+
"model.decoder.layers.2.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
205 |
+
"model.decoder.layers.2.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
206 |
+
"model.decoder.layers.2.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
207 |
+
"model.decoder.layers.2.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
208 |
+
"model.decoder.layers.2.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
209 |
+
"model.decoder.layers.2.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
210 |
+
"model.decoder.layers.2.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
211 |
+
"model.decoder.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
212 |
+
"model.decoder.layers.2.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
213 |
+
"model.decoder.layers.2.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
214 |
+
"model.decoder.layers.2.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
215 |
+
"model.decoder.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
216 |
+
"model.decoder.layers.2.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
217 |
+
"model.decoder.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
218 |
+
"model.decoder.layers.2.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
219 |
+
"model.decoder.layers.2.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
220 |
+
"model.decoder.layers.20.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
221 |
+
"model.decoder.layers.20.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
222 |
+
"model.decoder.layers.20.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
223 |
+
"model.decoder.layers.20.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
224 |
+
"model.decoder.layers.20.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
225 |
+
"model.decoder.layers.20.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
226 |
+
"model.decoder.layers.20.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
227 |
+
"model.decoder.layers.20.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
228 |
+
"model.decoder.layers.20.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
229 |
+
"model.decoder.layers.20.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
230 |
+
"model.decoder.layers.20.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
231 |
+
"model.decoder.layers.20.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
232 |
+
"model.decoder.layers.20.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
233 |
+
"model.decoder.layers.20.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
234 |
+
"model.decoder.layers.20.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
235 |
+
"model.decoder.layers.20.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
236 |
+
"model.decoder.layers.21.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
237 |
+
"model.decoder.layers.21.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
238 |
+
"model.decoder.layers.21.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
239 |
+
"model.decoder.layers.21.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
240 |
+
"model.decoder.layers.21.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
241 |
+
"model.decoder.layers.21.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
242 |
+
"model.decoder.layers.21.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
243 |
+
"model.decoder.layers.21.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
244 |
+
"model.decoder.layers.21.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
245 |
+
"model.decoder.layers.21.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
246 |
+
"model.decoder.layers.21.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
247 |
+
"model.decoder.layers.21.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
248 |
+
"model.decoder.layers.21.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
249 |
+
"model.decoder.layers.21.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
250 |
+
"model.decoder.layers.21.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
251 |
+
"model.decoder.layers.21.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
252 |
+
"model.decoder.layers.22.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
253 |
+
"model.decoder.layers.22.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
254 |
+
"model.decoder.layers.22.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
255 |
+
"model.decoder.layers.22.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
256 |
+
"model.decoder.layers.22.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
257 |
+
"model.decoder.layers.22.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
258 |
+
"model.decoder.layers.22.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
259 |
+
"model.decoder.layers.22.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
260 |
+
"model.decoder.layers.22.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
261 |
+
"model.decoder.layers.22.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
262 |
+
"model.decoder.layers.22.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
263 |
+
"model.decoder.layers.22.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
264 |
+
"model.decoder.layers.22.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
265 |
+
"model.decoder.layers.22.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
266 |
+
"model.decoder.layers.22.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
267 |
+
"model.decoder.layers.22.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
268 |
+
"model.decoder.layers.23.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
269 |
+
"model.decoder.layers.23.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
270 |
+
"model.decoder.layers.23.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
271 |
+
"model.decoder.layers.23.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
272 |
+
"model.decoder.layers.23.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
273 |
+
"model.decoder.layers.23.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
274 |
+
"model.decoder.layers.23.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
275 |
+
"model.decoder.layers.23.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
276 |
+
"model.decoder.layers.23.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
277 |
+
"model.decoder.layers.23.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
278 |
+
"model.decoder.layers.23.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
279 |
+
"model.decoder.layers.23.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
280 |
+
"model.decoder.layers.23.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
281 |
+
"model.decoder.layers.23.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
282 |
+
"model.decoder.layers.23.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
283 |
+
"model.decoder.layers.23.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
284 |
+
"model.decoder.layers.24.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
285 |
+
"model.decoder.layers.24.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
286 |
+
"model.decoder.layers.24.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
287 |
+
"model.decoder.layers.24.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
288 |
+
"model.decoder.layers.24.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
289 |
+
"model.decoder.layers.24.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
290 |
+
"model.decoder.layers.24.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
291 |
+
"model.decoder.layers.24.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
292 |
+
"model.decoder.layers.24.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
293 |
+
"model.decoder.layers.24.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
294 |
+
"model.decoder.layers.24.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
295 |
+
"model.decoder.layers.24.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
296 |
+
"model.decoder.layers.24.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
297 |
+
"model.decoder.layers.24.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
298 |
+
"model.decoder.layers.24.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
299 |
+
"model.decoder.layers.24.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
300 |
+
"model.decoder.layers.25.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
301 |
+
"model.decoder.layers.25.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
302 |
+
"model.decoder.layers.25.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
303 |
+
"model.decoder.layers.25.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
304 |
+
"model.decoder.layers.25.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
305 |
+
"model.decoder.layers.25.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
306 |
+
"model.decoder.layers.25.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
307 |
+
"model.decoder.layers.25.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
308 |
+
"model.decoder.layers.25.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
309 |
+
"model.decoder.layers.25.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
310 |
+
"model.decoder.layers.25.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
311 |
+
"model.decoder.layers.25.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
312 |
+
"model.decoder.layers.25.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
313 |
+
"model.decoder.layers.25.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
314 |
+
"model.decoder.layers.25.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
315 |
+
"model.decoder.layers.25.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
316 |
+
"model.decoder.layers.26.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
317 |
+
"model.decoder.layers.26.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
318 |
+
"model.decoder.layers.26.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
319 |
+
"model.decoder.layers.26.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
320 |
+
"model.decoder.layers.26.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
321 |
+
"model.decoder.layers.26.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
322 |
+
"model.decoder.layers.26.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
323 |
+
"model.decoder.layers.26.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
324 |
+
"model.decoder.layers.26.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
325 |
+
"model.decoder.layers.26.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
326 |
+
"model.decoder.layers.26.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
327 |
+
"model.decoder.layers.26.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
328 |
+
"model.decoder.layers.26.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
329 |
+
"model.decoder.layers.26.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
330 |
+
"model.decoder.layers.26.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
331 |
+
"model.decoder.layers.26.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
332 |
+
"model.decoder.layers.27.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
333 |
+
"model.decoder.layers.27.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
334 |
+
"model.decoder.layers.27.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
335 |
+
"model.decoder.layers.27.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
336 |
+
"model.decoder.layers.27.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
337 |
+
"model.decoder.layers.27.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
338 |
+
"model.decoder.layers.27.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
339 |
+
"model.decoder.layers.27.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
340 |
+
"model.decoder.layers.27.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
341 |
+
"model.decoder.layers.27.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
342 |
+
"model.decoder.layers.27.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
343 |
+
"model.decoder.layers.27.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
344 |
+
"model.decoder.layers.27.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
345 |
+
"model.decoder.layers.27.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
346 |
+
"model.decoder.layers.27.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
347 |
+
"model.decoder.layers.27.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
348 |
+
"model.decoder.layers.28.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
349 |
+
"model.decoder.layers.28.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
350 |
+
"model.decoder.layers.28.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
351 |
+
"model.decoder.layers.28.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
352 |
+
"model.decoder.layers.28.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
353 |
+
"model.decoder.layers.28.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
354 |
+
"model.decoder.layers.28.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
355 |
+
"model.decoder.layers.28.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
356 |
+
"model.decoder.layers.28.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
357 |
+
"model.decoder.layers.28.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
358 |
+
"model.decoder.layers.28.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
359 |
+
"model.decoder.layers.28.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
360 |
+
"model.decoder.layers.28.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
361 |
+
"model.decoder.layers.28.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
362 |
+
"model.decoder.layers.28.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
363 |
+
"model.decoder.layers.28.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
364 |
+
"model.decoder.layers.29.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
365 |
+
"model.decoder.layers.29.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
366 |
+
"model.decoder.layers.29.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
367 |
+
"model.decoder.layers.29.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
368 |
+
"model.decoder.layers.29.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
369 |
+
"model.decoder.layers.29.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
370 |
+
"model.decoder.layers.29.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
371 |
+
"model.decoder.layers.29.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
372 |
+
"model.decoder.layers.29.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
373 |
+
"model.decoder.layers.29.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
374 |
+
"model.decoder.layers.29.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
375 |
+
"model.decoder.layers.29.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
376 |
+
"model.decoder.layers.29.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
377 |
+
"model.decoder.layers.29.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
378 |
+
"model.decoder.layers.29.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
379 |
+
"model.decoder.layers.29.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
380 |
+
"model.decoder.layers.3.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
381 |
+
"model.decoder.layers.3.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
382 |
+
"model.decoder.layers.3.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
383 |
+
"model.decoder.layers.3.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
384 |
+
"model.decoder.layers.3.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
385 |
+
"model.decoder.layers.3.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
386 |
+
"model.decoder.layers.3.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
387 |
+
"model.decoder.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
388 |
+
"model.decoder.layers.3.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
389 |
+
"model.decoder.layers.3.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
390 |
+
"model.decoder.layers.3.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
391 |
+
"model.decoder.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
392 |
+
"model.decoder.layers.3.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
393 |
+
"model.decoder.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
394 |
+
"model.decoder.layers.3.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
395 |
+
"model.decoder.layers.3.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
396 |
+
"model.decoder.layers.30.fc1.bias": "pytorch_model-00002-of-00002.bin",
|
397 |
+
"model.decoder.layers.30.fc1.weight": "pytorch_model-00002-of-00002.bin",
|
398 |
+
"model.decoder.layers.30.fc2.bias": "pytorch_model-00002-of-00002.bin",
|
399 |
+
"model.decoder.layers.30.fc2.weight": "pytorch_model-00002-of-00002.bin",
|
400 |
+
"model.decoder.layers.30.final_layer_norm.bias": "pytorch_model-00002-of-00002.bin",
|
401 |
+
"model.decoder.layers.30.final_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
402 |
+
"model.decoder.layers.30.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
|
403 |
+
"model.decoder.layers.30.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
404 |
+
"model.decoder.layers.30.self_attn.out_proj.bias": "pytorch_model-00002-of-00002.bin",
|
405 |
+
"model.decoder.layers.30.self_attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
|
406 |
+
"model.decoder.layers.30.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
|
407 |
+
"model.decoder.layers.30.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
408 |
+
"model.decoder.layers.30.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
|
409 |
+
"model.decoder.layers.30.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
410 |
+
"model.decoder.layers.30.self_attn_layer_norm.bias": "pytorch_model-00002-of-00002.bin",
|
411 |
+
"model.decoder.layers.30.self_attn_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
412 |
+
"model.decoder.layers.31.fc1.bias": "pytorch_model-00002-of-00002.bin",
|
413 |
+
"model.decoder.layers.31.fc1.weight": "pytorch_model-00002-of-00002.bin",
|
414 |
+
"model.decoder.layers.31.fc2.bias": "pytorch_model-00002-of-00002.bin",
|
415 |
+
"model.decoder.layers.31.fc2.weight": "pytorch_model-00002-of-00002.bin",
|
416 |
+
"model.decoder.layers.31.final_layer_norm.bias": "pytorch_model-00002-of-00002.bin",
|
417 |
+
"model.decoder.layers.31.final_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
418 |
+
"model.decoder.layers.31.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
|
419 |
+
"model.decoder.layers.31.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
420 |
+
"model.decoder.layers.31.self_attn.out_proj.bias": "pytorch_model-00002-of-00002.bin",
|
421 |
+
"model.decoder.layers.31.self_attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
|
422 |
+
"model.decoder.layers.31.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
|
423 |
+
"model.decoder.layers.31.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
424 |
+
"model.decoder.layers.31.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
|
425 |
+
"model.decoder.layers.31.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
426 |
+
"model.decoder.layers.31.self_attn_layer_norm.bias": "pytorch_model-00002-of-00002.bin",
|
427 |
+
"model.decoder.layers.31.self_attn_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
428 |
+
"model.decoder.layers.4.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
429 |
+
"model.decoder.layers.4.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
430 |
+
"model.decoder.layers.4.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
431 |
+
"model.decoder.layers.4.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
432 |
+
"model.decoder.layers.4.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
433 |
+
"model.decoder.layers.4.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
434 |
+
"model.decoder.layers.4.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
435 |
+
"model.decoder.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
436 |
+
"model.decoder.layers.4.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
437 |
+
"model.decoder.layers.4.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
438 |
+
"model.decoder.layers.4.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
439 |
+
"model.decoder.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
440 |
+
"model.decoder.layers.4.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
441 |
+
"model.decoder.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
442 |
+
"model.decoder.layers.4.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
443 |
+
"model.decoder.layers.4.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
444 |
+
"model.decoder.layers.5.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
445 |
+
"model.decoder.layers.5.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
446 |
+
"model.decoder.layers.5.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
447 |
+
"model.decoder.layers.5.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
448 |
+
"model.decoder.layers.5.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
449 |
+
"model.decoder.layers.5.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
450 |
+
"model.decoder.layers.5.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
451 |
+
"model.decoder.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
452 |
+
"model.decoder.layers.5.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
453 |
+
"model.decoder.layers.5.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
454 |
+
"model.decoder.layers.5.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
455 |
+
"model.decoder.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
456 |
+
"model.decoder.layers.5.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
457 |
+
"model.decoder.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
458 |
+
"model.decoder.layers.5.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
459 |
+
"model.decoder.layers.5.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
460 |
+
"model.decoder.layers.6.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
461 |
+
"model.decoder.layers.6.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
462 |
+
"model.decoder.layers.6.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
463 |
+
"model.decoder.layers.6.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
464 |
+
"model.decoder.layers.6.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
465 |
+
"model.decoder.layers.6.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
466 |
+
"model.decoder.layers.6.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
467 |
+
"model.decoder.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
468 |
+
"model.decoder.layers.6.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
469 |
+
"model.decoder.layers.6.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
470 |
+
"model.decoder.layers.6.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
471 |
+
"model.decoder.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
472 |
+
"model.decoder.layers.6.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
473 |
+
"model.decoder.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
474 |
+
"model.decoder.layers.6.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
475 |
+
"model.decoder.layers.6.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
476 |
+
"model.decoder.layers.7.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
477 |
+
"model.decoder.layers.7.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
478 |
+
"model.decoder.layers.7.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
479 |
+
"model.decoder.layers.7.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
480 |
+
"model.decoder.layers.7.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
481 |
+
"model.decoder.layers.7.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
482 |
+
"model.decoder.layers.7.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
483 |
+
"model.decoder.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
484 |
+
"model.decoder.layers.7.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
485 |
+
"model.decoder.layers.7.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
486 |
+
"model.decoder.layers.7.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
487 |
+
"model.decoder.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
488 |
+
"model.decoder.layers.7.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
489 |
+
"model.decoder.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
490 |
+
"model.decoder.layers.7.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
491 |
+
"model.decoder.layers.7.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
492 |
+
"model.decoder.layers.8.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
493 |
+
"model.decoder.layers.8.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
494 |
+
"model.decoder.layers.8.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
495 |
+
"model.decoder.layers.8.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
496 |
+
"model.decoder.layers.8.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
497 |
+
"model.decoder.layers.8.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
498 |
+
"model.decoder.layers.8.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
499 |
+
"model.decoder.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
500 |
+
"model.decoder.layers.8.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
501 |
+
"model.decoder.layers.8.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
502 |
+
"model.decoder.layers.8.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
503 |
+
"model.decoder.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
504 |
+
"model.decoder.layers.8.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
505 |
+
"model.decoder.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
506 |
+
"model.decoder.layers.8.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
507 |
+
"model.decoder.layers.8.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
508 |
+
"model.decoder.layers.9.fc1.bias": "pytorch_model-00001-of-00002.bin",
|
509 |
+
"model.decoder.layers.9.fc1.weight": "pytorch_model-00001-of-00002.bin",
|
510 |
+
"model.decoder.layers.9.fc2.bias": "pytorch_model-00001-of-00002.bin",
|
511 |
+
"model.decoder.layers.9.fc2.weight": "pytorch_model-00001-of-00002.bin",
|
512 |
+
"model.decoder.layers.9.final_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
513 |
+
"model.decoder.layers.9.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
514 |
+
"model.decoder.layers.9.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
|
515 |
+
"model.decoder.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
516 |
+
"model.decoder.layers.9.self_attn.out_proj.bias": "pytorch_model-00001-of-00002.bin",
|
517 |
+
"model.decoder.layers.9.self_attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
|
518 |
+
"model.decoder.layers.9.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
|
519 |
+
"model.decoder.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
520 |
+
"model.decoder.layers.9.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
|
521 |
+
"model.decoder.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
522 |
+
"model.decoder.layers.9.self_attn_layer_norm.bias": "pytorch_model-00001-of-00002.bin",
|
523 |
+
"model.decoder.layers.9.self_attn_layer_norm.weight": "pytorch_model-00001-of-00002.bin"
|
524 |
+
}
|
525 |
+
}
|