chelouche9 commited on
Commit
f60fb90
1 Parent(s): f4d63f7

Upload folder using huggingface_hub

Browse files
.ipynb_checkpoints/config-checkpoint.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"_name_or_path": "tiiuae/falcon-40b", "alibi": false, "apply_residual_connection_post_layernorm": false, "architectures": ["RWForCausalLM"], "attention_dropout": 0.0, "auto_map": {"AutoConfig": "configuration_RW.RWConfig", "AutoModel": "modelling_RW.RWModel", "AutoModelForCausalLM": "modelling_RW.RWForCausalLM", "AutoModelForQuestionAnswering": "modelling_RW.RWForQuestionAnswering", "AutoModelForSequenceClassification": "modelling_RW.RWForSequenceClassification", "AutoModelForTokenClassification": "modelling_RW.RWForTokenClassification"}, "bias": false, "bos_token_id": 11, "eos_token_id": 11, "hidden_dropout": 0.0, "hidden_size": 8192, "initializer_range": 0.02, "layer_norm_epsilon": 1e-05, "model_type": "RefinedWeb", "n_head": 128, "n_head_kv": 8, "n_layer": 60, "parallel_attn": true, "torch_dtype": "bfloat16", "transformers_version": "4.32.0.dev0", "use_cache": true, "vocab_size": 65024}
.ipynb_checkpoints/generation_config-checkpoint.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.32.0.dev0"
6
+ }
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"_name_or_path": "tiiuae/falcon-40b", "alibi": false, "apply_residual_connection_post_layernorm": false, "architectures": ["RWForCausalLM"], "attention_dropout": 0.0, "auto_map": {"AutoConfig": "configuration_RW.RWConfig", "AutoModel": "modelling_RW.RWModel", "AutoModelForCausalLM": "modelling_RW.RWForCausalLM", "AutoModelForQuestionAnswering": "modelling_RW.RWForQuestionAnswering", "AutoModelForSequenceClassification": "modelling_RW.RWForSequenceClassification", "AutoModelForTokenClassification": "modelling_RW.RWForTokenClassification"}, "bias": false, "bos_token_id": 11, "eos_token_id": 11, "hidden_dropout": 0.0, "hidden_size": 8192, "initializer_range": 0.02, "layer_norm_epsilon": 1e-05, "model_type": "RefinedWeb", "n_head": 128, "n_head_kv": 8, "n_layer": 60, "parallel_attn": true, "torch_dtype": "bfloat16", "transformers_version": "4.32.0.dev0", "use_cache": true, "vocab_size": 65024}
config_old.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "tiiuae/falcon-40b",
3
+ "alibi": false,
4
+ "apply_residual_connection_post_layernorm": false,
5
+ "architectures": [
6
+ "RWForCausalLM"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "auto_map": {
10
+ "AutoConfig": "tiiuae/falcon-40b--configuration_RW.RWConfig",
11
+ "AutoModel": "tiiuae/falcon-40b--modelling_RW.RWModel",
12
+ "AutoModelForCausalLM": "tiiuae/falcon-40b--modelling_RW.RWForCausalLM",
13
+ "AutoModelForQuestionAnswering": "tiiuae/falcon-40b--modelling_RW.RWForQuestionAnswering",
14
+ "AutoModelForSequenceClassification": "tiiuae/falcon-40b--modelling_RW.RWForSequenceClassification",
15
+ "AutoModelForTokenClassification": "tiiuae/falcon-40b--modelling_RW.RWForTokenClassification"
16
+ },
17
+ "bias": false,
18
+ "bos_token_id": 11,
19
+ "eos_token_id": 11,
20
+ "hidden_dropout": 0.0,
21
+ "hidden_size": 8192,
22
+ "initializer_range": 0.02,
23
+ "layer_norm_epsilon": 1e-05,
24
+ "model_type": "RefinedWeb",
25
+ "n_head": 128,
26
+ "n_head_kv": 8,
27
+ "n_layer": 60,
28
+ "parallel_attn": true,
29
+ "torch_dtype": "bfloat16",
30
+ "transformers_version": "4.32.0.dev0",
31
+ "use_cache": true,
32
+ "vocab_size": 65024
33
+ }
configuration_RW.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2022 the Big Science Workshop and HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """ Bloom configuration"""
16
+ from transformers.configuration_utils import PretrainedConfig
17
+ from transformers.utils import logging
18
+
19
+
20
+ logger = logging.get_logger(__name__)
21
+
22
+
23
+ class RWConfig(PretrainedConfig):
24
+ model_type = "RefinedWeb"
25
+ keys_to_ignore_at_inference = ["past_key_values"]
26
+ attribute_map = {
27
+ "num_hidden_layers": "n_layer",
28
+ "num_attention_heads": "n_head",
29
+ }
30
+
31
+ def __init__(
32
+ self,
33
+ vocab_size=250880,
34
+ hidden_size=64,
35
+ n_layer=2,
36
+ n_head=8,
37
+ layer_norm_epsilon=1e-5,
38
+ initializer_range=0.02,
39
+ use_cache=True,
40
+ bos_token_id=1,
41
+ eos_token_id=2,
42
+ apply_residual_connection_post_layernorm=False,
43
+ hidden_dropout=0.0,
44
+ attention_dropout=0.0,
45
+ n_head_kv=None,
46
+ alibi=False,
47
+ **kwargs,
48
+ ):
49
+ self.vocab_size = vocab_size
50
+ # Backward compatibility with n_embed kwarg
51
+ n_embed = kwargs.pop("n_embed", None)
52
+ self.hidden_size = hidden_size if n_embed is None else n_embed
53
+ self.n_layer = n_layer
54
+ self.n_head = n_head
55
+ self.layer_norm_epsilon = layer_norm_epsilon
56
+ self.initializer_range = initializer_range
57
+ self.use_cache = use_cache
58
+ self.apply_residual_connection_post_layernorm = apply_residual_connection_post_layernorm
59
+ self.hidden_dropout = hidden_dropout
60
+ self.attention_dropout = attention_dropout
61
+
62
+ self.bos_token_id = bos_token_id
63
+ self.eos_token_id = eos_token_id
64
+ self.n_head_kv = n_head if n_head_kv is None else n_head_kv
65
+ self.alibi = alibi
66
+
67
+ super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)
68
+
69
+ @property
70
+ def head_dim(self):
71
+ return self.hidden_size // self.n_head
72
+
73
+ @property
74
+ def rotary(self):
75
+ return not self.alibi
76
+
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.32.0.dev0"
6
+ }
modelling_RW.py ADDED
@@ -0,0 +1,1102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # port of models described in RW
2
+ # We use the bloom model as a starting point for these model.
3
+ # Please refer to the bloom models for usage instructions.
4
+
5
+ import math
6
+ import warnings
7
+ from typing import Optional, Tuple, Union
8
+
9
+ import torch
10
+ import torch.utils.checkpoint
11
+ from torch import nn
12
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, LayerNorm, MSELoss
13
+ from torch.nn import functional as F
14
+
15
+ from transformers.modeling_outputs import (
16
+ BaseModelOutputWithPastAndCrossAttentions,
17
+ CausalLMOutputWithCrossAttentions,
18
+ QuestionAnsweringModelOutput,
19
+ SequenceClassifierOutputWithPast,
20
+ TokenClassifierOutput,
21
+ )
22
+ from transformers.modeling_utils import PreTrainedModel
23
+ from transformers.utils import logging
24
+ from .configuration_RW import RWConfig
25
+
26
+ logger = logging.get_logger(__name__)
27
+
28
+ # NOTE(Hesslow): Unfortunately we did not fuse matmul and bias during training, this means that there's one additional quantization to bfloat16 between the operations.
29
+ # In order not to degrade the quality of our HF-port, we keep these characteristics in the final model.
30
+ class Linear(nn.Linear):
31
+ def forward(self, input: torch.Tensor) -> torch.Tensor:
32
+ ret = input @ self.weight.T
33
+ if self.bias is None:
34
+ return ret
35
+ else:
36
+ return ret + self.bias
37
+
38
+
39
+ from einops import rearrange
40
+
41
+ # rotary pos emb helpers (torch.jit.script does not seem to support staticmethod...)
42
+ def rotate_half(x):
43
+ x1, x2 = x[..., : x.shape[-1] // 2], x[..., x.shape[-1] // 2 :]
44
+ return torch.cat((-x2, x1), dim=x1.ndim - 1) # dim=-1 triggers a bug in torch < 1.8.0
45
+
46
+
47
+ class RotaryEmbedding(torch.nn.Module):
48
+ """Implementation of RotaryEmbedding from GPT-NeoX.
49
+ This implementation is design to operate on queries and keys that are compatible with
50
+ [batch_size, n_heads_per_partition, seq_len, head_dim] (e.g. MinGPTAttention format).
51
+ """
52
+
53
+ def __init__(
54
+ self,
55
+ head_dim: int,
56
+ base=10000,
57
+ ):
58
+ super().__init__()
59
+ inv_freq = 1.0 / (base ** (torch.arange(0, head_dim, 2).float() / head_dim))
60
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
61
+ self.head_dim = head_dim
62
+ self.seq_len_cached = None
63
+ self.batch_size_cached = None
64
+ self.cos_cached: torch.Tensor | None = None
65
+ self.sin_cached: torch.Tensor | None = None
66
+
67
+ def cos_sin(
68
+ self,
69
+ seq_len: int,
70
+ device="cuda",
71
+ dtype=torch.bfloat16,
72
+ ) -> torch.Tensor:
73
+ if seq_len != self.seq_len_cached:
74
+ self.seq_len_cached = seq_len
75
+ t = torch.arange(seq_len, device=device).type_as(self.inv_freq)
76
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
77
+ emb = torch.cat((freqs, freqs), dim=-1).to(device)
78
+
79
+ if dtype in [torch.float16, torch.bfloat16]:
80
+ emb = emb.float()
81
+
82
+ self.cos_cached = emb.cos()[None, :, :]
83
+ self.sin_cached = emb.sin()[None, :, :]
84
+
85
+ self.cos_cached = self.cos_cached.type(dtype)
86
+ self.sin_cached = self.sin_cached.type(dtype)
87
+
88
+ return self.cos_cached, self.sin_cached
89
+
90
+ def forward(self, q, k):
91
+ batch, seq_len, head_dim = q.shape
92
+ cos, sin = self.cos_sin(seq_len, q.device, q.dtype)
93
+ return (q * cos) + (rotate_half(q) * sin), (k * cos) + (rotate_half(k) * sin)
94
+
95
+
96
+ def _make_causal_mask(
97
+ input_ids_shape: torch.Size, device: torch.device, past_key_values_length: int
98
+ ) -> torch.BoolTensor:
99
+ batch_size, target_length = input_ids_shape
100
+ mask = torch.empty((target_length, target_length + past_key_values_length), dtype=torch.bool, device=device)
101
+ # ONNX doesn't support `torch.Tensor.triu` properly, thus we use this workaround
102
+ seq_ids = torch.arange(target_length, device=device)
103
+ mask[:, past_key_values_length:] = seq_ids[:, None] < seq_ids[None, :]
104
+
105
+ if past_key_values_length > 0:
106
+ mask[:, :past_key_values_length] = False
107
+
108
+ expanded_mask = mask[None, None, :, :].expand(batch_size, 1, target_length, target_length + past_key_values_length)
109
+ return expanded_mask
110
+
111
+
112
+ def _expand_mask(mask: torch.Tensor, tgt_length: int) -> torch.BoolTensor:
113
+ batch_size, src_length = mask.shape
114
+ tgt_length = tgt_length if tgt_length is not None else src_length
115
+
116
+ expanded_mask = ~(mask[:, None, None, :].to(torch.bool))
117
+ return expanded_mask.expand(batch_size, 1, tgt_length, src_length)
118
+
119
+
120
+ def build_alibi_tensor(attention_mask: torch.Tensor, num_heads: int, dtype: torch.dtype) -> torch.Tensor:
121
+ batch_size, seq_length = attention_mask.shape
122
+ closest_power_of_2 = 2 ** math.floor(math.log2(num_heads))
123
+ base = torch.tensor(
124
+ 2 ** (-(2 ** -(math.log2(closest_power_of_2) - 3))), device=attention_mask.device, dtype=torch.float32
125
+ )
126
+ powers = torch.arange(1, 1 + closest_power_of_2, device=attention_mask.device, dtype=torch.int32)
127
+ slopes = torch.pow(base, powers)
128
+
129
+ if closest_power_of_2 != num_heads:
130
+ extra_base = torch.tensor(
131
+ 2 ** (-(2 ** -(math.log2(2 * closest_power_of_2) - 3))), device=attention_mask.device, dtype=torch.float32
132
+ )
133
+ num_remaining_heads = min(closest_power_of_2, num_heads - closest_power_of_2)
134
+ extra_powers = torch.arange(1, 1 + 2 * num_remaining_heads, 2, device=attention_mask.device, dtype=torch.int32)
135
+ slopes = torch.cat([slopes, torch.pow(extra_base, extra_powers)], dim=0)
136
+
137
+ # Note: alibi will added to the attention bias that will be applied to the query, key product of attention
138
+ # => therefore alibi will have to be of shape (batch_size, num_heads, query_length, key_length)
139
+ # => here we set (batch_size=1, num_heads=num_heads, query_length=1, key_length=max_length)
140
+ # => the query_length dimension will then be broadcasted correctly
141
+ # This is more or less identical to T5's relative position bias:
142
+ # https://github.com/huggingface/transformers/blob/f681437203baa7671de3174b0fa583c349d9d5e1/src/transformers/models/t5/modeling_t5.py#L527
143
+ arange_tensor = ((attention_mask.cumsum(dim=-1) - 1) * attention_mask)[:, None, :]
144
+ alibi = slopes[..., None].bfloat16() * arange_tensor
145
+ return alibi.reshape(batch_size * num_heads, 1, seq_length).to(dtype)
146
+
147
+
148
+ def dropout_add(x: torch.Tensor, residual: torch.Tensor, prob: float, training: bool) -> torch.Tensor:
149
+ out = F.dropout(x, p=prob, training=training)
150
+ out = residual + out
151
+ return out
152
+
153
+
154
+ class Attention(nn.Module):
155
+ def __init__(self, config: RWConfig):
156
+ super().__init__()
157
+
158
+ self.hidden_size = config.hidden_size
159
+ self.num_heads = config.n_head
160
+ self.head_dim = self.hidden_size // self.num_heads
161
+ self.split_size = self.hidden_size
162
+ self.hidden_dropout = config.hidden_dropout
163
+
164
+ if self.head_dim * self.num_heads != self.hidden_size:
165
+ raise ValueError(
166
+ f"`hidden_size` must be divisible by num_heads (got `hidden_size`: {self.hidden_size} and `num_heads`:"
167
+ f" {self.num_heads})."
168
+ )
169
+
170
+ self.maybe_rotary = RotaryEmbedding(config.head_dim) if config.rotary else lambda q, k: (q, k)
171
+
172
+ # Layer-wise attention scaling
173
+ self.inv_norm_factor = 1.0 / math.sqrt(self.head_dim)
174
+ self.beta = self.inv_norm_factor
175
+
176
+ self.query_key_value = Linear(
177
+ self.hidden_size,
178
+ (config.n_head_kv * 2 + config.n_head) * self.head_dim,
179
+ bias=config.bias,
180
+ )
181
+ self.dense = Linear(self.hidden_size, self.hidden_size, bias=config.bias)
182
+ self.attention_dropout = nn.Dropout(config.attention_dropout)
183
+ self.num_kv = config.n_head_kv
184
+
185
+ def _split_heads(self, fused_qkv: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
186
+ """
187
+ Split the last dimension into (num_heads, head_dim), results share same memory
188
+ storage as `fused_qkv`
189
+ Args:
190
+ fused_qkv (`torch.tensor`, *required*): [batch_size, seq_length, num_heads * 3 * head_dim]
191
+ Returns:
192
+ query: [batch_size, seq_length, num_heads, head_dim]
193
+ key: [batch_size, seq_length, num_heads, head_dim]
194
+ value: [batch_size, seq_length, num_heads, head_dim]
195
+ """
196
+ batch, seq_len, _ = fused_qkv.shape
197
+ qkv = fused_qkv.view(batch, seq_len, -1, self.num_heads // self.num_kv + 2, 64)
198
+ q = qkv[:, :, :, :-2]
199
+ k = qkv[:, :, :, [-2]]
200
+ v = qkv[:, :, :, [-1]]
201
+ k = torch.broadcast_to(k, q.shape)
202
+ v = torch.broadcast_to(v, q.shape)
203
+
204
+ q, k, v = [
205
+ rearrange(
206
+ x,
207
+ "batch seq_len group num_heads head_dim ->\
208
+ batch seq_len (group num_heads) head_dim",
209
+ head_dim=self.head_dim,
210
+ )
211
+ for x in [q, k, v]
212
+ ]
213
+ return q, k, v
214
+
215
+ def _merge_heads(self, x: torch.Tensor) -> torch.Tensor:
216
+ """
217
+ Merge heads together over the last dimenstion
218
+ Args:
219
+ x: (`torch.tensor`, *required*): [batch_size * num_heads, seq_length, head_dim]
220
+ Returns:
221
+ torch.tensor: [batch_size, seq_length, num_heads * head_dim]
222
+ """
223
+ # What we want to achieve is:
224
+ # batch_size * num_heads, seq_length, head_dim -> batch_size, seq_length, num_heads * head_dim
225
+ batch_size_and_num_heads, seq_length, _ = x.shape
226
+ batch_size = batch_size_and_num_heads // self.num_heads
227
+
228
+ # First view to decompose the batch size
229
+ # batch_size * num_heads, seq_length, head_dim -> batch_size, num_heads, seq_length, head_dim
230
+ x = x.view(batch_size, self.num_heads, seq_length, self.head_dim)
231
+
232
+ # batch_size, num_heads, seq_length, head_dim -> batch_size, seq_length, num_heads, head_dim
233
+ x = x.permute(0, 2, 1, 3)
234
+
235
+ # batch_size, seq_length, num_heads, head_dim -> batch_size, seq_length, num_heads * head_dim
236
+ return x.reshape(batch_size, seq_length, self.num_heads * self.head_dim)
237
+
238
+ def forward(
239
+ self,
240
+ hidden_states: torch.Tensor,
241
+ alibi: torch.Tensor,
242
+ attention_mask: torch.Tensor,
243
+ layer_past: Optional[Tuple[torch.Tensor, torch.Tensor]] = None,
244
+ head_mask: Optional[torch.Tensor] = None,
245
+ use_cache: bool = False,
246
+ output_attentions: bool = False,
247
+ ):
248
+ fused_qkv = self.query_key_value(hidden_states) # [batch_size, seq_length, 3 x hidden_size]
249
+
250
+ # 3 x [batch_size, seq_length, num_heads, head_dim]
251
+ (query_layer, key_layer, value_layer) = self._split_heads(fused_qkv)
252
+
253
+ batch_size, q_length, _, _ = query_layer.shape
254
+
255
+ query_layer = query_layer.transpose(1, 2).reshape(batch_size * self.num_heads, q_length, self.head_dim)
256
+ key_layer = key_layer.transpose(1, 2).reshape(
257
+ batch_size * self.num_heads,
258
+ q_length,
259
+ self.head_dim,
260
+ )
261
+ value_layer = value_layer.transpose(1, 2).reshape(batch_size * self.num_heads, q_length, self.head_dim)
262
+
263
+ query_layer, key_layer = self.maybe_rotary(query_layer, key_layer)
264
+
265
+ if layer_past is not None:
266
+ past_key, past_value = layer_past
267
+ # concatenate along seq_length dimension:
268
+ # - key: [batch_size * self.num_heads, head_dim, kv_length]
269
+ # - value: [batch_size * self.num_heads, kv_length, head_dim]
270
+ key_layer = torch.cat((past_key, key_layer), dim=1)
271
+ value_layer = torch.cat((past_value, value_layer), dim=1)
272
+
273
+ _, kv_length, _ = key_layer.shape
274
+
275
+ if use_cache is True:
276
+ present = (key_layer, value_layer)
277
+ else:
278
+ present = None
279
+
280
+ if alibi is None:
281
+ query_layer_ = query_layer.reshape(batch_size, self.num_heads, -1, self.head_dim)
282
+ key_layer_ = key_layer.reshape(batch_size, self.num_heads, -1, self.head_dim)
283
+ value_layer_ = value_layer.reshape(batch_size, self.num_heads, -1, self.head_dim)
284
+
285
+ attn_output = F.scaled_dot_product_attention(
286
+ query_layer_, key_layer_, value_layer_, None, 0.0, is_causal=True
287
+ )
288
+
289
+ x = attn_output.view(batch_size, self.num_heads, q_length, self.head_dim)
290
+ x = x.permute(0, 2, 1, 3)
291
+ attn_output = x.reshape(batch_size, q_length, self.num_heads * self.head_dim)
292
+
293
+ output_tensor = self.dense(attn_output)
294
+
295
+ outputs = (output_tensor, present)
296
+ assert not output_attentions # not supported.
297
+ return outputs
298
+ else:
299
+ attention_mask_float = (attention_mask * 1.0).masked_fill(attention_mask, -1e9).to(torch.bfloat16)
300
+ matmul_result = query_layer @ key_layer.transpose(-1, -2)
301
+
302
+ # change view to [batch_size, num_heads, q_length, kv_length]
303
+ attention_scores = matmul_result.view(batch_size, self.num_heads, q_length, kv_length)
304
+
305
+ # cast attention scores to fp32, compute scaled softmax and cast back to initial dtype - [batch_size, num_heads, q_length, kv_length]
306
+ input_dtype = attention_scores.dtype
307
+ # `float16` has a minimum value of -65504.0, whereas `bfloat16` and `float32` have a minimum value of `-3.4e+38`
308
+ if input_dtype == torch.float16 or input_dtype == torch.bfloat16:
309
+ attention_scores = attention_scores.to(torch.float32)
310
+ # attn_weights = torch.masked_fill(attention_scores, attention_mask, torch.finfo(attention_scores.dtype).min)
311
+ attention_probs = F.softmax(
312
+ (attention_scores + alibi.view(batch_size, self.num_heads, 1, -1)) * self.inv_norm_factor
313
+ + attention_mask_float,
314
+ dim=-1,
315
+ dtype=hidden_states.dtype,
316
+ )
317
+ # [batch_size, num_heads, q_length, kv_length]
318
+ attention_probs = self.attention_dropout(attention_probs)
319
+
320
+ if head_mask is not None:
321
+ attention_probs = attention_probs * head_mask
322
+
323
+ # change view [batch_size x num_heads, q_length, kv_length]
324
+ attention_probs_reshaped = attention_probs.view(batch_size * self.num_heads, q_length, kv_length)
325
+
326
+ # matmul: [batch_size * num_heads, q_length, head_dim]
327
+ context_layer = attention_probs_reshaped @ value_layer
328
+
329
+ # change view [batch_size, num_heads, q_length, head_dim]
330
+ context_layer = self._merge_heads(context_layer)
331
+
332
+ output_tensor = self.dense(context_layer)
333
+
334
+ outputs = (output_tensor, present)
335
+ if output_attentions:
336
+ outputs += (attention_probs,)
337
+
338
+ return outputs
339
+
340
+
341
+ class MLP(nn.Module):
342
+ def __init__(self, config: RWConfig):
343
+ super().__init__()
344
+ hidden_size = config.hidden_size
345
+
346
+ self.dense_h_to_4h = Linear(hidden_size, 4 * hidden_size, bias=config.bias)
347
+ self.act = nn.GELU()
348
+ self.dense_4h_to_h = Linear(4 * hidden_size, hidden_size, bias=config.bias)
349
+ self.hidden_dropout = config.hidden_dropout
350
+
351
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
352
+ x = self.act(self.dense_h_to_4h(x))
353
+ x = self.dense_4h_to_h(x)
354
+ return x
355
+
356
+
357
+ class DecoderLayer(nn.Module):
358
+ def __init__(self, config: RWConfig):
359
+ super().__init__()
360
+ hidden_size = config.hidden_size
361
+
362
+ self.ln_attn = LayerNorm(hidden_size, eps=config.layer_norm_epsilon)
363
+ self.ln_mlp = LayerNorm(hidden_size, eps=config.layer_norm_epsilon)
364
+
365
+ self.num_heads = config.n_head
366
+ self.self_attention = Attention(config)
367
+
368
+ self.mlp = MLP(config)
369
+
370
+ self.apply_residual_connection_post_layernorm = config.apply_residual_connection_post_layernorm
371
+ self.hidden_dropout = config.hidden_dropout
372
+
373
+ self.config = config
374
+
375
+ def forward(
376
+ self,
377
+ hidden_states: torch.Tensor,
378
+ alibi: torch.Tensor,
379
+ attention_mask: torch.Tensor,
380
+ layer_past: Optional[Tuple[torch.Tensor, torch.Tensor]] = None,
381
+ head_mask: Optional[torch.Tensor] = None,
382
+ use_cache: bool = False,
383
+ output_attentions: bool = False,
384
+ ):
385
+
386
+ ln_attn = self.ln_attn(hidden_states)
387
+ ln_mlp = self.ln_mlp(hidden_states)
388
+
389
+ residual = hidden_states
390
+
391
+ # Self attention.
392
+ attn_outputs = self.self_attention(
393
+ ln_attn,
394
+ layer_past=layer_past,
395
+ attention_mask=attention_mask,
396
+ alibi=alibi,
397
+ head_mask=head_mask,
398
+ use_cache=use_cache,
399
+ output_attentions=output_attentions,
400
+ )
401
+
402
+ attention_output = attn_outputs[0]
403
+
404
+ outputs = attn_outputs[1:]
405
+
406
+ # MLP.
407
+ mlp_output = self.mlp(ln_mlp)
408
+
409
+ output = dropout_add(
410
+ mlp_output + attention_output, residual, self.config.hidden_dropout, training=self.training
411
+ )
412
+
413
+ if use_cache:
414
+ outputs = (output,) + outputs
415
+ else:
416
+ outputs = (output,) + outputs[1:]
417
+
418
+ return outputs # hidden_states, present, attentions
419
+
420
+
421
+ class RWPreTrainedModel(PreTrainedModel):
422
+ _keys_to_ignore_on_load_missing = [r"h.*.self_attention.scale_mask_softmax.causal_mask", r"lm_head.weight"]
423
+ """
424
+ An abstract class to handle weights initialization and a simple interface for downloading and loading pretrained
425
+ models.
426
+ """
427
+
428
+ config_class = RWConfig
429
+ base_model_prefix = "transformer"
430
+ supports_gradient_checkpointing = True
431
+ _no_split_modules = ["DecoderLayer"]
432
+
433
+ def __init__(self, *inputs, **kwargs):
434
+ super().__init__(*inputs, **kwargs)
435
+
436
+ def _init_weights(self, module: nn.Module):
437
+ """Initialize the weights."""
438
+ if isinstance(module, nn.Linear) or isinstance(module, Linear):
439
+ # Slightly different from the TF version which uses truncated_normal for initialization
440
+ # cf https://github.com/pytorch/pytorch/pull/5617
441
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
442
+ if module.bias is not None:
443
+ module.bias.data.zero_()
444
+ elif isinstance(module, nn.Embedding):
445
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
446
+ if module.padding_idx is not None:
447
+ module.weight.data[module.padding_idx].zero_()
448
+ elif isinstance(module, LayerNorm):
449
+ module.bias.data.zero_()
450
+ module.weight.data.fill_(1.0)
451
+
452
+ def _set_gradient_checkpointing(self, module: nn.Module, value: bool = False):
453
+ if isinstance(module, RWModel):
454
+ module.gradient_checkpointing = value
455
+
456
+ @staticmethod
457
+ def _convert_to_standard_cache(
458
+ past_key_value: Tuple[Tuple[torch.Tensor, torch.Tensor]], batch_size: int
459
+ ) -> Tuple[Tuple[torch.Tensor, torch.Tensor]]:
460
+ """
461
+ Standardizes the format of the cache so as to match most implementations, i.e. to tuple(tuple([batch_size,
462
+ num_heads, ...]))
463
+ """
464
+ batch_size_times_num_heads, head_dim, seq_length = past_key_value[0][0].shape
465
+ num_heads = batch_size_times_num_heads // batch_size
466
+ # key: [batch_size * num_heads, head_dim, seq_length] -> [batch_size, num_heads, head_dim, seq_length]
467
+ # value: [batch_size * num_heads, seq_length, head_dim] -> [batch_size, num_heads, seq_length, head_dim]
468
+ return tuple(
469
+ (
470
+ layer_past[0].view(batch_size, num_heads, head_dim, seq_length),
471
+ layer_past[1].view(batch_size, num_heads, seq_length, head_dim),
472
+ )
473
+ for layer_past in past_key_value
474
+ )
475
+
476
+ @staticmethod
477
+ def _convert_to_rw_cache(
478
+ past_key_value: Tuple[Tuple[torch.Tensor, torch.Tensor]]
479
+ ) -> Tuple[Tuple[torch.Tensor, torch.Tensor]]:
480
+ batch_size, num_heads, head_dim, seq_length = past_key_value[0][0].shape
481
+ batch_size_times_num_heads = batch_size * num_heads
482
+ # key: [batch_size, num_heads, head_dim, seq_length] -> [batch_size * num_heads, head_dim, seq_length]
483
+ # value: [batch_size, num_heads, seq_length, head_dim] -> [batch_size * num_heads, seq_length, head_dim]
484
+ return tuple(
485
+ (
486
+ layer_past[0].view(batch_size_times_num_heads, head_dim, seq_length),
487
+ layer_past[1].view(batch_size_times_num_heads, seq_length, head_dim),
488
+ )
489
+ for layer_past in past_key_value
490
+ )
491
+
492
+
493
+ class RWModel(RWPreTrainedModel):
494
+ def __init__(self, config: RWConfig):
495
+ super().__init__(config)
496
+
497
+ self.embed_dim = config.hidden_size
498
+ self.num_heads = config.n_head
499
+ self.alibi = config.alibi
500
+
501
+ # Embedding + LN Embedding
502
+ self.word_embeddings = nn.Embedding(config.vocab_size, self.embed_dim)
503
+
504
+ # Transformer blocks
505
+ self.h = nn.ModuleList([DecoderLayer(config) for _ in range(config.num_hidden_layers)])
506
+
507
+ # Final Layer Norm
508
+ self.ln_f = LayerNorm(self.embed_dim, eps=config.layer_norm_epsilon)
509
+
510
+ self.gradient_checkpointing = False
511
+
512
+ # Initialize weights and apply final processing
513
+ self.post_init()
514
+
515
+ def get_input_embeddings(self):
516
+ return self.word_embeddings
517
+
518
+ def _prepare_attn_mask(
519
+ self, attention_mask: torch.Tensor, input_shape: Tuple[int, int], past_key_values_length: int
520
+ ) -> torch.BoolTensor:
521
+ # create causal mask
522
+ # [batch_size, seq_length] -> [batch_size, 1, tgt_length, src_length]
523
+ combined_attention_mask = None
524
+ device = attention_mask.device
525
+ _, src_length = input_shape
526
+
527
+ if src_length > 1:
528
+ combined_attention_mask = _make_causal_mask(
529
+ input_shape, device=device, past_key_values_length=past_key_values_length
530
+ )
531
+
532
+ # [batch_size, seq_length] -> [batch_size, 1, tgt_length, src_length]
533
+ expanded_attn_mask = _expand_mask(attention_mask, tgt_length=src_length)
534
+ combined_attention_mask = (
535
+ expanded_attn_mask if combined_attention_mask is None else expanded_attn_mask | combined_attention_mask
536
+ )
537
+
538
+ return combined_attention_mask
539
+
540
+ def set_input_embeddings(self, new_embeddings: torch.Tensor):
541
+ self.word_embeddings = new_embeddings
542
+
543
+ def forward(
544
+ self,
545
+ input_ids: Optional[torch.LongTensor] = None,
546
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor, torch.Tensor], ...]] = None,
547
+ attention_mask: Optional[torch.Tensor] = None,
548
+ head_mask: Optional[torch.LongTensor] = None,
549
+ inputs_embeds: Optional[torch.LongTensor] = None,
550
+ use_cache: Optional[bool] = None,
551
+ output_attentions: Optional[bool] = None,
552
+ output_hidden_states: Optional[bool] = None,
553
+ return_dict: Optional[bool] = None,
554
+ **deprecated_arguments,
555
+ ) -> Union[Tuple[torch.Tensor, ...], BaseModelOutputWithPastAndCrossAttentions]:
556
+ if deprecated_arguments.pop("position_ids", False) is not False:
557
+ # `position_ids` could have been `torch.Tensor` or `None` so defaulting pop to `False` allows to detect if users were passing explicitly `None`
558
+ warnings.warn(
559
+ "`position_ids` have no functionality in BLOOM and will be removed in v5.0.0. You can safely ignore"
560
+ " passing `position_ids`.",
561
+ FutureWarning,
562
+ )
563
+ if len(deprecated_arguments) > 0:
564
+ raise ValueError(f"Got unexpected arguments: {deprecated_arguments}")
565
+
566
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
567
+ output_hidden_states = (
568
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
569
+ )
570
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
571
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
572
+
573
+ if input_ids is not None and inputs_embeds is not None:
574
+ raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
575
+ elif input_ids is not None:
576
+ batch_size, seq_length = input_ids.shape
577
+ elif inputs_embeds is not None:
578
+ batch_size, seq_length, _ = inputs_embeds.shape
579
+ else:
580
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
581
+
582
+ if past_key_values is None:
583
+ past_key_values = tuple([None] * len(self.h))
584
+
585
+ # Prepare head mask if needed
586
+ # 1.0 in head_mask indicate we keep the head
587
+ # attention_probs has shape batch_size x num_heads x N x N
588
+ # head_mask has shape n_layer x batch x num_heads x N x N
589
+ head_mask = self.get_head_mask(head_mask, self.config.n_layer)
590
+
591
+ if inputs_embeds is None:
592
+ inputs_embeds = self.word_embeddings(input_ids)
593
+
594
+ hidden_states = inputs_embeds
595
+
596
+ presents = () if use_cache else None
597
+ all_self_attentions = () if output_attentions else None
598
+ all_hidden_states = () if output_hidden_states else None
599
+
600
+ # Compute alibi tensor: check build_alibi_tensor documentation
601
+ seq_length_with_past = seq_length
602
+ past_key_values_length = 0
603
+ if past_key_values[0] is not None:
604
+ past_key_values_length = past_key_values[0][0].shape[2]
605
+ seq_length_with_past = seq_length_with_past + past_key_values_length
606
+ if attention_mask is None:
607
+ attention_mask = torch.ones((batch_size, seq_length_with_past), device=hidden_states.device)
608
+ else:
609
+ attention_mask = attention_mask.to(hidden_states.device)
610
+
611
+ if self.alibi:
612
+ alibi = build_alibi_tensor(attention_mask, self.num_heads, dtype=hidden_states.dtype)
613
+ else:
614
+ alibi = None
615
+
616
+ causal_mask = self._prepare_attn_mask(
617
+ attention_mask,
618
+ input_shape=(batch_size, seq_length),
619
+ past_key_values_length=past_key_values_length,
620
+ )
621
+
622
+ for i, (block, layer_past) in enumerate(zip(self.h, past_key_values)):
623
+
624
+ if output_hidden_states:
625
+ all_hidden_states = all_hidden_states + (hidden_states,)
626
+
627
+ if self.gradient_checkpointing and self.training:
628
+
629
+ if use_cache:
630
+ logger.warning(
631
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
632
+ )
633
+ use_cache = False
634
+
635
+ def create_custom_forward(module):
636
+ def custom_forward(*inputs):
637
+ # None for past_key_value
638
+ return module(*inputs, use_cache=use_cache, output_attentions=output_attentions)
639
+
640
+ return custom_forward
641
+
642
+ outputs = torch.utils.checkpoint.checkpoint(
643
+ create_custom_forward(block),
644
+ hidden_states,
645
+ alibi,
646
+ causal_mask,
647
+ head_mask[i],
648
+ )
649
+ else:
650
+ outputs = block(
651
+ hidden_states,
652
+ layer_past=layer_past,
653
+ attention_mask=causal_mask,
654
+ head_mask=head_mask[i],
655
+ use_cache=use_cache,
656
+ output_attentions=output_attentions,
657
+ alibi=alibi,
658
+ )
659
+
660
+ hidden_states = outputs[0]
661
+ if use_cache is True:
662
+ presents = presents + (outputs[1],)
663
+
664
+ if output_attentions:
665
+ all_self_attentions = all_self_attentions + (outputs[2 if use_cache else 1],)
666
+
667
+ # Add last hidden state
668
+ hidden_states = self.ln_f(hidden_states)
669
+
670
+ if output_hidden_states:
671
+ all_hidden_states = all_hidden_states + (hidden_states,)
672
+
673
+ if not return_dict:
674
+ return tuple(v for v in [hidden_states, presents, all_hidden_states, all_self_attentions] if v is not None)
675
+
676
+ return BaseModelOutputWithPastAndCrossAttentions(
677
+ last_hidden_state=hidden_states,
678
+ past_key_values=presents,
679
+ hidden_states=all_hidden_states,
680
+ attentions=all_self_attentions,
681
+ )
682
+
683
+
684
+ class RWForCausalLM(RWPreTrainedModel):
685
+ _keys_to_ignore_on_load_missing = [r"h.*.self_attention.scale_mask_softmax.causal_mask", r"lm_head.weight"]
686
+
687
+ def __init__(self, config: RWConfig):
688
+ super().__init__(config)
689
+ self.transformer = RWModel(config)
690
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
691
+
692
+ # Initialize weights and apply final processing
693
+ self.post_init()
694
+
695
+ def get_output_embeddings(self):
696
+ return self.lm_head
697
+
698
+ def set_output_embeddings(self, new_embeddings: torch.Tensor):
699
+ self.lm_head = new_embeddings
700
+
701
+ def prepare_inputs_for_generation(
702
+ self,
703
+ input_ids: torch.LongTensor,
704
+ past: Optional[torch.Tensor] = None,
705
+ attention_mask: Optional[torch.Tensor] = None,
706
+ **kwargs,
707
+ ) -> dict:
708
+ # only last token for input_ids if past is not None
709
+ if past:
710
+ input_ids = input_ids[:, -1].unsqueeze(-1)
711
+
712
+ # the cache may be in the stardard format (e.g. in contrastive search), convert to our's format if needed
713
+ if past[0][0].shape[0] == input_ids.shape[0]:
714
+ past = self._convert_to_rw_cache(past)
715
+
716
+ return {
717
+ "input_ids": input_ids,
718
+ "past_key_values": past,
719
+ "use_cache": kwargs.get("use_cache"),
720
+ "attention_mask": attention_mask,
721
+ }
722
+
723
+ def forward(
724
+ self,
725
+ input_ids: Optional[torch.LongTensor] = None,
726
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor, torch.Tensor], ...]] = None,
727
+ attention_mask: Optional[torch.Tensor] = None,
728
+ head_mask: Optional[torch.Tensor] = None,
729
+ inputs_embeds: Optional[torch.Tensor] = None,
730
+ labels: Optional[torch.Tensor] = None,
731
+ use_cache: Optional[bool] = None,
732
+ output_attentions: Optional[bool] = None,
733
+ output_hidden_states: Optional[bool] = None,
734
+ return_dict: Optional[bool] = None,
735
+ **deprecated_arguments,
736
+ ) -> Union[Tuple[torch.Tensor], CausalLMOutputWithCrossAttentions]:
737
+ r"""
738
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
739
+ Labels for language modeling. Note that the labels **are shifted** inside the model, i.e. you can set
740
+ `labels = input_ids` Indices are selected in `[-100, 0, ..., config.vocab_size]` All labels set to `-100`
741
+ are ignored (masked), the loss is only computed for labels in `[0, ..., config.vocab_size]`
742
+ """
743
+ if deprecated_arguments.pop("position_ids", False) is not False:
744
+ # `position_ids` could have been `torch.Tensor` or `None` so defaulting pop to `False` allows to detect if users were passing explicitly `None`
745
+ warnings.warn(
746
+ "`position_ids` have no functionality in BLOOM and will be removed in v5.0.0. You can safely ignore"
747
+ " passing `position_ids`.",
748
+ FutureWarning,
749
+ )
750
+ if len(deprecated_arguments) > 0:
751
+ raise ValueError(f"Got unexpected arguments: {deprecated_arguments}")
752
+
753
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
754
+
755
+ transformer_outputs = self.transformer(
756
+ input_ids,
757
+ past_key_values=past_key_values,
758
+ attention_mask=attention_mask,
759
+ head_mask=head_mask,
760
+ inputs_embeds=inputs_embeds,
761
+ use_cache=use_cache,
762
+ output_attentions=output_attentions,
763
+ output_hidden_states=output_hidden_states,
764
+ return_dict=return_dict,
765
+ )
766
+ hidden_states = transformer_outputs[0]
767
+
768
+ lm_logits = self.lm_head(hidden_states)
769
+
770
+ loss = None
771
+ if labels is not None:
772
+ # Shift so that tokens < n predict n
773
+ shift_logits = lm_logits[..., :-1, :].contiguous()
774
+ shift_labels = labels[..., 1:].contiguous()
775
+ batch_size, seq_length, vocab_size = shift_logits.shape
776
+ # Flatten the tokens
777
+ loss_fct = CrossEntropyLoss()
778
+ loss = loss_fct(
779
+ shift_logits.view(batch_size * seq_length, vocab_size), shift_labels.view(batch_size * seq_length)
780
+ )
781
+
782
+ if not return_dict:
783
+ output = (lm_logits,) + transformer_outputs[1:]
784
+ return ((loss,) + output) if loss is not None else output
785
+
786
+ return CausalLMOutputWithCrossAttentions(
787
+ loss=loss,
788
+ logits=lm_logits,
789
+ past_key_values=transformer_outputs.past_key_values,
790
+ hidden_states=transformer_outputs.hidden_states,
791
+ attentions=transformer_outputs.attentions,
792
+ )
793
+
794
+ def _reorder_cache(
795
+ self, past: Tuple[Tuple[torch.Tensor, torch.Tensor], ...], beam_idx: torch.LongTensor
796
+ ) -> Tuple[Tuple[torch.Tensor, torch.Tensor], ...]:
797
+ """
798
+ This function is used to re-order the `past_key_values` cache if [`~PreTrainedModel.beam_search`] or
799
+ [`~PreTrainedModel.beam_sample`] is called. This is required to match `past_key_values` with the correct
800
+ beam_idx at every generation step.
801
+ Output shares the same memory storage as `past`.
802
+ """
803
+ standardized_past = self._convert_to_standard_cache(past, batch_size=len(beam_idx))
804
+
805
+ # Get a copy of `beam_idx` on all the devices where we need those indices.
806
+ device_to_beam_idx = {
807
+ past_state.device: beam_idx.to(past_state.device) for layer_past in past for past_state in layer_past
808
+ }
809
+ reordered_past = tuple(
810
+ (
811
+ layer_past[0].index_select(0, device_to_beam_idx[layer_past[0].device]),
812
+ layer_past[1].index_select(0, device_to_beam_idx[layer_past[0].device]),
813
+ )
814
+ for layer_past in standardized_past
815
+ )
816
+ return self._convert_to_rw_cache(reordered_past)
817
+
818
+
819
+ class RWForSequenceClassification(RWPreTrainedModel):
820
+ _keys_to_ignore_on_load_missing = [r"h.*.self_attention.scale_mask_softmax.causal_mask", r"lm_head.weight"]
821
+
822
+ def __init__(self, config: RWConfig):
823
+ super().__init__(config)
824
+ self.num_labels = config.num_labels
825
+ self.transformer = RWModel(config)
826
+ self.score = nn.Linear(config.hidden_size, config.num_labels, bias=False)
827
+
828
+ # Initialize weights and apply final processing
829
+ self.post_init()
830
+
831
+ def forward(
832
+ self,
833
+ input_ids: Optional[torch.LongTensor] = None,
834
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor, torch.Tensor], ...]] = None,
835
+ attention_mask: Optional[torch.Tensor] = None,
836
+ head_mask: Optional[torch.Tensor] = None,
837
+ inputs_embeds: Optional[torch.Tensor] = None,
838
+ labels: Optional[torch.Tensor] = None,
839
+ use_cache: Optional[bool] = None,
840
+ output_attentions: Optional[bool] = None,
841
+ output_hidden_states: Optional[bool] = None,
842
+ return_dict: Optional[bool] = None,
843
+ **deprecated_arguments,
844
+ ) -> Union[Tuple[torch.Tensor], SequenceClassifierOutputWithPast]:
845
+ r"""
846
+ labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
847
+ Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
848
+ config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
849
+ `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
850
+ """
851
+ if deprecated_arguments.pop("position_ids", False) is not False:
852
+ # `position_ids` could have been `torch.Tensor` or `None` so defaulting pop to `False` allows to detect if users were passing explicitly `None`
853
+ warnings.warn(
854
+ "`position_ids` have no functionality in BLOOM and will be removed in v5.0.0. You can safely ignore"
855
+ " passing `position_ids`.",
856
+ FutureWarning,
857
+ )
858
+ if len(deprecated_arguments) > 0:
859
+ raise ValueError(f"Got unexpected arguments: {deprecated_arguments}")
860
+
861
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
862
+
863
+ transformer_outputs = self.transformer(
864
+ input_ids,
865
+ past_key_values=past_key_values,
866
+ attention_mask=attention_mask,
867
+ head_mask=head_mask,
868
+ inputs_embeds=inputs_embeds,
869
+ use_cache=use_cache,
870
+ output_attentions=output_attentions,
871
+ output_hidden_states=output_hidden_states,
872
+ return_dict=return_dict,
873
+ )
874
+
875
+ hidden_states = transformer_outputs[0]
876
+ logits = self.score(hidden_states)
877
+
878
+ if input_ids is not None:
879
+ batch_size = input_ids.shape[0]
880
+ else:
881
+ batch_size = inputs_embeds.shape[0]
882
+
883
+ if self.config.pad_token_id is None and batch_size != 1:
884
+ raise ValueError("Cannot handle batch sizes > 1 if no padding token is defined.")
885
+ if self.config.pad_token_id is None:
886
+ sequence_lengths = -1
887
+ else:
888
+ if input_ids is not None:
889
+ sequence_lengths = torch.ne(input_ids, self.config.pad_token_id).sum(dim=-1) - 1
890
+ else:
891
+ sequence_lengths = -1
892
+ logger.warning(
893
+ f"{self.__class__.__name__} will not detect padding tokens in `inputs_embeds`. Results may be "
894
+ "unexpected if using padding tokens in conjunction with `inputs_embeds.`"
895
+ )
896
+
897
+ pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
898
+
899
+ loss = None
900
+ if labels is not None:
901
+ if self.config.problem_type is None:
902
+ if self.num_labels == 1:
903
+ self.config.problem_type = "regression"
904
+ elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
905
+ self.config.problem_type = "single_label_classification"
906
+ else:
907
+ self.config.problem_type = "multi_label_classification"
908
+
909
+ if self.config.problem_type == "regression":
910
+ loss_fct = MSELoss()
911
+ if self.num_labels == 1:
912
+ loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
913
+ else:
914
+ loss = loss_fct(pooled_logits, labels)
915
+ elif self.config.problem_type == "single_label_classification":
916
+ loss_fct = CrossEntropyLoss()
917
+ loss = loss_fct(pooled_logits, labels)
918
+ elif self.config.problem_type == "multi_label_classification":
919
+ loss_fct = BCEWithLogitsLoss()
920
+ loss = loss_fct(pooled_logits, labels)
921
+ if not return_dict:
922
+ output = (pooled_logits,) + transformer_outputs[1:]
923
+ return ((loss,) + output) if loss is not None else output
924
+
925
+ return SequenceClassifierOutputWithPast(
926
+ loss=loss,
927
+ logits=pooled_logits,
928
+ past_key_values=transformer_outputs.past_key_values,
929
+ hidden_states=transformer_outputs.hidden_states,
930
+ attentions=transformer_outputs.attentions,
931
+ )
932
+
933
+
934
+ class RWForTokenClassification(RWPreTrainedModel):
935
+ _keys_to_ignore_on_load_missing = [r"h.*.self_attention.scale_mask_softmax.causal_mask", r"lm_head.weight"]
936
+
937
+ def __init__(self, config: RWConfig):
938
+ super().__init__(config)
939
+ self.num_labels = config.num_labels
940
+
941
+ self.transformer = RWModel(config)
942
+ if hasattr(config, "classifier_dropout") and config.classifier_dropout is not None:
943
+ classifier_dropout = config.classifier_dropout
944
+ elif hasattr(config, "hidden_dropout") and config.hidden_dropout is not None:
945
+ classifier_dropout = config.hidden_dropout
946
+ else:
947
+ classifier_dropout = 0.1
948
+ self.dropout = nn.Dropout(classifier_dropout)
949
+ self.classifier = nn.Linear(config.hidden_size, config.num_labels)
950
+
951
+ # Initialize weights and apply final processing
952
+ self.post_init()
953
+
954
+ def forward(
955
+ self,
956
+ input_ids: Optional[torch.LongTensor] = None,
957
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor, torch.Tensor], ...]] = None,
958
+ attention_mask: Optional[torch.Tensor] = None,
959
+ head_mask: Optional[torch.Tensor] = None,
960
+ inputs_embeds: Optional[torch.Tensor] = None,
961
+ labels: Optional[torch.Tensor] = None,
962
+ use_cache: Optional[bool] = None,
963
+ output_attentions: Optional[bool] = None,
964
+ output_hidden_states: Optional[bool] = None,
965
+ return_dict: Optional[bool] = None,
966
+ **deprecated_arguments,
967
+ ) -> Union[Tuple[torch.Tensor], TokenClassifierOutput]:
968
+ r"""
969
+ labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
970
+ Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
971
+ config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
972
+ `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
973
+ """
974
+ if deprecated_arguments.pop("position_ids", False) is not False:
975
+ # `position_ids` could have been `torch.Tensor` or `None` so defaulting pop to `False` allows to detect if users were passing explicitly `None`
976
+ warnings.warn(
977
+ "`position_ids` have no functionality in BLOOM and will be removed in v5.0.0. You can safely ignore"
978
+ " passing `position_ids`.",
979
+ FutureWarning,
980
+ )
981
+ if len(deprecated_arguments) > 0:
982
+ raise ValueError(f"Got unexpected arguments: {deprecated_arguments}")
983
+
984
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
985
+
986
+ transformer_outputs = self.transformer(
987
+ input_ids,
988
+ past_key_values=past_key_values,
989
+ attention_mask=attention_mask,
990
+ head_mask=head_mask,
991
+ inputs_embeds=inputs_embeds,
992
+ use_cache=use_cache,
993
+ output_attentions=output_attentions,
994
+ output_hidden_states=output_hidden_states,
995
+ return_dict=return_dict,
996
+ )
997
+
998
+ hidden_states = transformer_outputs[0]
999
+ hidden_states = self.dropout(hidden_states)
1000
+ logits = self.classifier(hidden_states)
1001
+
1002
+ loss = None
1003
+ if labels is not None:
1004
+ batch_size, seq_length = labels.shape
1005
+ loss_fct = CrossEntropyLoss()
1006
+ loss = loss_fct(logits.view(batch_size * seq_length, self.num_labels), labels.view(batch_size * seq_length))
1007
+
1008
+ if not return_dict:
1009
+ output = (logits,) + transformer_outputs[2:]
1010
+ return ((loss,) + output) if loss is not None else output
1011
+
1012
+ return TokenClassifierOutput(
1013
+ loss=loss,
1014
+ logits=logits,
1015
+ hidden_states=transformer_outputs.hidden_states,
1016
+ attentions=transformer_outputs.attentions,
1017
+ )
1018
+
1019
+
1020
+ class RWForQuestionAnswering(RWPreTrainedModel):
1021
+ _keys_to_ignore_on_load_missing = [r"h.*.self_attention.scale_mask_softmax.causal_mask", r"lm_head.weight"]
1022
+
1023
+ def __init__(self, config):
1024
+ super().__init__(config)
1025
+ self.transformer = RWModel(config)
1026
+ self.qa_outputs = nn.Linear(config.hidden_size, 2)
1027
+
1028
+ # Initialize weights and apply final processing
1029
+ self.post_init()
1030
+
1031
+ def forward(
1032
+ self,
1033
+ input_ids: Optional[torch.LongTensor] = None,
1034
+ attention_mask: Optional[torch.FloatTensor] = None,
1035
+ position_ids: Optional[torch.LongTensor] = None,
1036
+ head_mask: Optional[torch.FloatTensor] = None,
1037
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1038
+ start_positions: Optional[torch.LongTensor] = None,
1039
+ end_positions: Optional[torch.LongTensor] = None,
1040
+ output_attentions: Optional[bool] = None,
1041
+ output_hidden_states: Optional[bool] = None,
1042
+ return_dict: Optional[bool] = None,
1043
+ ) -> Union[Tuple, QuestionAnsweringModelOutput]:
1044
+ r"""
1045
+ start_positions (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
1046
+ Labels for position (index) of the start of the labelled span for computing the token classification loss.
1047
+ Positions are clamped to the length of the sequence (`sequence_length`). Position outside of the sequence
1048
+ are not taken into account for computing the loss.
1049
+ end_positions (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
1050
+ Labels for position (index) of the end of the labelled span for computing the token classification loss.
1051
+ Positions are clamped to the length of the sequence (`sequence_length`). Position outside of the sequence
1052
+ are not taken into account for computing the loss.
1053
+ """
1054
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
1055
+
1056
+ outputs = self.transformer(
1057
+ input_ids,
1058
+ attention_mask=attention_mask,
1059
+ position_ids=position_ids,
1060
+ head_mask=head_mask,
1061
+ inputs_embeds=inputs_embeds,
1062
+ output_attentions=output_attentions,
1063
+ output_hidden_states=output_hidden_states,
1064
+ return_dict=return_dict,
1065
+ )
1066
+
1067
+ sequence_output = outputs[0]
1068
+
1069
+ logits = self.qa_outputs(sequence_output)
1070
+ start_logits, end_logits = logits.split(1, dim=-1)
1071
+ start_logits = start_logits.squeeze(-1).contiguous()
1072
+ end_logits = end_logits.squeeze(-1).contiguous()
1073
+
1074
+ total_loss = None
1075
+ if start_positions is not None and end_positions is not None:
1076
+ # If we are on multi-GPU, split add a dimension
1077
+ if len(start_positions.size()) > 1:
1078
+ start_positions = start_positions.squeeze(-1)
1079
+ if len(end_positions.size()) > 1:
1080
+ end_positions = end_positions.squeeze(-1)
1081
+ # sometimes the start/end positions are outside our model inputs, we ignore these terms
1082
+ ignored_index = start_logits.size(1)
1083
+ start_positions = start_positions.clamp(0, ignored_index)
1084
+ end_positions = end_positions.clamp(0, ignored_index)
1085
+
1086
+ loss_fct = CrossEntropyLoss(ignore_index=ignored_index)
1087
+ start_loss = loss_fct(start_logits, start_positions)
1088
+ end_loss = loss_fct(end_logits, end_positions)
1089
+ total_loss = (start_loss + end_loss) / 2
1090
+
1091
+ if not return_dict:
1092
+ output = (start_logits, end_logits) + outputs[2:]
1093
+ return ((total_loss,) + output) if total_loss is not None else output
1094
+
1095
+ return QuestionAnsweringModelOutput(
1096
+ loss=total_loss,
1097
+ start_logits=start_logits,
1098
+ end_logits=end_logits,
1099
+ hidden_states=outputs.hidden_states,
1100
+ attentions=outputs.attentions,
1101
+ )
1102
+
pytorch_model-00001-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88e64cd2aaefcb24c769dd23cd21a6f0261b176ad67a2c9095f9e562caac91cb
3
+ size 9504771037
pytorch_model-00002-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2eebbb6fdf4c14915402c15b82796818621dc16047c47bf458a9855e8d8de56
3
+ size 9513159919
pytorch_model-00003-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c7610cb1e80f9c4e88b0a476fd76d0697dc37775db7c79a3ba5823a54e09ef1
3
+ size 9513159919
pytorch_model-00004-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:197a192c779c6b7d4f9366ede3cbed6020b72cd07390b1843aa88e72edfb912b
3
+ size 9513159919
pytorch_model-00005-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6efa3eac43921b92698d08b5fb255e1d46194c9f2e62233b30ad324bda3fbb09
3
+ size 9513159919
pytorch_model-00006-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4fdfc73aba3cfbc54898b847f9bdd3aec6229d6951bcc080a9e97970804e5bc
3
+ size 9513159919
pytorch_model-00007-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d1a84aa44f1d69bc7ad711f60766faf1abfac5521dbc0ffa2744dee45d76111
3
+ size 9513159919
pytorch_model-00008-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7e33daf9e31785d73f60296a8e25a720707c90395e744eb63a880c84ef6d7c7
3
+ size 9513159919
pytorch_model-00009-of-00009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64e28f79c244fe15cf12d9d3b39d3ec618ed51c3deda9f49ec4fe36c36f570d3
3
+ size 6509867223
pytorch_model.bin.index.json ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 82606587904
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "pytorch_model-00001-of-00009.bin",
7
+ "transformer.h.0.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
8
+ "transformer.h.0.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
9
+ "transformer.h.0.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
10
+ "transformer.h.0.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
11
+ "transformer.h.0.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
12
+ "transformer.h.0.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
13
+ "transformer.h.0.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
14
+ "transformer.h.0.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
15
+ "transformer.h.1.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
16
+ "transformer.h.1.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
17
+ "transformer.h.1.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
18
+ "transformer.h.1.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
19
+ "transformer.h.1.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
20
+ "transformer.h.1.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
21
+ "transformer.h.1.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
22
+ "transformer.h.1.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
23
+ "transformer.h.10.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
24
+ "transformer.h.10.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
25
+ "transformer.h.10.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
26
+ "transformer.h.10.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
27
+ "transformer.h.10.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
28
+ "transformer.h.10.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
29
+ "transformer.h.10.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
30
+ "transformer.h.10.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
31
+ "transformer.h.11.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
32
+ "transformer.h.11.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
33
+ "transformer.h.11.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
34
+ "transformer.h.11.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
35
+ "transformer.h.11.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
36
+ "transformer.h.11.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
37
+ "transformer.h.11.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
38
+ "transformer.h.11.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
39
+ "transformer.h.12.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
40
+ "transformer.h.12.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
41
+ "transformer.h.12.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
42
+ "transformer.h.12.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
43
+ "transformer.h.12.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
44
+ "transformer.h.12.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
45
+ "transformer.h.12.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
46
+ "transformer.h.12.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
47
+ "transformer.h.13.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
48
+ "transformer.h.13.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
49
+ "transformer.h.13.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
50
+ "transformer.h.13.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
51
+ "transformer.h.13.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
52
+ "transformer.h.13.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
53
+ "transformer.h.13.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
54
+ "transformer.h.13.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
55
+ "transformer.h.14.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
56
+ "transformer.h.14.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
57
+ "transformer.h.14.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
58
+ "transformer.h.14.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
59
+ "transformer.h.14.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
60
+ "transformer.h.14.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
61
+ "transformer.h.14.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
62
+ "transformer.h.14.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
63
+ "transformer.h.15.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
64
+ "transformer.h.15.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
65
+ "transformer.h.15.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
66
+ "transformer.h.15.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
67
+ "transformer.h.15.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
68
+ "transformer.h.15.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
69
+ "transformer.h.15.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
70
+ "transformer.h.15.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
71
+ "transformer.h.16.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
72
+ "transformer.h.16.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
73
+ "transformer.h.16.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
74
+ "transformer.h.16.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
75
+ "transformer.h.16.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
76
+ "transformer.h.16.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
77
+ "transformer.h.16.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
78
+ "transformer.h.16.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
79
+ "transformer.h.17.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
80
+ "transformer.h.17.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
81
+ "transformer.h.17.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
82
+ "transformer.h.17.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
83
+ "transformer.h.17.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
84
+ "transformer.h.17.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
85
+ "transformer.h.17.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
86
+ "transformer.h.17.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
87
+ "transformer.h.18.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
88
+ "transformer.h.18.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
89
+ "transformer.h.18.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
90
+ "transformer.h.18.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
91
+ "transformer.h.18.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
92
+ "transformer.h.18.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
93
+ "transformer.h.18.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
94
+ "transformer.h.18.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
95
+ "transformer.h.19.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
96
+ "transformer.h.19.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
97
+ "transformer.h.19.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
98
+ "transformer.h.19.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
99
+ "transformer.h.19.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00009.bin",
100
+ "transformer.h.19.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00009.bin",
101
+ "transformer.h.19.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
102
+ "transformer.h.19.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
103
+ "transformer.h.2.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
104
+ "transformer.h.2.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
105
+ "transformer.h.2.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
106
+ "transformer.h.2.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
107
+ "transformer.h.2.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
108
+ "transformer.h.2.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
109
+ "transformer.h.2.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
110
+ "transformer.h.2.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
111
+ "transformer.h.20.ln_attn.bias": "pytorch_model-00003-of-00009.bin",
112
+ "transformer.h.20.ln_attn.weight": "pytorch_model-00003-of-00009.bin",
113
+ "transformer.h.20.ln_mlp.bias": "pytorch_model-00003-of-00009.bin",
114
+ "transformer.h.20.ln_mlp.weight": "pytorch_model-00003-of-00009.bin",
115
+ "transformer.h.20.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
116
+ "transformer.h.20.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
117
+ "transformer.h.20.self_attention.dense.weight": "pytorch_model-00003-of-00009.bin",
118
+ "transformer.h.20.self_attention.query_key_value.weight": "pytorch_model-00003-of-00009.bin",
119
+ "transformer.h.21.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
120
+ "transformer.h.21.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
121
+ "transformer.h.21.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
122
+ "transformer.h.21.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
123
+ "transformer.h.21.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
124
+ "transformer.h.21.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
125
+ "transformer.h.21.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
126
+ "transformer.h.21.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
127
+ "transformer.h.22.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
128
+ "transformer.h.22.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
129
+ "transformer.h.22.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
130
+ "transformer.h.22.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
131
+ "transformer.h.22.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
132
+ "transformer.h.22.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
133
+ "transformer.h.22.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
134
+ "transformer.h.22.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
135
+ "transformer.h.23.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
136
+ "transformer.h.23.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
137
+ "transformer.h.23.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
138
+ "transformer.h.23.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
139
+ "transformer.h.23.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
140
+ "transformer.h.23.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
141
+ "transformer.h.23.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
142
+ "transformer.h.23.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
143
+ "transformer.h.24.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
144
+ "transformer.h.24.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
145
+ "transformer.h.24.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
146
+ "transformer.h.24.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
147
+ "transformer.h.24.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
148
+ "transformer.h.24.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
149
+ "transformer.h.24.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
150
+ "transformer.h.24.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
151
+ "transformer.h.25.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
152
+ "transformer.h.25.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
153
+ "transformer.h.25.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
154
+ "transformer.h.25.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
155
+ "transformer.h.25.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
156
+ "transformer.h.25.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
157
+ "transformer.h.25.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
158
+ "transformer.h.25.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
159
+ "transformer.h.26.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
160
+ "transformer.h.26.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
161
+ "transformer.h.26.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
162
+ "transformer.h.26.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
163
+ "transformer.h.26.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00009.bin",
164
+ "transformer.h.26.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00009.bin",
165
+ "transformer.h.26.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
166
+ "transformer.h.26.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
167
+ "transformer.h.27.ln_attn.bias": "pytorch_model-00004-of-00009.bin",
168
+ "transformer.h.27.ln_attn.weight": "pytorch_model-00004-of-00009.bin",
169
+ "transformer.h.27.ln_mlp.bias": "pytorch_model-00004-of-00009.bin",
170
+ "transformer.h.27.ln_mlp.weight": "pytorch_model-00004-of-00009.bin",
171
+ "transformer.h.27.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
172
+ "transformer.h.27.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
173
+ "transformer.h.27.self_attention.dense.weight": "pytorch_model-00004-of-00009.bin",
174
+ "transformer.h.27.self_attention.query_key_value.weight": "pytorch_model-00004-of-00009.bin",
175
+ "transformer.h.28.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
176
+ "transformer.h.28.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
177
+ "transformer.h.28.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
178
+ "transformer.h.28.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
179
+ "transformer.h.28.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
180
+ "transformer.h.28.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
181
+ "transformer.h.28.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
182
+ "transformer.h.28.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
183
+ "transformer.h.29.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
184
+ "transformer.h.29.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
185
+ "transformer.h.29.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
186
+ "transformer.h.29.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
187
+ "transformer.h.29.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
188
+ "transformer.h.29.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
189
+ "transformer.h.29.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
190
+ "transformer.h.29.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
191
+ "transformer.h.3.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
192
+ "transformer.h.3.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
193
+ "transformer.h.3.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
194
+ "transformer.h.3.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
195
+ "transformer.h.3.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
196
+ "transformer.h.3.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
197
+ "transformer.h.3.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
198
+ "transformer.h.3.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
199
+ "transformer.h.30.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
200
+ "transformer.h.30.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
201
+ "transformer.h.30.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
202
+ "transformer.h.30.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
203
+ "transformer.h.30.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
204
+ "transformer.h.30.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
205
+ "transformer.h.30.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
206
+ "transformer.h.30.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
207
+ "transformer.h.31.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
208
+ "transformer.h.31.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
209
+ "transformer.h.31.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
210
+ "transformer.h.31.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
211
+ "transformer.h.31.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
212
+ "transformer.h.31.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
213
+ "transformer.h.31.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
214
+ "transformer.h.31.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
215
+ "transformer.h.32.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
216
+ "transformer.h.32.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
217
+ "transformer.h.32.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
218
+ "transformer.h.32.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
219
+ "transformer.h.32.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
220
+ "transformer.h.32.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
221
+ "transformer.h.32.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
222
+ "transformer.h.32.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
223
+ "transformer.h.33.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
224
+ "transformer.h.33.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
225
+ "transformer.h.33.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
226
+ "transformer.h.33.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
227
+ "transformer.h.33.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00009.bin",
228
+ "transformer.h.33.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00009.bin",
229
+ "transformer.h.33.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
230
+ "transformer.h.33.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
231
+ "transformer.h.34.ln_attn.bias": "pytorch_model-00005-of-00009.bin",
232
+ "transformer.h.34.ln_attn.weight": "pytorch_model-00005-of-00009.bin",
233
+ "transformer.h.34.ln_mlp.bias": "pytorch_model-00005-of-00009.bin",
234
+ "transformer.h.34.ln_mlp.weight": "pytorch_model-00005-of-00009.bin",
235
+ "transformer.h.34.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
236
+ "transformer.h.34.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
237
+ "transformer.h.34.self_attention.dense.weight": "pytorch_model-00005-of-00009.bin",
238
+ "transformer.h.34.self_attention.query_key_value.weight": "pytorch_model-00005-of-00009.bin",
239
+ "transformer.h.35.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
240
+ "transformer.h.35.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
241
+ "transformer.h.35.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
242
+ "transformer.h.35.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
243
+ "transformer.h.35.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
244
+ "transformer.h.35.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
245
+ "transformer.h.35.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
246
+ "transformer.h.35.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
247
+ "transformer.h.36.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
248
+ "transformer.h.36.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
249
+ "transformer.h.36.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
250
+ "transformer.h.36.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
251
+ "transformer.h.36.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
252
+ "transformer.h.36.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
253
+ "transformer.h.36.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
254
+ "transformer.h.36.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
255
+ "transformer.h.37.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
256
+ "transformer.h.37.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
257
+ "transformer.h.37.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
258
+ "transformer.h.37.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
259
+ "transformer.h.37.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
260
+ "transformer.h.37.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
261
+ "transformer.h.37.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
262
+ "transformer.h.37.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
263
+ "transformer.h.38.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
264
+ "transformer.h.38.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
265
+ "transformer.h.38.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
266
+ "transformer.h.38.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
267
+ "transformer.h.38.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
268
+ "transformer.h.38.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
269
+ "transformer.h.38.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
270
+ "transformer.h.38.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
271
+ "transformer.h.39.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
272
+ "transformer.h.39.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
273
+ "transformer.h.39.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
274
+ "transformer.h.39.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
275
+ "transformer.h.39.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
276
+ "transformer.h.39.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
277
+ "transformer.h.39.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
278
+ "transformer.h.39.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
279
+ "transformer.h.4.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
280
+ "transformer.h.4.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
281
+ "transformer.h.4.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
282
+ "transformer.h.4.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
283
+ "transformer.h.4.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
284
+ "transformer.h.4.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
285
+ "transformer.h.4.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
286
+ "transformer.h.4.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
287
+ "transformer.h.40.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
288
+ "transformer.h.40.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
289
+ "transformer.h.40.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
290
+ "transformer.h.40.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
291
+ "transformer.h.40.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00009.bin",
292
+ "transformer.h.40.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00009.bin",
293
+ "transformer.h.40.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
294
+ "transformer.h.40.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
295
+ "transformer.h.41.ln_attn.bias": "pytorch_model-00006-of-00009.bin",
296
+ "transformer.h.41.ln_attn.weight": "pytorch_model-00006-of-00009.bin",
297
+ "transformer.h.41.ln_mlp.bias": "pytorch_model-00006-of-00009.bin",
298
+ "transformer.h.41.ln_mlp.weight": "pytorch_model-00006-of-00009.bin",
299
+ "transformer.h.41.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
300
+ "transformer.h.41.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
301
+ "transformer.h.41.self_attention.dense.weight": "pytorch_model-00006-of-00009.bin",
302
+ "transformer.h.41.self_attention.query_key_value.weight": "pytorch_model-00006-of-00009.bin",
303
+ "transformer.h.42.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
304
+ "transformer.h.42.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
305
+ "transformer.h.42.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
306
+ "transformer.h.42.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
307
+ "transformer.h.42.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
308
+ "transformer.h.42.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
309
+ "transformer.h.42.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
310
+ "transformer.h.42.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
311
+ "transformer.h.43.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
312
+ "transformer.h.43.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
313
+ "transformer.h.43.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
314
+ "transformer.h.43.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
315
+ "transformer.h.43.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
316
+ "transformer.h.43.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
317
+ "transformer.h.43.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
318
+ "transformer.h.43.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
319
+ "transformer.h.44.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
320
+ "transformer.h.44.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
321
+ "transformer.h.44.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
322
+ "transformer.h.44.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
323
+ "transformer.h.44.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
324
+ "transformer.h.44.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
325
+ "transformer.h.44.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
326
+ "transformer.h.44.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
327
+ "transformer.h.45.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
328
+ "transformer.h.45.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
329
+ "transformer.h.45.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
330
+ "transformer.h.45.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
331
+ "transformer.h.45.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
332
+ "transformer.h.45.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
333
+ "transformer.h.45.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
334
+ "transformer.h.45.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
335
+ "transformer.h.46.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
336
+ "transformer.h.46.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
337
+ "transformer.h.46.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
338
+ "transformer.h.46.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
339
+ "transformer.h.46.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
340
+ "transformer.h.46.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
341
+ "transformer.h.46.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
342
+ "transformer.h.46.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
343
+ "transformer.h.47.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
344
+ "transformer.h.47.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
345
+ "transformer.h.47.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
346
+ "transformer.h.47.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
347
+ "transformer.h.47.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00009.bin",
348
+ "transformer.h.47.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00009.bin",
349
+ "transformer.h.47.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
350
+ "transformer.h.47.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
351
+ "transformer.h.48.ln_attn.bias": "pytorch_model-00007-of-00009.bin",
352
+ "transformer.h.48.ln_attn.weight": "pytorch_model-00007-of-00009.bin",
353
+ "transformer.h.48.ln_mlp.bias": "pytorch_model-00007-of-00009.bin",
354
+ "transformer.h.48.ln_mlp.weight": "pytorch_model-00007-of-00009.bin",
355
+ "transformer.h.48.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
356
+ "transformer.h.48.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
357
+ "transformer.h.48.self_attention.dense.weight": "pytorch_model-00007-of-00009.bin",
358
+ "transformer.h.48.self_attention.query_key_value.weight": "pytorch_model-00007-of-00009.bin",
359
+ "transformer.h.49.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
360
+ "transformer.h.49.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
361
+ "transformer.h.49.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
362
+ "transformer.h.49.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
363
+ "transformer.h.49.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
364
+ "transformer.h.49.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
365
+ "transformer.h.49.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
366
+ "transformer.h.49.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
367
+ "transformer.h.5.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
368
+ "transformer.h.5.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
369
+ "transformer.h.5.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
370
+ "transformer.h.5.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
371
+ "transformer.h.5.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00009.bin",
372
+ "transformer.h.5.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00009.bin",
373
+ "transformer.h.5.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
374
+ "transformer.h.5.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
375
+ "transformer.h.50.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
376
+ "transformer.h.50.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
377
+ "transformer.h.50.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
378
+ "transformer.h.50.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
379
+ "transformer.h.50.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
380
+ "transformer.h.50.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
381
+ "transformer.h.50.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
382
+ "transformer.h.50.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
383
+ "transformer.h.51.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
384
+ "transformer.h.51.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
385
+ "transformer.h.51.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
386
+ "transformer.h.51.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
387
+ "transformer.h.51.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
388
+ "transformer.h.51.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
389
+ "transformer.h.51.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
390
+ "transformer.h.51.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
391
+ "transformer.h.52.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
392
+ "transformer.h.52.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
393
+ "transformer.h.52.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
394
+ "transformer.h.52.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
395
+ "transformer.h.52.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
396
+ "transformer.h.52.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
397
+ "transformer.h.52.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
398
+ "transformer.h.52.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
399
+ "transformer.h.53.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
400
+ "transformer.h.53.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
401
+ "transformer.h.53.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
402
+ "transformer.h.53.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
403
+ "transformer.h.53.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
404
+ "transformer.h.53.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
405
+ "transformer.h.53.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
406
+ "transformer.h.53.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
407
+ "transformer.h.54.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
408
+ "transformer.h.54.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
409
+ "transformer.h.54.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
410
+ "transformer.h.54.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
411
+ "transformer.h.54.mlp.dense_4h_to_h.weight": "pytorch_model-00008-of-00009.bin",
412
+ "transformer.h.54.mlp.dense_h_to_4h.weight": "pytorch_model-00008-of-00009.bin",
413
+ "transformer.h.54.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
414
+ "transformer.h.54.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
415
+ "transformer.h.55.ln_attn.bias": "pytorch_model-00008-of-00009.bin",
416
+ "transformer.h.55.ln_attn.weight": "pytorch_model-00008-of-00009.bin",
417
+ "transformer.h.55.ln_mlp.bias": "pytorch_model-00008-of-00009.bin",
418
+ "transformer.h.55.ln_mlp.weight": "pytorch_model-00008-of-00009.bin",
419
+ "transformer.h.55.mlp.dense_4h_to_h.weight": "pytorch_model-00009-of-00009.bin",
420
+ "transformer.h.55.mlp.dense_h_to_4h.weight": "pytorch_model-00009-of-00009.bin",
421
+ "transformer.h.55.self_attention.dense.weight": "pytorch_model-00008-of-00009.bin",
422
+ "transformer.h.55.self_attention.query_key_value.weight": "pytorch_model-00008-of-00009.bin",
423
+ "transformer.h.56.ln_attn.bias": "pytorch_model-00009-of-00009.bin",
424
+ "transformer.h.56.ln_attn.weight": "pytorch_model-00009-of-00009.bin",
425
+ "transformer.h.56.ln_mlp.bias": "pytorch_model-00009-of-00009.bin",
426
+ "transformer.h.56.ln_mlp.weight": "pytorch_model-00009-of-00009.bin",
427
+ "transformer.h.56.mlp.dense_4h_to_h.weight": "pytorch_model-00009-of-00009.bin",
428
+ "transformer.h.56.mlp.dense_h_to_4h.weight": "pytorch_model-00009-of-00009.bin",
429
+ "transformer.h.56.self_attention.dense.weight": "pytorch_model-00009-of-00009.bin",
430
+ "transformer.h.56.self_attention.query_key_value.weight": "pytorch_model-00009-of-00009.bin",
431
+ "transformer.h.57.ln_attn.bias": "pytorch_model-00009-of-00009.bin",
432
+ "transformer.h.57.ln_attn.weight": "pytorch_model-00009-of-00009.bin",
433
+ "transformer.h.57.ln_mlp.bias": "pytorch_model-00009-of-00009.bin",
434
+ "transformer.h.57.ln_mlp.weight": "pytorch_model-00009-of-00009.bin",
435
+ "transformer.h.57.mlp.dense_4h_to_h.weight": "pytorch_model-00009-of-00009.bin",
436
+ "transformer.h.57.mlp.dense_h_to_4h.weight": "pytorch_model-00009-of-00009.bin",
437
+ "transformer.h.57.self_attention.dense.weight": "pytorch_model-00009-of-00009.bin",
438
+ "transformer.h.57.self_attention.query_key_value.weight": "pytorch_model-00009-of-00009.bin",
439
+ "transformer.h.58.ln_attn.bias": "pytorch_model-00009-of-00009.bin",
440
+ "transformer.h.58.ln_attn.weight": "pytorch_model-00009-of-00009.bin",
441
+ "transformer.h.58.ln_mlp.bias": "pytorch_model-00009-of-00009.bin",
442
+ "transformer.h.58.ln_mlp.weight": "pytorch_model-00009-of-00009.bin",
443
+ "transformer.h.58.mlp.dense_4h_to_h.weight": "pytorch_model-00009-of-00009.bin",
444
+ "transformer.h.58.mlp.dense_h_to_4h.weight": "pytorch_model-00009-of-00009.bin",
445
+ "transformer.h.58.self_attention.dense.weight": "pytorch_model-00009-of-00009.bin",
446
+ "transformer.h.58.self_attention.query_key_value.weight": "pytorch_model-00009-of-00009.bin",
447
+ "transformer.h.59.ln_attn.bias": "pytorch_model-00009-of-00009.bin",
448
+ "transformer.h.59.ln_attn.weight": "pytorch_model-00009-of-00009.bin",
449
+ "transformer.h.59.ln_mlp.bias": "pytorch_model-00009-of-00009.bin",
450
+ "transformer.h.59.ln_mlp.weight": "pytorch_model-00009-of-00009.bin",
451
+ "transformer.h.59.mlp.dense_4h_to_h.weight": "pytorch_model-00009-of-00009.bin",
452
+ "transformer.h.59.mlp.dense_h_to_4h.weight": "pytorch_model-00009-of-00009.bin",
453
+ "transformer.h.59.self_attention.dense.weight": "pytorch_model-00009-of-00009.bin",
454
+ "transformer.h.59.self_attention.query_key_value.weight": "pytorch_model-00009-of-00009.bin",
455
+ "transformer.h.6.ln_attn.bias": "pytorch_model-00001-of-00009.bin",
456
+ "transformer.h.6.ln_attn.weight": "pytorch_model-00001-of-00009.bin",
457
+ "transformer.h.6.ln_mlp.bias": "pytorch_model-00001-of-00009.bin",
458
+ "transformer.h.6.ln_mlp.weight": "pytorch_model-00001-of-00009.bin",
459
+ "transformer.h.6.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
460
+ "transformer.h.6.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
461
+ "transformer.h.6.self_attention.dense.weight": "pytorch_model-00001-of-00009.bin",
462
+ "transformer.h.6.self_attention.query_key_value.weight": "pytorch_model-00001-of-00009.bin",
463
+ "transformer.h.7.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
464
+ "transformer.h.7.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
465
+ "transformer.h.7.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
466
+ "transformer.h.7.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
467
+ "transformer.h.7.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
468
+ "transformer.h.7.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
469
+ "transformer.h.7.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
470
+ "transformer.h.7.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
471
+ "transformer.h.8.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
472
+ "transformer.h.8.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
473
+ "transformer.h.8.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
474
+ "transformer.h.8.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
475
+ "transformer.h.8.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
476
+ "transformer.h.8.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
477
+ "transformer.h.8.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
478
+ "transformer.h.8.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
479
+ "transformer.h.9.ln_attn.bias": "pytorch_model-00002-of-00009.bin",
480
+ "transformer.h.9.ln_attn.weight": "pytorch_model-00002-of-00009.bin",
481
+ "transformer.h.9.ln_mlp.bias": "pytorch_model-00002-of-00009.bin",
482
+ "transformer.h.9.ln_mlp.weight": "pytorch_model-00002-of-00009.bin",
483
+ "transformer.h.9.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00009.bin",
484
+ "transformer.h.9.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00009.bin",
485
+ "transformer.h.9.self_attention.dense.weight": "pytorch_model-00002-of-00009.bin",
486
+ "transformer.h.9.self_attention.query_key_value.weight": "pytorch_model-00002-of-00009.bin",
487
+ "transformer.ln_f.bias": "pytorch_model-00009-of-00009.bin",
488
+ "transformer.ln_f.weight": "pytorch_model-00009-of-00009.bin",
489
+ "transformer.word_embeddings.weight": "pytorch_model-00001-of-00009.bin"
490
+ }
491
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ ">>TITLE<<",
4
+ ">>ABSTRACT<<",
5
+ ">>INTRODUCTION<<",
6
+ ">>SUMMARY<<",
7
+ ">>COMMENT<<",
8
+ ">>ANSWER<<",
9
+ ">>QUESTION<<",
10
+ ">>DOMAIN<<",
11
+ ">>PREFIX<<",
12
+ ">>SUFFIX<<",
13
+ ">>MIDDLE<<"
14
+ ],
15
+ "eos_token": "<|endoftext|>",
16
+ "pad_token": "<|endoftext|>"
17
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "clean_up_tokenization_spaces": true,
4
+ "eos_token": "<|endoftext|>",
5
+ "model_max_length": 2048,
6
+ "tokenizer_class": "PreTrainedTokenizerFast"
7
+ }