Upload model
Browse files- config.json +46 -0
- configuration_reward_model.py +13 -0
- modeling_rewards.py +85 -0
- pytorch_model-00001-of-00005.bin +3 -0
- pytorch_model-00002-of-00005.bin +3 -0
- pytorch_model-00003-of-00005.bin +3 -0
- pytorch_model-00004-of-00005.bin +3 -0
- pytorch_model-00005-of-00005.bin +3 -0
- pytorch_model.bin.index.json +688 -0
config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/mnt/nvme/home/zanussbaum/.cache/huggingface/hub/models--LawInformedAI--reward_model_epoch_0/snapshots/2f4cc4d6ce97d6cfdb43d225e47f1736a72e5152/",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"RewardModel"
|
6 |
+
],
|
7 |
+
"attn_pdrop": 0.0,
|
8 |
+
"auto_map": {
|
9 |
+
"AutoConfig": "configuration_reward_model.RewardConfig",
|
10 |
+
"AutoModel": "modeling_rewards.RewardModel"
|
11 |
+
},
|
12 |
+
"base_model": "LawInformedAI/gptj-finetuned_court_opinions",
|
13 |
+
"bos_token_id": 50256,
|
14 |
+
"embd_pdrop": 0.0,
|
15 |
+
"eos_token_id": 50256,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"layer_norm_epsilon": 1e-05,
|
18 |
+
"n_embd": 4096,
|
19 |
+
"n_head": 16,
|
20 |
+
"n_inner": null,
|
21 |
+
"n_layer": 28,
|
22 |
+
"n_positions": 2048,
|
23 |
+
"pad_id": null,
|
24 |
+
"resid_pdrop": 0.0,
|
25 |
+
"rotary": true,
|
26 |
+
"rotary_dim": 64,
|
27 |
+
"scale_attn_weights": true,
|
28 |
+
"summary_activation": null,
|
29 |
+
"summary_first_dropout": 0.1,
|
30 |
+
"summary_proj_to_labels": true,
|
31 |
+
"summary_type": "cls_index",
|
32 |
+
"summary_use_proj": true,
|
33 |
+
"task_specific_params": {
|
34 |
+
"text-generation": {
|
35 |
+
"do_sample": true,
|
36 |
+
"max_length": 50,
|
37 |
+
"temperature": 1.0
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"tie_word_embeddings": false,
|
41 |
+
"tokenizer_class": "GPT2Tokenizer",
|
42 |
+
"torch_dtype": "float32",
|
43 |
+
"transformers_version": "4.27.4",
|
44 |
+
"use_cache": false,
|
45 |
+
"vocab_size": 50400
|
46 |
+
}
|
configuration_reward_model.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import PretrainedConfig
|
2 |
+
from typing import List
|
3 |
+
|
4 |
+
|
5 |
+
class RewardConfig(PretrainedConfig):
|
6 |
+
|
7 |
+
def __init__(
|
8 |
+
self,
|
9 |
+
base_model="EleutherAI/gpt-j-6b",
|
10 |
+
**kwargs,
|
11 |
+
):
|
12 |
+
self.base_model = base_model
|
13 |
+
super().__init__(**kwargs)
|
modeling_rewards.py
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import PreTrainedModel
|
2 |
+
from transformers.modeling_outputs import ModelOutput
|
3 |
+
from torch import nn
|
4 |
+
import torch
|
5 |
+
from dataclasses import dataclass
|
6 |
+
from typing import Optional
|
7 |
+
from configuration_reward_model import RewardConfig
|
8 |
+
from transformers import AutoModelForCausalLM
|
9 |
+
|
10 |
+
|
11 |
+
# adapted from https://github.com/Dahoas/reward-modeling
|
12 |
+
|
13 |
+
@dataclass
|
14 |
+
class RewardOutputs(ModelOutput):
|
15 |
+
loss: Optional[torch.FloatTensor] = None
|
16 |
+
rewards: torch.FloatTensor = None
|
17 |
+
|
18 |
+
|
19 |
+
class RewardModel(PreTrainedModel):
|
20 |
+
config_class = RewardConfig
|
21 |
+
|
22 |
+
def __init__(self, config, **kwargs):
|
23 |
+
super().__init__(config, **kwargs)
|
24 |
+
base_model = AutoModelForCausalLM.from_pretrained(config.base_model)
|
25 |
+
self.config = config
|
26 |
+
self.neox = "neox" in self.config.model_type
|
27 |
+
# gpt-neo models have hidden_size instead of n_embd
|
28 |
+
self.config.n_embd = self.config.hidden_size if hasattr(self.config, "hidden_size") else self.config.n_embd
|
29 |
+
self.transformer = base_model.transformer
|
30 |
+
dtype = self.config.torch_dtype if hasattr(self.config, "torch_dtype") is not None else torch.float32
|
31 |
+
dtype = torch.float16 if dtype == "float16" else torch.float32
|
32 |
+
self.v_head = nn.Linear(self.config.n_embd, 1, bias=False, dtype=torch.float16)
|
33 |
+
self.PAD_ID = config.pad_id
|
34 |
+
self.base_model = base_model
|
35 |
+
|
36 |
+
def gradient_checkpointing_enable(self):
|
37 |
+
self.base_model.gradient_checkpointing_enable()
|
38 |
+
|
39 |
+
|
40 |
+
def forward(
|
41 |
+
self,
|
42 |
+
chosen_input_ids=None,
|
43 |
+
rejected_input_ids=None,
|
44 |
+
past_key_values=None,
|
45 |
+
chosen_attention_mask=None,
|
46 |
+
rejected_attention_mask=None,
|
47 |
+
token_type_ids=None,
|
48 |
+
position_ids=None,
|
49 |
+
head_mask=None,
|
50 |
+
inputs_embeds=None,
|
51 |
+
):
|
52 |
+
# concat chosen + rejected where first half is chosen and second half is rejected
|
53 |
+
input_ids = torch.cat([chosen_input_ids, rejected_input_ids], dim=0)
|
54 |
+
attention_mask = torch.cat([chosen_attention_mask, rejected_attention_mask], dim=0)
|
55 |
+
transformer_outputs = self.transformer(
|
56 |
+
input_ids,
|
57 |
+
past_key_values=past_key_values,
|
58 |
+
attention_mask=attention_mask,
|
59 |
+
token_type_ids=token_type_ids,
|
60 |
+
position_ids=position_ids,
|
61 |
+
head_mask=head_mask,
|
62 |
+
inputs_embeds=inputs_embeds,
|
63 |
+
)
|
64 |
+
|
65 |
+
hidden_states = transformer_outputs[0]
|
66 |
+
|
67 |
+
rewards = self.v_head(hidden_states).squeeze(-1)
|
68 |
+
|
69 |
+
bs = input_ids.shape[0] // 2
|
70 |
+
|
71 |
+
# argmax returns the first index of the maximum value !
|
72 |
+
# so we find the first pad/eos token at each row
|
73 |
+
ends = torch.argmax((input_ids == self.PAD_ID).type(torch.float32), dim=1).view(-1, 1)
|
74 |
+
rewards = torch.gather(rewards, 1, ends)
|
75 |
+
|
76 |
+
chosen_rewards = rewards[:bs]
|
77 |
+
rejected_rewards = rewards[bs:]
|
78 |
+
|
79 |
+
loss = -torch.log(torch.sigmoid(chosen_rewards - rejected_rewards)).mean()
|
80 |
+
|
81 |
+
|
82 |
+
return RewardOutputs(
|
83 |
+
loss=loss,
|
84 |
+
rewards=rewards,
|
85 |
+
)
|
pytorch_model-00001-of-00005.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b90613038aadda3868b9f493e9ee7d9b5233f3e7c8a472f86e3c90c54439d748
|
3 |
+
size 10004232434
|
pytorch_model-00002-of-00005.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad15a1cd00577020be147bb2beef54e548e1f43d5d57852432f49ab15c7c3c15
|
3 |
+
size 9983934481
|
pytorch_model-00003-of-00005.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ed63fa541d14fa3ff6607c9d08a7a673a62233bb78c37a81ac171c27f598b634
|
3 |
+
size 10004291041
|
pytorch_model-00004-of-00005.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ae2941bc8a00c6cfbb53a0234ec0865170cb71371d887445e3f10349ec19739
|
3 |
+
size 9983871187
|
pytorch_model-00005-of-00005.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9ae132de317ea0db5aefbe3f2c974946e84da48a4545b1f39ce4b67f240b5ba6
|
3 |
+
size 7839899571
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,688 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 47610475616.0
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"base_model.lm_head.bias": "pytorch_model-00005-of-00005.bin",
|
7 |
+
"base_model.lm_head.weight": "pytorch_model-00005-of-00005.bin",
|
8 |
+
"base_model.transformer.h.0.attn.bias": "pytorch_model-00003-of-00005.bin",
|
9 |
+
"base_model.transformer.h.0.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
10 |
+
"base_model.transformer.h.0.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
11 |
+
"base_model.transformer.h.0.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
12 |
+
"base_model.transformer.h.0.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
13 |
+
"base_model.transformer.h.0.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
14 |
+
"base_model.transformer.h.0.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
15 |
+
"base_model.transformer.h.0.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
16 |
+
"base_model.transformer.h.0.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
17 |
+
"base_model.transformer.h.0.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
18 |
+
"base_model.transformer.h.0.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
19 |
+
"base_model.transformer.h.0.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
20 |
+
"base_model.transformer.h.1.attn.bias": "pytorch_model-00003-of-00005.bin",
|
21 |
+
"base_model.transformer.h.1.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
22 |
+
"base_model.transformer.h.1.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
23 |
+
"base_model.transformer.h.1.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
24 |
+
"base_model.transformer.h.1.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
25 |
+
"base_model.transformer.h.1.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
26 |
+
"base_model.transformer.h.1.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
27 |
+
"base_model.transformer.h.1.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
28 |
+
"base_model.transformer.h.1.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
29 |
+
"base_model.transformer.h.1.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
30 |
+
"base_model.transformer.h.1.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
31 |
+
"base_model.transformer.h.1.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
32 |
+
"base_model.transformer.h.10.attn.bias": "pytorch_model-00004-of-00005.bin",
|
33 |
+
"base_model.transformer.h.10.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
34 |
+
"base_model.transformer.h.10.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
35 |
+
"base_model.transformer.h.10.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
36 |
+
"base_model.transformer.h.10.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
37 |
+
"base_model.transformer.h.10.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
38 |
+
"base_model.transformer.h.10.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
39 |
+
"base_model.transformer.h.10.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
40 |
+
"base_model.transformer.h.10.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
41 |
+
"base_model.transformer.h.10.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
42 |
+
"base_model.transformer.h.10.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
43 |
+
"base_model.transformer.h.10.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
44 |
+
"base_model.transformer.h.11.attn.bias": "pytorch_model-00004-of-00005.bin",
|
45 |
+
"base_model.transformer.h.11.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
46 |
+
"base_model.transformer.h.11.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
47 |
+
"base_model.transformer.h.11.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
48 |
+
"base_model.transformer.h.11.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
49 |
+
"base_model.transformer.h.11.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
50 |
+
"base_model.transformer.h.11.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
51 |
+
"base_model.transformer.h.11.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
52 |
+
"base_model.transformer.h.11.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
53 |
+
"base_model.transformer.h.11.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
54 |
+
"base_model.transformer.h.11.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
55 |
+
"base_model.transformer.h.11.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
56 |
+
"base_model.transformer.h.12.attn.bias": "pytorch_model-00004-of-00005.bin",
|
57 |
+
"base_model.transformer.h.12.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
58 |
+
"base_model.transformer.h.12.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
59 |
+
"base_model.transformer.h.12.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
60 |
+
"base_model.transformer.h.12.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
61 |
+
"base_model.transformer.h.12.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
62 |
+
"base_model.transformer.h.12.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
63 |
+
"base_model.transformer.h.12.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
64 |
+
"base_model.transformer.h.12.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
65 |
+
"base_model.transformer.h.12.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
66 |
+
"base_model.transformer.h.12.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
67 |
+
"base_model.transformer.h.12.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
68 |
+
"base_model.transformer.h.13.attn.bias": "pytorch_model-00004-of-00005.bin",
|
69 |
+
"base_model.transformer.h.13.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
70 |
+
"base_model.transformer.h.13.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
71 |
+
"base_model.transformer.h.13.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
72 |
+
"base_model.transformer.h.13.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
73 |
+
"base_model.transformer.h.13.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
74 |
+
"base_model.transformer.h.13.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
75 |
+
"base_model.transformer.h.13.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
76 |
+
"base_model.transformer.h.13.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
77 |
+
"base_model.transformer.h.13.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
78 |
+
"base_model.transformer.h.13.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
79 |
+
"base_model.transformer.h.13.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
80 |
+
"base_model.transformer.h.14.attn.bias": "pytorch_model-00004-of-00005.bin",
|
81 |
+
"base_model.transformer.h.14.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
82 |
+
"base_model.transformer.h.14.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
83 |
+
"base_model.transformer.h.14.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
84 |
+
"base_model.transformer.h.14.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
85 |
+
"base_model.transformer.h.14.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
86 |
+
"base_model.transformer.h.14.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
87 |
+
"base_model.transformer.h.14.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
88 |
+
"base_model.transformer.h.14.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
89 |
+
"base_model.transformer.h.14.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
90 |
+
"base_model.transformer.h.14.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
91 |
+
"base_model.transformer.h.14.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
92 |
+
"base_model.transformer.h.15.attn.bias": "pytorch_model-00004-of-00005.bin",
|
93 |
+
"base_model.transformer.h.15.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
94 |
+
"base_model.transformer.h.15.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
95 |
+
"base_model.transformer.h.15.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
96 |
+
"base_model.transformer.h.15.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
97 |
+
"base_model.transformer.h.15.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
98 |
+
"base_model.transformer.h.15.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
99 |
+
"base_model.transformer.h.15.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
100 |
+
"base_model.transformer.h.15.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
101 |
+
"base_model.transformer.h.15.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
102 |
+
"base_model.transformer.h.15.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
103 |
+
"base_model.transformer.h.15.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
104 |
+
"base_model.transformer.h.16.attn.bias": "pytorch_model-00004-of-00005.bin",
|
105 |
+
"base_model.transformer.h.16.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
106 |
+
"base_model.transformer.h.16.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
107 |
+
"base_model.transformer.h.16.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
108 |
+
"base_model.transformer.h.16.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
109 |
+
"base_model.transformer.h.16.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
110 |
+
"base_model.transformer.h.16.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
111 |
+
"base_model.transformer.h.16.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
112 |
+
"base_model.transformer.h.16.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
113 |
+
"base_model.transformer.h.16.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
114 |
+
"base_model.transformer.h.16.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
115 |
+
"base_model.transformer.h.16.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
116 |
+
"base_model.transformer.h.17.attn.bias": "pytorch_model-00004-of-00005.bin",
|
117 |
+
"base_model.transformer.h.17.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
118 |
+
"base_model.transformer.h.17.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
119 |
+
"base_model.transformer.h.17.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
120 |
+
"base_model.transformer.h.17.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
121 |
+
"base_model.transformer.h.17.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
122 |
+
"base_model.transformer.h.17.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
123 |
+
"base_model.transformer.h.17.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
124 |
+
"base_model.transformer.h.17.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
125 |
+
"base_model.transformer.h.17.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
126 |
+
"base_model.transformer.h.17.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
127 |
+
"base_model.transformer.h.17.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
128 |
+
"base_model.transformer.h.18.attn.bias": "pytorch_model-00004-of-00005.bin",
|
129 |
+
"base_model.transformer.h.18.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
130 |
+
"base_model.transformer.h.18.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
131 |
+
"base_model.transformer.h.18.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
132 |
+
"base_model.transformer.h.18.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
133 |
+
"base_model.transformer.h.18.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
134 |
+
"base_model.transformer.h.18.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
135 |
+
"base_model.transformer.h.18.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
136 |
+
"base_model.transformer.h.18.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
137 |
+
"base_model.transformer.h.18.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
138 |
+
"base_model.transformer.h.18.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
139 |
+
"base_model.transformer.h.18.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
140 |
+
"base_model.transformer.h.19.attn.bias": "pytorch_model-00004-of-00005.bin",
|
141 |
+
"base_model.transformer.h.19.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
142 |
+
"base_model.transformer.h.19.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
143 |
+
"base_model.transformer.h.19.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
144 |
+
"base_model.transformer.h.19.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
145 |
+
"base_model.transformer.h.19.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
146 |
+
"base_model.transformer.h.19.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
147 |
+
"base_model.transformer.h.19.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
148 |
+
"base_model.transformer.h.19.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
149 |
+
"base_model.transformer.h.19.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
150 |
+
"base_model.transformer.h.19.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
151 |
+
"base_model.transformer.h.19.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
152 |
+
"base_model.transformer.h.2.attn.bias": "pytorch_model-00003-of-00005.bin",
|
153 |
+
"base_model.transformer.h.2.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
154 |
+
"base_model.transformer.h.2.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
155 |
+
"base_model.transformer.h.2.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
156 |
+
"base_model.transformer.h.2.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
157 |
+
"base_model.transformer.h.2.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
158 |
+
"base_model.transformer.h.2.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
159 |
+
"base_model.transformer.h.2.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
160 |
+
"base_model.transformer.h.2.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
161 |
+
"base_model.transformer.h.2.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
162 |
+
"base_model.transformer.h.2.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
163 |
+
"base_model.transformer.h.2.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
164 |
+
"base_model.transformer.h.20.attn.bias": "pytorch_model-00005-of-00005.bin",
|
165 |
+
"base_model.transformer.h.20.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
166 |
+
"base_model.transformer.h.20.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
167 |
+
"base_model.transformer.h.20.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
168 |
+
"base_model.transformer.h.20.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
169 |
+
"base_model.transformer.h.20.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
170 |
+
"base_model.transformer.h.20.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
171 |
+
"base_model.transformer.h.20.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
172 |
+
"base_model.transformer.h.20.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
173 |
+
"base_model.transformer.h.20.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
174 |
+
"base_model.transformer.h.20.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
175 |
+
"base_model.transformer.h.20.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
176 |
+
"base_model.transformer.h.21.attn.bias": "pytorch_model-00005-of-00005.bin",
|
177 |
+
"base_model.transformer.h.21.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
178 |
+
"base_model.transformer.h.21.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
179 |
+
"base_model.transformer.h.21.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
180 |
+
"base_model.transformer.h.21.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
181 |
+
"base_model.transformer.h.21.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
182 |
+
"base_model.transformer.h.21.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
183 |
+
"base_model.transformer.h.21.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
184 |
+
"base_model.transformer.h.21.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
185 |
+
"base_model.transformer.h.21.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
186 |
+
"base_model.transformer.h.21.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
187 |
+
"base_model.transformer.h.21.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
188 |
+
"base_model.transformer.h.22.attn.bias": "pytorch_model-00005-of-00005.bin",
|
189 |
+
"base_model.transformer.h.22.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
190 |
+
"base_model.transformer.h.22.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
191 |
+
"base_model.transformer.h.22.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
192 |
+
"base_model.transformer.h.22.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
193 |
+
"base_model.transformer.h.22.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
194 |
+
"base_model.transformer.h.22.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
195 |
+
"base_model.transformer.h.22.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
196 |
+
"base_model.transformer.h.22.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
197 |
+
"base_model.transformer.h.22.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
198 |
+
"base_model.transformer.h.22.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
199 |
+
"base_model.transformer.h.22.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
200 |
+
"base_model.transformer.h.23.attn.bias": "pytorch_model-00005-of-00005.bin",
|
201 |
+
"base_model.transformer.h.23.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
202 |
+
"base_model.transformer.h.23.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
203 |
+
"base_model.transformer.h.23.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
204 |
+
"base_model.transformer.h.23.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
205 |
+
"base_model.transformer.h.23.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
206 |
+
"base_model.transformer.h.23.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
207 |
+
"base_model.transformer.h.23.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
208 |
+
"base_model.transformer.h.23.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
209 |
+
"base_model.transformer.h.23.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
210 |
+
"base_model.transformer.h.23.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
211 |
+
"base_model.transformer.h.23.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
212 |
+
"base_model.transformer.h.24.attn.bias": "pytorch_model-00005-of-00005.bin",
|
213 |
+
"base_model.transformer.h.24.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
214 |
+
"base_model.transformer.h.24.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
215 |
+
"base_model.transformer.h.24.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
216 |
+
"base_model.transformer.h.24.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
217 |
+
"base_model.transformer.h.24.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
218 |
+
"base_model.transformer.h.24.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
219 |
+
"base_model.transformer.h.24.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
220 |
+
"base_model.transformer.h.24.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
221 |
+
"base_model.transformer.h.24.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
222 |
+
"base_model.transformer.h.24.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
223 |
+
"base_model.transformer.h.24.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
224 |
+
"base_model.transformer.h.25.attn.bias": "pytorch_model-00005-of-00005.bin",
|
225 |
+
"base_model.transformer.h.25.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
226 |
+
"base_model.transformer.h.25.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
227 |
+
"base_model.transformer.h.25.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
228 |
+
"base_model.transformer.h.25.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
229 |
+
"base_model.transformer.h.25.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
230 |
+
"base_model.transformer.h.25.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
231 |
+
"base_model.transformer.h.25.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
232 |
+
"base_model.transformer.h.25.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
233 |
+
"base_model.transformer.h.25.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
234 |
+
"base_model.transformer.h.25.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
235 |
+
"base_model.transformer.h.25.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
236 |
+
"base_model.transformer.h.26.attn.bias": "pytorch_model-00005-of-00005.bin",
|
237 |
+
"base_model.transformer.h.26.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
238 |
+
"base_model.transformer.h.26.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
239 |
+
"base_model.transformer.h.26.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
240 |
+
"base_model.transformer.h.26.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
241 |
+
"base_model.transformer.h.26.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
242 |
+
"base_model.transformer.h.26.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
243 |
+
"base_model.transformer.h.26.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
244 |
+
"base_model.transformer.h.26.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
245 |
+
"base_model.transformer.h.26.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
246 |
+
"base_model.transformer.h.26.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
247 |
+
"base_model.transformer.h.26.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
248 |
+
"base_model.transformer.h.27.attn.bias": "pytorch_model-00005-of-00005.bin",
|
249 |
+
"base_model.transformer.h.27.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
|
250 |
+
"base_model.transformer.h.27.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
|
251 |
+
"base_model.transformer.h.27.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
|
252 |
+
"base_model.transformer.h.27.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
|
253 |
+
"base_model.transformer.h.27.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
|
254 |
+
"base_model.transformer.h.27.ln_1.bias": "pytorch_model-00005-of-00005.bin",
|
255 |
+
"base_model.transformer.h.27.ln_1.weight": "pytorch_model-00005-of-00005.bin",
|
256 |
+
"base_model.transformer.h.27.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
|
257 |
+
"base_model.transformer.h.27.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
|
258 |
+
"base_model.transformer.h.27.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
|
259 |
+
"base_model.transformer.h.27.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
|
260 |
+
"base_model.transformer.h.3.attn.bias": "pytorch_model-00003-of-00005.bin",
|
261 |
+
"base_model.transformer.h.3.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
262 |
+
"base_model.transformer.h.3.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
263 |
+
"base_model.transformer.h.3.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
264 |
+
"base_model.transformer.h.3.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
265 |
+
"base_model.transformer.h.3.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
266 |
+
"base_model.transformer.h.3.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
267 |
+
"base_model.transformer.h.3.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
268 |
+
"base_model.transformer.h.3.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
269 |
+
"base_model.transformer.h.3.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
270 |
+
"base_model.transformer.h.3.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
271 |
+
"base_model.transformer.h.3.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
272 |
+
"base_model.transformer.h.4.attn.bias": "pytorch_model-00003-of-00005.bin",
|
273 |
+
"base_model.transformer.h.4.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
274 |
+
"base_model.transformer.h.4.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
275 |
+
"base_model.transformer.h.4.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
276 |
+
"base_model.transformer.h.4.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
277 |
+
"base_model.transformer.h.4.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
278 |
+
"base_model.transformer.h.4.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
279 |
+
"base_model.transformer.h.4.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
280 |
+
"base_model.transformer.h.4.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
281 |
+
"base_model.transformer.h.4.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
282 |
+
"base_model.transformer.h.4.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
283 |
+
"base_model.transformer.h.4.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
284 |
+
"base_model.transformer.h.5.attn.bias": "pytorch_model-00003-of-00005.bin",
|
285 |
+
"base_model.transformer.h.5.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
286 |
+
"base_model.transformer.h.5.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
287 |
+
"base_model.transformer.h.5.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
288 |
+
"base_model.transformer.h.5.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
289 |
+
"base_model.transformer.h.5.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
290 |
+
"base_model.transformer.h.5.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
291 |
+
"base_model.transformer.h.5.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
292 |
+
"base_model.transformer.h.5.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
293 |
+
"base_model.transformer.h.5.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
294 |
+
"base_model.transformer.h.5.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
295 |
+
"base_model.transformer.h.5.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
296 |
+
"base_model.transformer.h.6.attn.bias": "pytorch_model-00003-of-00005.bin",
|
297 |
+
"base_model.transformer.h.6.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
298 |
+
"base_model.transformer.h.6.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
299 |
+
"base_model.transformer.h.6.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
300 |
+
"base_model.transformer.h.6.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
301 |
+
"base_model.transformer.h.6.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
302 |
+
"base_model.transformer.h.6.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
303 |
+
"base_model.transformer.h.6.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
304 |
+
"base_model.transformer.h.6.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
305 |
+
"base_model.transformer.h.6.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
306 |
+
"base_model.transformer.h.6.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
307 |
+
"base_model.transformer.h.6.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
308 |
+
"base_model.transformer.h.7.attn.bias": "pytorch_model-00003-of-00005.bin",
|
309 |
+
"base_model.transformer.h.7.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
310 |
+
"base_model.transformer.h.7.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
311 |
+
"base_model.transformer.h.7.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
312 |
+
"base_model.transformer.h.7.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
313 |
+
"base_model.transformer.h.7.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
314 |
+
"base_model.transformer.h.7.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
315 |
+
"base_model.transformer.h.7.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
316 |
+
"base_model.transformer.h.7.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
317 |
+
"base_model.transformer.h.7.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
318 |
+
"base_model.transformer.h.7.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
319 |
+
"base_model.transformer.h.7.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
320 |
+
"base_model.transformer.h.8.attn.bias": "pytorch_model-00004-of-00005.bin",
|
321 |
+
"base_model.transformer.h.8.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
322 |
+
"base_model.transformer.h.8.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
323 |
+
"base_model.transformer.h.8.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
324 |
+
"base_model.transformer.h.8.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
325 |
+
"base_model.transformer.h.8.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
326 |
+
"base_model.transformer.h.8.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
327 |
+
"base_model.transformer.h.8.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
328 |
+
"base_model.transformer.h.8.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
329 |
+
"base_model.transformer.h.8.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
330 |
+
"base_model.transformer.h.8.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
331 |
+
"base_model.transformer.h.8.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
332 |
+
"base_model.transformer.h.9.attn.bias": "pytorch_model-00004-of-00005.bin",
|
333 |
+
"base_model.transformer.h.9.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
|
334 |
+
"base_model.transformer.h.9.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
|
335 |
+
"base_model.transformer.h.9.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
|
336 |
+
"base_model.transformer.h.9.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
|
337 |
+
"base_model.transformer.h.9.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
|
338 |
+
"base_model.transformer.h.9.ln_1.bias": "pytorch_model-00004-of-00005.bin",
|
339 |
+
"base_model.transformer.h.9.ln_1.weight": "pytorch_model-00004-of-00005.bin",
|
340 |
+
"base_model.transformer.h.9.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
|
341 |
+
"base_model.transformer.h.9.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
|
342 |
+
"base_model.transformer.h.9.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
|
343 |
+
"base_model.transformer.h.9.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
|
344 |
+
"base_model.transformer.ln_f.bias": "pytorch_model-00005-of-00005.bin",
|
345 |
+
"base_model.transformer.ln_f.weight": "pytorch_model-00005-of-00005.bin",
|
346 |
+
"base_model.transformer.wte.weight": "pytorch_model-00003-of-00005.bin",
|
347 |
+
"transformer.h.0.attn.bias": "pytorch_model-00001-of-00005.bin",
|
348 |
+
"transformer.h.0.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
349 |
+
"transformer.h.0.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
350 |
+
"transformer.h.0.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
351 |
+
"transformer.h.0.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
352 |
+
"transformer.h.0.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
353 |
+
"transformer.h.0.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
354 |
+
"transformer.h.0.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
355 |
+
"transformer.h.0.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
356 |
+
"transformer.h.0.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
357 |
+
"transformer.h.0.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
358 |
+
"transformer.h.0.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
359 |
+
"transformer.h.1.attn.bias": "pytorch_model-00001-of-00005.bin",
|
360 |
+
"transformer.h.1.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
361 |
+
"transformer.h.1.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
362 |
+
"transformer.h.1.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
363 |
+
"transformer.h.1.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
364 |
+
"transformer.h.1.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
365 |
+
"transformer.h.1.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
366 |
+
"transformer.h.1.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
367 |
+
"transformer.h.1.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
368 |
+
"transformer.h.1.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
369 |
+
"transformer.h.1.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
370 |
+
"transformer.h.1.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
371 |
+
"transformer.h.10.attn.bias": "pytorch_model-00001-of-00005.bin",
|
372 |
+
"transformer.h.10.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
373 |
+
"transformer.h.10.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
374 |
+
"transformer.h.10.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
375 |
+
"transformer.h.10.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
376 |
+
"transformer.h.10.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
377 |
+
"transformer.h.10.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
378 |
+
"transformer.h.10.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
379 |
+
"transformer.h.10.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
380 |
+
"transformer.h.10.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
381 |
+
"transformer.h.10.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
382 |
+
"transformer.h.10.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
383 |
+
"transformer.h.11.attn.bias": "pytorch_model-00001-of-00005.bin",
|
384 |
+
"transformer.h.11.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
385 |
+
"transformer.h.11.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
386 |
+
"transformer.h.11.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
387 |
+
"transformer.h.11.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
388 |
+
"transformer.h.11.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
389 |
+
"transformer.h.11.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
390 |
+
"transformer.h.11.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
391 |
+
"transformer.h.11.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
392 |
+
"transformer.h.11.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
393 |
+
"transformer.h.11.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
394 |
+
"transformer.h.11.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
395 |
+
"transformer.h.12.attn.bias": "pytorch_model-00002-of-00005.bin",
|
396 |
+
"transformer.h.12.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
397 |
+
"transformer.h.12.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
398 |
+
"transformer.h.12.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
399 |
+
"transformer.h.12.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
400 |
+
"transformer.h.12.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
401 |
+
"transformer.h.12.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
402 |
+
"transformer.h.12.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
403 |
+
"transformer.h.12.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
404 |
+
"transformer.h.12.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
405 |
+
"transformer.h.12.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
406 |
+
"transformer.h.12.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
407 |
+
"transformer.h.13.attn.bias": "pytorch_model-00002-of-00005.bin",
|
408 |
+
"transformer.h.13.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
409 |
+
"transformer.h.13.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
410 |
+
"transformer.h.13.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
411 |
+
"transformer.h.13.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
412 |
+
"transformer.h.13.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
413 |
+
"transformer.h.13.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
414 |
+
"transformer.h.13.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
415 |
+
"transformer.h.13.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
416 |
+
"transformer.h.13.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
417 |
+
"transformer.h.13.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
418 |
+
"transformer.h.13.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
419 |
+
"transformer.h.14.attn.bias": "pytorch_model-00002-of-00005.bin",
|
420 |
+
"transformer.h.14.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
421 |
+
"transformer.h.14.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
422 |
+
"transformer.h.14.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
423 |
+
"transformer.h.14.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
424 |
+
"transformer.h.14.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
425 |
+
"transformer.h.14.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
426 |
+
"transformer.h.14.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
427 |
+
"transformer.h.14.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
428 |
+
"transformer.h.14.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
429 |
+
"transformer.h.14.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
430 |
+
"transformer.h.14.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
431 |
+
"transformer.h.15.attn.bias": "pytorch_model-00002-of-00005.bin",
|
432 |
+
"transformer.h.15.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
433 |
+
"transformer.h.15.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
434 |
+
"transformer.h.15.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
435 |
+
"transformer.h.15.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
436 |
+
"transformer.h.15.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
437 |
+
"transformer.h.15.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
438 |
+
"transformer.h.15.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
439 |
+
"transformer.h.15.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
440 |
+
"transformer.h.15.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
441 |
+
"transformer.h.15.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
442 |
+
"transformer.h.15.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
443 |
+
"transformer.h.16.attn.bias": "pytorch_model-00002-of-00005.bin",
|
444 |
+
"transformer.h.16.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
445 |
+
"transformer.h.16.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
446 |
+
"transformer.h.16.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
447 |
+
"transformer.h.16.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
448 |
+
"transformer.h.16.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
449 |
+
"transformer.h.16.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
450 |
+
"transformer.h.16.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
451 |
+
"transformer.h.16.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
452 |
+
"transformer.h.16.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
453 |
+
"transformer.h.16.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
454 |
+
"transformer.h.16.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
455 |
+
"transformer.h.17.attn.bias": "pytorch_model-00002-of-00005.bin",
|
456 |
+
"transformer.h.17.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
457 |
+
"transformer.h.17.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
458 |
+
"transformer.h.17.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
459 |
+
"transformer.h.17.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
460 |
+
"transformer.h.17.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
461 |
+
"transformer.h.17.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
462 |
+
"transformer.h.17.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
463 |
+
"transformer.h.17.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
464 |
+
"transformer.h.17.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
465 |
+
"transformer.h.17.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
466 |
+
"transformer.h.17.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
467 |
+
"transformer.h.18.attn.bias": "pytorch_model-00002-of-00005.bin",
|
468 |
+
"transformer.h.18.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
469 |
+
"transformer.h.18.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
470 |
+
"transformer.h.18.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
471 |
+
"transformer.h.18.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
472 |
+
"transformer.h.18.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
473 |
+
"transformer.h.18.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
474 |
+
"transformer.h.18.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
475 |
+
"transformer.h.18.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
476 |
+
"transformer.h.18.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
477 |
+
"transformer.h.18.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
478 |
+
"transformer.h.18.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
479 |
+
"transformer.h.19.attn.bias": "pytorch_model-00002-of-00005.bin",
|
480 |
+
"transformer.h.19.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
481 |
+
"transformer.h.19.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
482 |
+
"transformer.h.19.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
483 |
+
"transformer.h.19.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
484 |
+
"transformer.h.19.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
485 |
+
"transformer.h.19.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
486 |
+
"transformer.h.19.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
487 |
+
"transformer.h.19.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
488 |
+
"transformer.h.19.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
489 |
+
"transformer.h.19.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
490 |
+
"transformer.h.19.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
491 |
+
"transformer.h.2.attn.bias": "pytorch_model-00001-of-00005.bin",
|
492 |
+
"transformer.h.2.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
493 |
+
"transformer.h.2.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
494 |
+
"transformer.h.2.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
495 |
+
"transformer.h.2.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
496 |
+
"transformer.h.2.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
497 |
+
"transformer.h.2.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
498 |
+
"transformer.h.2.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
499 |
+
"transformer.h.2.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
500 |
+
"transformer.h.2.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
501 |
+
"transformer.h.2.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
502 |
+
"transformer.h.2.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
503 |
+
"transformer.h.20.attn.bias": "pytorch_model-00002-of-00005.bin",
|
504 |
+
"transformer.h.20.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
505 |
+
"transformer.h.20.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
506 |
+
"transformer.h.20.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
507 |
+
"transformer.h.20.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
508 |
+
"transformer.h.20.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
509 |
+
"transformer.h.20.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
510 |
+
"transformer.h.20.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
511 |
+
"transformer.h.20.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
512 |
+
"transformer.h.20.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
513 |
+
"transformer.h.20.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
514 |
+
"transformer.h.20.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
515 |
+
"transformer.h.21.attn.bias": "pytorch_model-00002-of-00005.bin",
|
516 |
+
"transformer.h.21.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
517 |
+
"transformer.h.21.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
518 |
+
"transformer.h.21.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
519 |
+
"transformer.h.21.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
520 |
+
"transformer.h.21.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
521 |
+
"transformer.h.21.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
522 |
+
"transformer.h.21.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
523 |
+
"transformer.h.21.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
524 |
+
"transformer.h.21.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
525 |
+
"transformer.h.21.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
526 |
+
"transformer.h.21.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
527 |
+
"transformer.h.22.attn.bias": "pytorch_model-00002-of-00005.bin",
|
528 |
+
"transformer.h.22.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
529 |
+
"transformer.h.22.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
530 |
+
"transformer.h.22.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
531 |
+
"transformer.h.22.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
532 |
+
"transformer.h.22.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
533 |
+
"transformer.h.22.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
534 |
+
"transformer.h.22.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
535 |
+
"transformer.h.22.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
536 |
+
"transformer.h.22.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
537 |
+
"transformer.h.22.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
|
538 |
+
"transformer.h.22.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
|
539 |
+
"transformer.h.23.attn.bias": "pytorch_model-00002-of-00005.bin",
|
540 |
+
"transformer.h.23.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
|
541 |
+
"transformer.h.23.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
|
542 |
+
"transformer.h.23.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
|
543 |
+
"transformer.h.23.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
|
544 |
+
"transformer.h.23.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
|
545 |
+
"transformer.h.23.ln_1.bias": "pytorch_model-00002-of-00005.bin",
|
546 |
+
"transformer.h.23.ln_1.weight": "pytorch_model-00002-of-00005.bin",
|
547 |
+
"transformer.h.23.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
|
548 |
+
"transformer.h.23.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
|
549 |
+
"transformer.h.23.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
550 |
+
"transformer.h.23.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
551 |
+
"transformer.h.24.attn.bias": "pytorch_model-00003-of-00005.bin",
|
552 |
+
"transformer.h.24.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
553 |
+
"transformer.h.24.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
554 |
+
"transformer.h.24.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
555 |
+
"transformer.h.24.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
556 |
+
"transformer.h.24.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
557 |
+
"transformer.h.24.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
558 |
+
"transformer.h.24.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
559 |
+
"transformer.h.24.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
560 |
+
"transformer.h.24.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
561 |
+
"transformer.h.24.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
562 |
+
"transformer.h.24.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
563 |
+
"transformer.h.25.attn.bias": "pytorch_model-00003-of-00005.bin",
|
564 |
+
"transformer.h.25.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
565 |
+
"transformer.h.25.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
566 |
+
"transformer.h.25.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
567 |
+
"transformer.h.25.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
568 |
+
"transformer.h.25.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
569 |
+
"transformer.h.25.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
570 |
+
"transformer.h.25.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
571 |
+
"transformer.h.25.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
572 |
+
"transformer.h.25.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
573 |
+
"transformer.h.25.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
574 |
+
"transformer.h.25.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
575 |
+
"transformer.h.26.attn.bias": "pytorch_model-00003-of-00005.bin",
|
576 |
+
"transformer.h.26.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
577 |
+
"transformer.h.26.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
578 |
+
"transformer.h.26.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
579 |
+
"transformer.h.26.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
580 |
+
"transformer.h.26.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
581 |
+
"transformer.h.26.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
582 |
+
"transformer.h.26.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
583 |
+
"transformer.h.26.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
584 |
+
"transformer.h.26.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
585 |
+
"transformer.h.26.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
586 |
+
"transformer.h.26.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
587 |
+
"transformer.h.27.attn.bias": "pytorch_model-00003-of-00005.bin",
|
588 |
+
"transformer.h.27.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
|
589 |
+
"transformer.h.27.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
|
590 |
+
"transformer.h.27.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
|
591 |
+
"transformer.h.27.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
|
592 |
+
"transformer.h.27.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
|
593 |
+
"transformer.h.27.ln_1.bias": "pytorch_model-00003-of-00005.bin",
|
594 |
+
"transformer.h.27.ln_1.weight": "pytorch_model-00003-of-00005.bin",
|
595 |
+
"transformer.h.27.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
|
596 |
+
"transformer.h.27.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
|
597 |
+
"transformer.h.27.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
|
598 |
+
"transformer.h.27.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
|
599 |
+
"transformer.h.3.attn.bias": "pytorch_model-00001-of-00005.bin",
|
600 |
+
"transformer.h.3.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
601 |
+
"transformer.h.3.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
602 |
+
"transformer.h.3.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
603 |
+
"transformer.h.3.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
604 |
+
"transformer.h.3.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
605 |
+
"transformer.h.3.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
606 |
+
"transformer.h.3.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
607 |
+
"transformer.h.3.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
608 |
+
"transformer.h.3.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
609 |
+
"transformer.h.3.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
610 |
+
"transformer.h.3.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
611 |
+
"transformer.h.4.attn.bias": "pytorch_model-00001-of-00005.bin",
|
612 |
+
"transformer.h.4.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
613 |
+
"transformer.h.4.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
614 |
+
"transformer.h.4.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
615 |
+
"transformer.h.4.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
616 |
+
"transformer.h.4.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
617 |
+
"transformer.h.4.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
618 |
+
"transformer.h.4.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
619 |
+
"transformer.h.4.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
620 |
+
"transformer.h.4.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
621 |
+
"transformer.h.4.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
622 |
+
"transformer.h.4.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
623 |
+
"transformer.h.5.attn.bias": "pytorch_model-00001-of-00005.bin",
|
624 |
+
"transformer.h.5.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
625 |
+
"transformer.h.5.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
626 |
+
"transformer.h.5.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
627 |
+
"transformer.h.5.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
628 |
+
"transformer.h.5.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
629 |
+
"transformer.h.5.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
630 |
+
"transformer.h.5.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
631 |
+
"transformer.h.5.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
632 |
+
"transformer.h.5.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
633 |
+
"transformer.h.5.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
634 |
+
"transformer.h.5.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
635 |
+
"transformer.h.6.attn.bias": "pytorch_model-00001-of-00005.bin",
|
636 |
+
"transformer.h.6.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
637 |
+
"transformer.h.6.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
638 |
+
"transformer.h.6.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
639 |
+
"transformer.h.6.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
640 |
+
"transformer.h.6.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
641 |
+
"transformer.h.6.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
642 |
+
"transformer.h.6.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
643 |
+
"transformer.h.6.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
644 |
+
"transformer.h.6.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
645 |
+
"transformer.h.6.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
646 |
+
"transformer.h.6.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
647 |
+
"transformer.h.7.attn.bias": "pytorch_model-00001-of-00005.bin",
|
648 |
+
"transformer.h.7.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
649 |
+
"transformer.h.7.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
650 |
+
"transformer.h.7.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
651 |
+
"transformer.h.7.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
652 |
+
"transformer.h.7.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
653 |
+
"transformer.h.7.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
654 |
+
"transformer.h.7.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
655 |
+
"transformer.h.7.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
656 |
+
"transformer.h.7.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
657 |
+
"transformer.h.7.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
658 |
+
"transformer.h.7.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
659 |
+
"transformer.h.8.attn.bias": "pytorch_model-00001-of-00005.bin",
|
660 |
+
"transformer.h.8.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
661 |
+
"transformer.h.8.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
662 |
+
"transformer.h.8.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
663 |
+
"transformer.h.8.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
664 |
+
"transformer.h.8.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
665 |
+
"transformer.h.8.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
666 |
+
"transformer.h.8.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
667 |
+
"transformer.h.8.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
668 |
+
"transformer.h.8.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
669 |
+
"transformer.h.8.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
670 |
+
"transformer.h.8.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
671 |
+
"transformer.h.9.attn.bias": "pytorch_model-00001-of-00005.bin",
|
672 |
+
"transformer.h.9.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
|
673 |
+
"transformer.h.9.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
|
674 |
+
"transformer.h.9.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
|
675 |
+
"transformer.h.9.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
|
676 |
+
"transformer.h.9.attn.v_proj.weight": "pytorch_model-00001-of-00005.bin",
|
677 |
+
"transformer.h.9.ln_1.bias": "pytorch_model-00001-of-00005.bin",
|
678 |
+
"transformer.h.9.ln_1.weight": "pytorch_model-00001-of-00005.bin",
|
679 |
+
"transformer.h.9.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
|
680 |
+
"transformer.h.9.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
|
681 |
+
"transformer.h.9.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
|
682 |
+
"transformer.h.9.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
|
683 |
+
"transformer.ln_f.bias": "pytorch_model-00003-of-00005.bin",
|
684 |
+
"transformer.ln_f.weight": "pytorch_model-00003-of-00005.bin",
|
685 |
+
"transformer.wte.weight": "pytorch_model-00001-of-00005.bin",
|
686 |
+
"v_head.weight": "pytorch_model-00003-of-00005.bin"
|
687 |
+
}
|
688 |
+
}
|