mxmax commited on
Commit
6c68f11
1 Parent(s): 04c357f

commit from

Browse files
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BaiChuanForCausalLM"
4
+ ],
5
+ "auto_map": {
6
+ "AutoConfig": "configuration_baichuan.BaiChuanConfig",
7
+ "AutoModelForCausalLM": "modeling_baichuan.BaiChuanForCausalLM"
8
+ },
9
+ "bos_token_id": 1,
10
+ "eos_token_id": 2,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 4096,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 11008,
15
+ "max_position_embeddings": 4096,
16
+ "model_type": "baichuan",
17
+ "num_attention_heads": 32,
18
+ "num_hidden_layers": 32,
19
+ "pad_token_id": 0,
20
+ "rms_norm_eps": 1e-06,
21
+ "tie_word_embeddings": false,
22
+ "torch_dtype": "float32",
23
+ "transformers_version": "4.29.1",
24
+ "use_cache": true,
25
+ "vocab_size": 64000
26
+ }
configuration_baichuan.py ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
5
+ # and OPT implementations in this library. It has been modified from its
6
+ # original forms to accommodate minor architectural differences compared
7
+ # to GPT-NeoX and OPT used by the Meta AI team that trained the model.
8
+ #
9
+ # Licensed under the Apache License, Version 2.0 (the "License");
10
+ # you may not use this file except in compliance with the License.
11
+ # You may obtain a copy of the License at
12
+ #
13
+ # http://www.apache.org/licenses/LICENSE-2.0
14
+ #
15
+ # Unless required by applicable law or agreed to in writing, software
16
+ # distributed under the License is distributed on an "AS IS" BASIS,
17
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+
21
+ from transformers.configuration_utils import PretrainedConfig
22
+ from transformers.utils import logging
23
+
24
+
25
+ logger = logging.get_logger(__name__)
26
+
27
+
28
+ class BaiChuanConfig(PretrainedConfig):
29
+ model_type = "baichuan"
30
+ keys_to_ignore_at_inference = ["past_key_values"]
31
+
32
+ def __init__(
33
+ self,
34
+ vocab_size=64000,
35
+ hidden_size=4096,
36
+ intermediate_size=11008,
37
+ num_hidden_layers=32,
38
+ num_attention_heads=32,
39
+ hidden_act="silu",
40
+ max_position_embeddings=4096,
41
+ initializer_range=0.02,
42
+ rms_norm_eps=1e-6,
43
+ use_cache=True,
44
+ pad_token_id=0,
45
+ bos_token_id=1,
46
+ eos_token_id=2,
47
+ tie_word_embeddings=False,
48
+ **kwargs,
49
+ ):
50
+ self.vocab_size = vocab_size
51
+ self.max_position_embeddings = max_position_embeddings
52
+ self.hidden_size = hidden_size
53
+ self.intermediate_size = intermediate_size
54
+ self.num_hidden_layers = num_hidden_layers
55
+ self.num_attention_heads = num_attention_heads
56
+ self.hidden_act = hidden_act
57
+ self.initializer_range = initializer_range
58
+ self.rms_norm_eps = rms_norm_eps
59
+ self.use_cache = use_cache
60
+ super().__init__(
61
+ pad_token_id=pad_token_id,
62
+ bos_token_id=bos_token_id,
63
+ eos_token_id=eos_token_id,
64
+ tie_word_embeddings=tie_word_embeddings,
65
+ **kwargs,
66
+ )
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.31.0"
7
+ }
modeling_baichuan.py ADDED
@@ -0,0 +1,664 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
5
+ # and OPT implementations in this library. It has been modified from its
6
+ # original forms to accommodate minor architectural differences compared
7
+ # to GPT-NeoX and OPT used by the Meta AI team that trained the model.
8
+ #
9
+ # Licensed under the Apache License, Version 2.0 (the "License");
10
+ # you may not use this file except in compliance with the License.
11
+ # You may obtain a copy of the License at
12
+ #
13
+ # http://www.apache.org/licenses/LICENSE-2.0
14
+ #
15
+ # Unless required by applicable law or agreed to in writing, software
16
+ # distributed under the License is distributed on an "AS IS" BASIS,
17
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ from .configuration_baichuan import BaiChuanConfig
21
+ from transformers import PreTrainedModel, add_start_docstrings
22
+ from transformers.activations import ACT2FN
23
+ from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast, \
24
+ SequenceClassifierOutputWithPast
25
+ from transformers.utils import logging, add_start_docstrings_to_model_forward, replace_return_docstrings
26
+
27
+ import math
28
+ from typing import List, Optional, Tuple, Union
29
+
30
+ import torch
31
+ import torch.utils.checkpoint
32
+ from torch import nn
33
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
34
+
35
+
36
+ logger = logging.get_logger(__name__)
37
+
38
+ # Copied from transformers.models.bart.modeling_bart._make_causal_mask
39
+ def _make_causal_mask(
40
+ input_ids_shape: torch.Size, dtype: torch.dtype, device: torch.device, past_key_values_length: int = 0
41
+ ):
42
+ """
43
+ Make causal mask used for bi-directional self-attention.
44
+ """
45
+ bsz, tgt_len = input_ids_shape
46
+ mask = torch.full((tgt_len, tgt_len), torch.tensor(torch.finfo(dtype).min, device=device), device=device)
47
+ mask_cond = torch.arange(mask.size(-1), device=device)
48
+ mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
49
+ mask = mask.to(dtype)
50
+
51
+ if past_key_values_length > 0:
52
+ mask = torch.cat([torch.zeros(tgt_len, past_key_values_length, dtype=dtype, device=device), mask], dim=-1)
53
+ return mask[None, None, :, :].expand(bsz, 1, tgt_len, tgt_len + past_key_values_length)
54
+
55
+
56
+ # Copied from transformers.models.bart.modeling_bart._expand_mask
57
+ def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int] = None):
58
+ """
59
+ Expands attention_mask from `[bsz, seq_len]` to `[bsz, 1, tgt_seq_len, src_seq_len]`.
60
+ """
61
+ bsz, src_len = mask.size()
62
+ tgt_len = tgt_len if tgt_len is not None else src_len
63
+
64
+ expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len, src_len).to(dtype)
65
+
66
+ inverted_mask = 1.0 - expanded_mask
67
+
68
+ return inverted_mask.masked_fill(inverted_mask.to(torch.bool), torch.finfo(dtype).min)
69
+
70
+
71
+ class RMSNorm(nn.Module):
72
+ def __init__(self, hidden_size, eps=1e-6):
73
+ """
74
+ RMSNorm is equivalent to T5LayerNorm
75
+ """
76
+ super().__init__()
77
+ self.weight = nn.Parameter(torch.ones(hidden_size))
78
+ self.variance_epsilon = eps
79
+
80
+ def forward(self, hidden_states):
81
+ variance = hidden_states.to(torch.float32).pow(2).mean(-1, keepdim=True)
82
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
83
+
84
+ # convert into half-precision if necessary
85
+ if self.weight.dtype in [torch.float16, torch.bfloat16]:
86
+ hidden_states = hidden_states.to(self.weight.dtype)
87
+
88
+ return self.weight * hidden_states
89
+
90
+
91
+ class RotaryEmbedding(torch.nn.Module):
92
+ def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None):
93
+ super().__init__()
94
+ inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float().to(device) / dim))
95
+ self.register_buffer("inv_freq", inv_freq)
96
+
97
+ # Build here to make `torch.jit.trace` work.
98
+ self.max_seq_len_cached = max_position_embeddings
99
+ t = torch.arange(self.max_seq_len_cached, device=self.inv_freq.device, dtype=self.inv_freq.dtype)
100
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
101
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
102
+ emb = torch.cat((freqs, freqs), dim=-1)
103
+ self.register_buffer("cos_cached", emb.cos()[None, None, :, :], persistent=False)
104
+ self.register_buffer("sin_cached", emb.sin()[None, None, :, :], persistent=False)
105
+
106
+ def forward(self, x, seq_len=None):
107
+ # x: [bs, num_attention_heads, seq_len, head_size]
108
+ # This `if` block is unlikely to be run after we build sin/cos in `__init__`. Keep the logic here just in case.
109
+ if seq_len > self.max_seq_len_cached:
110
+ self.max_seq_len_cached = seq_len
111
+ t = torch.arange(self.max_seq_len_cached, device=x.device, dtype=self.inv_freq.dtype)
112
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
113
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
114
+ emb = torch.cat((freqs, freqs), dim=-1).to(x.device)
115
+ self.register_buffer("cos_cached", emb.cos()[None, None, :, :], persistent=False)
116
+ self.register_buffer("sin_cached", emb.sin()[None, None, :, :], persistent=False)
117
+ return (
118
+ self.cos_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
119
+ self.sin_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
120
+ )
121
+
122
+
123
+ def rotate_half(x):
124
+ """Rotates half the hidden dims of the input."""
125
+ x1 = x[..., : x.shape[-1] // 2]
126
+ x2 = x[..., x.shape[-1] // 2:]
127
+ return torch.cat((-x2, x1), dim=-1)
128
+
129
+
130
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids):
131
+ # The first two dimensions of cos and sin are always 1, so we can `squeeze` them.
132
+ cos = cos.squeeze(1).squeeze(0) # [seq_len, dim]
133
+ sin = sin.squeeze(1).squeeze(0) # [seq_len, dim]
134
+ cos = cos[position_ids].unsqueeze(1) # [bs, 1, seq_len, dim]
135
+ sin = sin[position_ids].unsqueeze(1) # [bs, 1, seq_len, dim]
136
+ q_embed = (q * cos) + (rotate_half(q) * sin)
137
+ k_embed = (k * cos) + (rotate_half(k) * sin)
138
+ return q_embed, k_embed
139
+
140
+
141
+ class MLP(nn.Module):
142
+ def __init__(
143
+ self,
144
+ hidden_size: int,
145
+ intermediate_size: int,
146
+ hidden_act: str,
147
+ ):
148
+ super().__init__()
149
+ self.gate_proj = nn.Linear(hidden_size, intermediate_size, bias=False)
150
+ self.down_proj = nn.Linear(intermediate_size, hidden_size, bias=False)
151
+ self.up_proj = nn.Linear(hidden_size, intermediate_size, bias=False)
152
+ self.act_fn = ACT2FN[hidden_act]
153
+
154
+ def forward(self, x):
155
+ return self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
156
+
157
+
158
+ class Attention(nn.Module):
159
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
160
+
161
+ def __init__(self, config: BaiChuanConfig):
162
+ super().__init__()
163
+ self.config = config
164
+ self.hidden_size = config.hidden_size
165
+ self.num_heads = config.num_attention_heads
166
+ self.head_dim = self.hidden_size // self.num_heads
167
+ self.max_position_embeddings = config.max_position_embeddings
168
+
169
+ if (self.head_dim * self.num_heads) != self.hidden_size:
170
+ raise ValueError(
171
+ f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
172
+ f" and `num_heads`: {self.num_heads})."
173
+ )
174
+ self.W_pack = nn.Linear(self.hidden_size, 3 * self.hidden_size, bias=False)
175
+ self.o_proj = nn.Linear(self.num_heads * self.head_dim, self.hidden_size, bias=False)
176
+ self.rotary_emb = RotaryEmbedding(self.head_dim, max_position_embeddings=self.max_position_embeddings)
177
+
178
+ def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
179
+ return tensor.view(bsz, seq_len, self.num_heads, self.head_dim).transpose(1, 2).contiguous()
180
+
181
+ def forward(
182
+ self,
183
+ hidden_states: torch.Tensor,
184
+ attention_mask: Optional[torch.Tensor] = None,
185
+ position_ids: Optional[torch.LongTensor] = None,
186
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
187
+ output_attentions: bool = False,
188
+ use_cache: bool = False,
189
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
190
+ bsz, q_len, _ = hidden_states.size()
191
+
192
+ proj = self.W_pack(hidden_states)
193
+ proj = proj.unflatten(-1, (3, self.hidden_size)).unsqueeze(0).transpose(0, -2).squeeze(-2)
194
+ query_states = proj[0].view(bsz, q_len, self.num_heads, self.head_dim).transpose(1,
195
+ 2) # batch_size x source_len x hidden_size
196
+ key_states = proj[1].view(bsz, q_len, self.num_heads, self.head_dim).transpose(1,
197
+ 2) # batch_size x target_len x head_size
198
+ value_states = proj[2].view(bsz, q_len, self.num_heads, self.head_dim).transpose(1,
199
+ 2) # batch_size x source_len x hidden_size
200
+
201
+ kv_seq_len = key_states.shape[-2]
202
+ if past_key_value is not None:
203
+ kv_seq_len += past_key_value[0].shape[-2]
204
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
205
+ query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
206
+ # [bsz, nh, t, hd]
207
+
208
+ if past_key_value is not None:
209
+ # reuse k, v, self_attention
210
+ key_states = torch.cat([past_key_value[0], key_states], dim=2)
211
+ value_states = torch.cat([past_key_value[1], value_states], dim=2)
212
+
213
+ past_key_value = (key_states, value_states) if use_cache else None
214
+
215
+ attn_weights = torch.matmul(query_states, key_states.transpose(2, 3)) / math.sqrt(self.head_dim)
216
+
217
+ if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
218
+ raise ValueError(
219
+ f"Attention weights should be of size {(bsz, self.num_heads, q_len, kv_seq_len)}, but is"
220
+ f" {attn_weights.size()}"
221
+ )
222
+
223
+ if attention_mask is not None:
224
+ if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
225
+ raise ValueError(
226
+ f"Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}"
227
+ )
228
+ attn_weights = attn_weights + attention_mask
229
+ attn_weights = torch.max(attn_weights, torch.tensor(torch.finfo(attn_weights.dtype).min))
230
+
231
+ # upcast attention to fp32
232
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query_states.dtype)
233
+ attn_output = torch.matmul(attn_weights, value_states)
234
+
235
+ if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
236
+ raise ValueError(
237
+ f"`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is"
238
+ f" {attn_output.size()}"
239
+ )
240
+
241
+ attn_output = attn_output.transpose(1, 2)
242
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
243
+
244
+ attn_output = self.o_proj(attn_output)
245
+
246
+ if not output_attentions:
247
+ attn_weights = None
248
+
249
+ return attn_output, attn_weights, past_key_value
250
+
251
+
252
+ class DecoderLayer(nn.Module):
253
+ def __init__(self, config: BaiChuanConfig):
254
+ super().__init__()
255
+ self.hidden_size = config.hidden_size
256
+ self.self_attn = Attention(config=config)
257
+ self.mlp = MLP(
258
+ hidden_size=self.hidden_size,
259
+ intermediate_size=config.intermediate_size,
260
+ hidden_act=config.hidden_act,
261
+ )
262
+ self.input_layernorm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
263
+ self.post_attention_layernorm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
264
+
265
+ def forward(
266
+ self,
267
+ hidden_states: torch.Tensor,
268
+ attention_mask: Optional[torch.Tensor] = None,
269
+ position_ids: Optional[torch.LongTensor] = None,
270
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
271
+ output_attentions: Optional[bool] = False,
272
+ use_cache: Optional[bool] = False,
273
+ ) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
274
+ """
275
+ Args:
276
+ hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
277
+ attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
278
+ `(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
279
+ output_attentions (`bool`, *optional*):
280
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under
281
+ returned tensors for more detail.
282
+ use_cache (`bool`, *optional*):
283
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
284
+ (see `past_key_values`).
285
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
286
+ """
287
+
288
+ residual = hidden_states
289
+
290
+ hidden_states = self.input_layernorm(hidden_states)
291
+
292
+ # Self Attention
293
+ hidden_states, self_attn_weights, present_key_value = self.self_attn(
294
+ hidden_states=hidden_states,
295
+ attention_mask=attention_mask,
296
+ position_ids=position_ids,
297
+ past_key_value=past_key_value,
298
+ output_attentions=output_attentions,
299
+ use_cache=use_cache,
300
+ )
301
+ hidden_states = residual + hidden_states
302
+
303
+ # Fully Connected
304
+ residual = hidden_states
305
+ hidden_states = self.post_attention_layernorm(hidden_states)
306
+ hidden_states = self.mlp(hidden_states)
307
+ hidden_states = residual + hidden_states
308
+
309
+ outputs = (hidden_states,)
310
+
311
+ if output_attentions:
312
+ outputs += (self_attn_weights,)
313
+
314
+ if use_cache:
315
+ outputs += (present_key_value,)
316
+
317
+ return outputs
318
+
319
+
320
+ class PreTrainedModel(PreTrainedModel):
321
+ config_class = BaiChuanConfig
322
+ base_model_prefix = "model"
323
+ supports_gradient_checkpointing = True
324
+ _no_split_modules = ["DecoderLayer"]
325
+ _keys_to_ignore_on_load_unexpected = [r"decoder\.version"]
326
+
327
+ def _init_weights(self, module):
328
+ std = self.config.initializer_range
329
+ if isinstance(module, nn.Linear):
330
+ module.weight.data.normal_(mean=0.0, std=std)
331
+ if module.bias is not None:
332
+ module.bias.data.zero_()
333
+ elif isinstance(module, nn.Embedding):
334
+ module.weight.data.normal_(mean=0.0, std=std)
335
+ if module.padding_idx is not None:
336
+ module.weight.data[module.padding_idx].zero_()
337
+
338
+ def _set_gradient_checkpointing(self, module, value=False):
339
+ if isinstance(module, Model):
340
+ module.gradient_checkpointing = value
341
+
342
+
343
+ class Model(PreTrainedModel):
344
+ """
345
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`DecoderLayer`]
346
+ Args:
347
+ config: BaiChuanConfig
348
+ """
349
+
350
+ def __init__(self, config: BaiChuanConfig):
351
+ super().__init__(config)
352
+ self.padding_idx = config.pad_token_id
353
+ self.vocab_size = config.vocab_size
354
+
355
+ self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
356
+ self.layers = nn.ModuleList([DecoderLayer(config) for _ in range(config.num_hidden_layers)])
357
+ self.norm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
358
+
359
+ self.gradient_checkpointing = False
360
+ # Initialize weights and apply final processing
361
+ self.post_init()
362
+
363
+ def get_input_embeddings(self):
364
+ return self.embed_tokens
365
+
366
+ def set_input_embeddings(self, value):
367
+ self.embed_tokens = value
368
+
369
+ # Copied from transformers.models.bart.modeling_bart.BartDecoder._prepare_decoder_attention_mask
370
+ def _prepare_decoder_attention_mask(self, attention_mask, input_shape, inputs_embeds, past_key_values_length):
371
+ # create causal mask
372
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
373
+ combined_attention_mask = None
374
+ if input_shape[-1] > 1:
375
+ combined_attention_mask = _make_causal_mask(
376
+ input_shape,
377
+ inputs_embeds.dtype,
378
+ device=inputs_embeds.device,
379
+ past_key_values_length=past_key_values_length,
380
+ )
381
+
382
+ if attention_mask is not None:
383
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
384
+ expanded_attn_mask = _expand_mask(attention_mask, inputs_embeds.dtype, tgt_len=input_shape[-1]).to(
385
+ inputs_embeds.device
386
+ )
387
+ combined_attention_mask = (
388
+ expanded_attn_mask if combined_attention_mask is None else expanded_attn_mask + combined_attention_mask
389
+ )
390
+
391
+ return combined_attention_mask
392
+
393
+ def forward(
394
+ self,
395
+ input_ids: torch.LongTensor = None,
396
+ attention_mask: Optional[torch.Tensor] = None,
397
+ position_ids: Optional[torch.LongTensor] = None,
398
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
399
+ inputs_embeds: Optional[torch.FloatTensor] = None,
400
+ use_cache: Optional[bool] = None,
401
+ output_attentions: Optional[bool] = None,
402
+ output_hidden_states: Optional[bool] = None,
403
+ return_dict: Optional[bool] = None,
404
+ ) -> Union[Tuple, BaseModelOutputWithPast]:
405
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
406
+ output_hidden_states = (
407
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
408
+ )
409
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
410
+
411
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
412
+
413
+ # retrieve input_ids and inputs_embeds
414
+ if input_ids is not None and inputs_embeds is not None:
415
+ raise ValueError("You cannot specify both decoder_input_ids and decoder_inputs_embeds at the same time")
416
+ elif input_ids is not None:
417
+ batch_size, seq_length = input_ids.shape
418
+ elif inputs_embeds is not None:
419
+ batch_size, seq_length, _ = inputs_embeds.shape
420
+ else:
421
+ raise ValueError("You have to specify either decoder_input_ids or decoder_inputs_embeds")
422
+
423
+ seq_length_with_past = seq_length
424
+ past_key_values_length = 0
425
+
426
+ if past_key_values is not None:
427
+ past_key_values_length = past_key_values[0][0].shape[2]
428
+ seq_length_with_past = seq_length_with_past + past_key_values_length
429
+
430
+ if position_ids is None:
431
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
432
+ position_ids = torch.arange(
433
+ past_key_values_length, seq_length + past_key_values_length, dtype=torch.long, device=device
434
+ )
435
+ position_ids = position_ids.unsqueeze(0).view(-1, seq_length)
436
+ else:
437
+ position_ids = position_ids.view(-1, seq_length).long()
438
+
439
+ if inputs_embeds is None:
440
+ inputs_embeds = self.embed_tokens(input_ids)
441
+ # embed positions
442
+ if attention_mask is None:
443
+ attention_mask = torch.ones(
444
+ (batch_size, seq_length_with_past), dtype=torch.bool, device=inputs_embeds.device
445
+ )
446
+ attention_mask = self._prepare_decoder_attention_mask(
447
+ attention_mask, (batch_size, seq_length), inputs_embeds, past_key_values_length
448
+ )
449
+
450
+ hidden_states = inputs_embeds
451
+
452
+ if self.gradient_checkpointing and self.training:
453
+ if use_cache:
454
+ logger.warning_once(
455
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
456
+ )
457
+ use_cache = False
458
+
459
+ # decoder layers
460
+ all_hidden_states = () if output_hidden_states else None
461
+ all_self_attns = () if output_attentions else None
462
+ next_decoder_cache = () if use_cache else None
463
+
464
+ for idx, decoder_layer in enumerate(self.layers):
465
+ if output_hidden_states:
466
+ all_hidden_states += (hidden_states,)
467
+
468
+ past_key_value = past_key_values[idx] if past_key_values is not None else None
469
+
470
+ if self.gradient_checkpointing and self.training:
471
+
472
+ def create_custom_forward(module):
473
+ def custom_forward(*inputs):
474
+ # None for past_key_value
475
+ return module(*inputs, output_attentions, None)
476
+
477
+ return custom_forward
478
+
479
+ layer_outputs = torch.utils.checkpoint.checkpoint(
480
+ create_custom_forward(decoder_layer),
481
+ hidden_states,
482
+ attention_mask,
483
+ position_ids,
484
+ None,
485
+ )
486
+ else:
487
+ layer_outputs = decoder_layer(
488
+ hidden_states,
489
+ attention_mask=attention_mask,
490
+ position_ids=position_ids,
491
+ past_key_value=past_key_value,
492
+ output_attentions=output_attentions,
493
+ use_cache=use_cache,
494
+ )
495
+
496
+ hidden_states = layer_outputs[0]
497
+
498
+ if use_cache:
499
+ next_decoder_cache += (layer_outputs[2 if output_attentions else 1],)
500
+
501
+ if output_attentions:
502
+ all_self_attns += (layer_outputs[1],)
503
+
504
+ hidden_states = self.norm(hidden_states)
505
+
506
+ # add hidden states from the last decoder layer
507
+ if output_hidden_states:
508
+ all_hidden_states += (hidden_states,)
509
+
510
+ next_cache = next_decoder_cache if use_cache else None
511
+ if not return_dict:
512
+ return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)
513
+ return BaseModelOutputWithPast(
514
+ last_hidden_state=hidden_states,
515
+ past_key_values=next_cache,
516
+ hidden_states=all_hidden_states,
517
+ attentions=all_self_attns,
518
+ )
519
+
520
+
521
+ class BaiChuanForCausalLM(PreTrainedModel):
522
+ def __init__(self, config):
523
+ super().__init__(config)
524
+ self.model = Model(config)
525
+
526
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
527
+
528
+ # Initialize weights and apply final processing
529
+ self.post_init()
530
+
531
+ def get_input_embeddings(self):
532
+ return self.model.embed_tokens
533
+
534
+ def set_input_embeddings(self, value):
535
+ self.model.embed_tokens = value
536
+
537
+ def get_output_embeddings(self):
538
+ return self.lm_head
539
+
540
+ def set_output_embeddings(self, new_embeddings):
541
+ self.lm_head = new_embeddings
542
+
543
+ def set_decoder(self, decoder):
544
+ self.model = decoder
545
+
546
+ def get_decoder(self):
547
+ return self.model
548
+
549
+ def forward(
550
+ self,
551
+ input_ids: torch.LongTensor = None,
552
+ attention_mask: Optional[torch.Tensor] = None,
553
+ position_ids: Optional[torch.LongTensor] = None,
554
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
555
+ inputs_embeds: Optional[torch.FloatTensor] = None,
556
+ labels: Optional[torch.LongTensor] = None,
557
+ use_cache: Optional[bool] = None,
558
+ output_attentions: Optional[bool] = None,
559
+ output_hidden_states: Optional[bool] = None,
560
+ return_dict: Optional[bool] = None,
561
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
562
+ r"""
563
+ Args:
564
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
565
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
566
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
567
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
568
+ Returns:
569
+ Example:
570
+ ```python
571
+ >>> from transformers import AutoTokenizer, ModelForCausalLM
572
+ >>> model = ModelForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
573
+ >>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
574
+ >>> prompt = "Hey, are you consciours? Can you talk to me?"
575
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
576
+ >>> # Generate
577
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
578
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
579
+ "Hey, are you consciours? Can you talk to me?\nI'm not consciours, but I can talk to you."
580
+ ```"""
581
+
582
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
583
+ output_hidden_states = (
584
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
585
+ )
586
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
587
+
588
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
589
+ outputs = self.model(
590
+ input_ids=input_ids,
591
+ attention_mask=attention_mask,
592
+ position_ids=position_ids,
593
+ past_key_values=past_key_values,
594
+ inputs_embeds=inputs_embeds,
595
+ use_cache=use_cache,
596
+ output_attentions=output_attentions,
597
+ output_hidden_states=output_hidden_states,
598
+ return_dict=return_dict,
599
+ )
600
+
601
+ hidden_states = outputs[0]
602
+ logits = self.lm_head(hidden_states)
603
+
604
+ loss = None
605
+ if labels is not None:
606
+ # Shift so that tokens < n predict n
607
+ shift_logits = logits[..., :-1, :].contiguous()
608
+ shift_labels = labels[..., 1:].contiguous()
609
+ # Flatten the tokens
610
+ loss_fct = CrossEntropyLoss()
611
+ shift_logits = shift_logits.view(-1, self.config.vocab_size)
612
+ shift_labels = shift_labels.view(-1)
613
+ # Enable model parallelism
614
+ shift_labels = shift_labels.to(shift_logits.device)
615
+ loss = loss_fct(shift_logits, shift_labels)
616
+
617
+ if not return_dict:
618
+ output = (logits,) + outputs[1:]
619
+ return (loss,) + output if loss is not None else output
620
+
621
+ return CausalLMOutputWithPast(
622
+ loss=loss,
623
+ logits=logits,
624
+ past_key_values=outputs.past_key_values,
625
+ hidden_states=outputs.hidden_states,
626
+ attentions=outputs.attentions,
627
+ )
628
+
629
+ def prepare_inputs_for_generation(
630
+ self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
631
+ ):
632
+ if past_key_values:
633
+ input_ids = input_ids[:, -1:]
634
+
635
+ position_ids = kwargs.get("position_ids", None)
636
+ if attention_mask is not None and position_ids is None:
637
+ # create position_ids on the fly for batch generation
638
+ position_ids = attention_mask.long().cumsum(-1) - 1
639
+ position_ids.masked_fill_(attention_mask == 0, 1)
640
+ if past_key_values:
641
+ position_ids = position_ids[:, -1].unsqueeze(-1)
642
+
643
+ # if `inputs_embeds` are passed, we only want to use them in the 1st generation step
644
+ if inputs_embeds is not None and past_key_values is None:
645
+ model_inputs = {"inputs_embeds": inputs_embeds}
646
+ else:
647
+ model_inputs = {"input_ids": input_ids}
648
+
649
+ model_inputs.update(
650
+ {
651
+ "position_ids": position_ids,
652
+ "past_key_values": past_key_values,
653
+ "use_cache": kwargs.get("use_cache"),
654
+ "attention_mask": attention_mask,
655
+ }
656
+ )
657
+ return model_inputs
658
+
659
+ @staticmethod
660
+ def _reorder_cache(past_key_values, beam_idx):
661
+ reordered_past = ()
662
+ for layer_past in past_key_values:
663
+ reordered_past += (tuple(past_state.index_select(0, beam_idx) for past_state in layer_past),)
664
+ return reordered_past
pytorch_model-00001-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dce1613e3c3478fffd4fefa947c38243f5dc3c8a0772820f697a341b296a8ae7
3
+ size 9968213759
pytorch_model-00002-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cca2248bc75164d00c277025640369d4419d09804957a9f974e5c87ef08e6d49
3
+ size 4033005709
pytorch_model.bin.index.json ADDED
@@ -0,0 +1,266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 14001127424
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "pytorch_model-00002-of-00002.bin",
7
+ "model.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
8
+ "model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
9
+ "model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
10
+ "model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
11
+ "model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
12
+ "model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
13
+ "model.layers.0.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
14
+ "model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
15
+ "model.layers.0.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
16
+ "model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
17
+ "model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
18
+ "model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
19
+ "model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
20
+ "model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
21
+ "model.layers.1.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
22
+ "model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
23
+ "model.layers.1.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
24
+ "model.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
25
+ "model.layers.10.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
26
+ "model.layers.10.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
27
+ "model.layers.10.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
28
+ "model.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
29
+ "model.layers.10.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
30
+ "model.layers.10.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
31
+ "model.layers.10.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
32
+ "model.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
33
+ "model.layers.11.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
34
+ "model.layers.11.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
35
+ "model.layers.11.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
36
+ "model.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
37
+ "model.layers.11.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
38
+ "model.layers.11.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
39
+ "model.layers.11.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
40
+ "model.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
41
+ "model.layers.12.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
42
+ "model.layers.12.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
43
+ "model.layers.12.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
44
+ "model.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
45
+ "model.layers.12.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
46
+ "model.layers.12.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
47
+ "model.layers.12.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
48
+ "model.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
49
+ "model.layers.13.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
50
+ "model.layers.13.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
51
+ "model.layers.13.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
52
+ "model.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
53
+ "model.layers.13.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
54
+ "model.layers.13.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
55
+ "model.layers.13.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
56
+ "model.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
57
+ "model.layers.14.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
58
+ "model.layers.14.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
59
+ "model.layers.14.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
60
+ "model.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
61
+ "model.layers.14.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
62
+ "model.layers.14.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
63
+ "model.layers.14.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
64
+ "model.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
65
+ "model.layers.15.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
66
+ "model.layers.15.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
67
+ "model.layers.15.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
68
+ "model.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
69
+ "model.layers.15.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
70
+ "model.layers.15.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
71
+ "model.layers.15.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
72
+ "model.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
73
+ "model.layers.16.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
74
+ "model.layers.16.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
75
+ "model.layers.16.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
76
+ "model.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
77
+ "model.layers.16.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
78
+ "model.layers.16.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
79
+ "model.layers.16.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
80
+ "model.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
81
+ "model.layers.17.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
82
+ "model.layers.17.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
83
+ "model.layers.17.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
84
+ "model.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
85
+ "model.layers.17.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
86
+ "model.layers.17.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
87
+ "model.layers.17.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
88
+ "model.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
89
+ "model.layers.18.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
90
+ "model.layers.18.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
91
+ "model.layers.18.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
92
+ "model.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
93
+ "model.layers.18.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
94
+ "model.layers.18.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
95
+ "model.layers.18.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
96
+ "model.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
97
+ "model.layers.19.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
98
+ "model.layers.19.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
99
+ "model.layers.19.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
100
+ "model.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
101
+ "model.layers.19.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
102
+ "model.layers.19.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
103
+ "model.layers.19.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
104
+ "model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
105
+ "model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
106
+ "model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
107
+ "model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
108
+ "model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
109
+ "model.layers.2.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
110
+ "model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
111
+ "model.layers.2.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
112
+ "model.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
113
+ "model.layers.20.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
114
+ "model.layers.20.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
115
+ "model.layers.20.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
116
+ "model.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
117
+ "model.layers.20.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
118
+ "model.layers.20.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
119
+ "model.layers.20.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
120
+ "model.layers.21.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
121
+ "model.layers.21.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
122
+ "model.layers.21.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
123
+ "model.layers.21.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
124
+ "model.layers.21.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
125
+ "model.layers.21.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
126
+ "model.layers.21.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
127
+ "model.layers.21.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
128
+ "model.layers.22.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
129
+ "model.layers.22.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
130
+ "model.layers.22.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
131
+ "model.layers.22.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
132
+ "model.layers.22.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
133
+ "model.layers.22.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
134
+ "model.layers.22.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
135
+ "model.layers.22.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
136
+ "model.layers.23.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
137
+ "model.layers.23.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
138
+ "model.layers.23.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
139
+ "model.layers.23.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
140
+ "model.layers.23.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
141
+ "model.layers.23.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
142
+ "model.layers.23.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
143
+ "model.layers.23.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
144
+ "model.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
145
+ "model.layers.24.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
146
+ "model.layers.24.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
147
+ "model.layers.24.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
148
+ "model.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
149
+ "model.layers.24.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
150
+ "model.layers.24.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
151
+ "model.layers.24.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
152
+ "model.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
153
+ "model.layers.25.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
154
+ "model.layers.25.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
155
+ "model.layers.25.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
156
+ "model.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
157
+ "model.layers.25.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
158
+ "model.layers.25.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
159
+ "model.layers.25.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
160
+ "model.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
161
+ "model.layers.26.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
162
+ "model.layers.26.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
163
+ "model.layers.26.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
164
+ "model.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
165
+ "model.layers.26.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
166
+ "model.layers.26.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
167
+ "model.layers.26.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
168
+ "model.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
169
+ "model.layers.27.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
170
+ "model.layers.27.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
171
+ "model.layers.27.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
172
+ "model.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
173
+ "model.layers.27.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
174
+ "model.layers.27.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
175
+ "model.layers.27.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
176
+ "model.layers.28.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
177
+ "model.layers.28.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
178
+ "model.layers.28.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
179
+ "model.layers.28.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
180
+ "model.layers.28.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
181
+ "model.layers.28.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
182
+ "model.layers.28.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
183
+ "model.layers.28.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
184
+ "model.layers.29.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
185
+ "model.layers.29.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
186
+ "model.layers.29.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
187
+ "model.layers.29.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
188
+ "model.layers.29.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
189
+ "model.layers.29.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
190
+ "model.layers.29.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
191
+ "model.layers.29.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
192
+ "model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
193
+ "model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
194
+ "model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
195
+ "model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
196
+ "model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
197
+ "model.layers.3.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
198
+ "model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
199
+ "model.layers.3.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
200
+ "model.layers.30.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
201
+ "model.layers.30.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
202
+ "model.layers.30.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
203
+ "model.layers.30.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
204
+ "model.layers.30.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
205
+ "model.layers.30.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
206
+ "model.layers.30.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
207
+ "model.layers.30.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
208
+ "model.layers.31.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
209
+ "model.layers.31.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
210
+ "model.layers.31.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
211
+ "model.layers.31.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
212
+ "model.layers.31.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
213
+ "model.layers.31.self_attn.W_pack.weight": "pytorch_model-00002-of-00002.bin",
214
+ "model.layers.31.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
215
+ "model.layers.31.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
216
+ "model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
217
+ "model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
218
+ "model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
219
+ "model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
220
+ "model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
221
+ "model.layers.4.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
222
+ "model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
223
+ "model.layers.4.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
224
+ "model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
225
+ "model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
226
+ "model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
227
+ "model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
228
+ "model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
229
+ "model.layers.5.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
230
+ "model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
231
+ "model.layers.5.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
232
+ "model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
233
+ "model.layers.6.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
234
+ "model.layers.6.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
235
+ "model.layers.6.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
236
+ "model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
237
+ "model.layers.6.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
238
+ "model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
239
+ "model.layers.6.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
240
+ "model.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
241
+ "model.layers.7.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
242
+ "model.layers.7.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
243
+ "model.layers.7.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
244
+ "model.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
245
+ "model.layers.7.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
246
+ "model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
247
+ "model.layers.7.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
248
+ "model.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
249
+ "model.layers.8.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
250
+ "model.layers.8.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
251
+ "model.layers.8.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
252
+ "model.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
253
+ "model.layers.8.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
254
+ "model.layers.8.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
255
+ "model.layers.8.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
256
+ "model.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
257
+ "model.layers.9.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
258
+ "model.layers.9.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
259
+ "model.layers.9.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
260
+ "model.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
261
+ "model.layers.9.self_attn.W_pack.weight": "pytorch_model-00001-of-00002.bin",
262
+ "model.layers.9.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
263
+ "model.layers.9.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
264
+ "model.norm.weight": "pytorch_model-00002-of-00002.bin"
265
+ }
266
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenization_baichuan.py ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
5
+ # and OPT implementations in this library. It has been modified from its
6
+ # original forms to accommodate minor architectural differences compared
7
+ # to GPT-NeoX and OPT used by the Meta AI team that trained the model.
8
+ #
9
+ # Licensed under the Apache License, Version 2.0 (the "License");
10
+ # you may not use this file except in compliance with the License.
11
+ # You may obtain a copy of the License at
12
+ #
13
+ # http://www.apache.org/licenses/LICENSE-2.0
14
+ #
15
+ # Unless required by applicable law or agreed to in writing, software
16
+ # distributed under the License is distributed on an "AS IS" BASIS,
17
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+
21
+ import os
22
+ from shutil import copyfile
23
+ from typing import Any, Dict, List, Optional, Tuple
24
+
25
+ import sentencepiece as spm
26
+
27
+ from transformers.tokenization_utils import AddedToken, PreTrainedTokenizer
28
+ from transformers.utils import logging
29
+
30
+
31
+ logger = logging.get_logger(__name__)
32
+
33
+ VOCAB_FILES_NAMES = {"vocab_file": "tokenizer.model"}
34
+
35
+ PRETRAINED_VOCAB_FILES_MAP = {
36
+ "vocab_file": {},
37
+ "tokenizer_file": {},
38
+ }
39
+ PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES = {}
40
+
41
+
42
+ class BaiChuanTokenizer(PreTrainedTokenizer):
43
+ """
44
+ Construct a BaiChuan tokenizer. Based on byte-level Byte-Pair-Encoding.
45
+ Args:
46
+ vocab_file (`str`):
47
+ Path to the vocabulary file.
48
+ """
49
+
50
+ vocab_files_names = VOCAB_FILES_NAMES
51
+ pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
52
+ max_model_input_sizes = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES
53
+ model_input_names = ["input_ids", "attention_mask"]
54
+
55
+ def __init__(
56
+ self,
57
+ vocab_file,
58
+ unk_token="<unk>",
59
+ bos_token="<s>",
60
+ eos_token="</s>",
61
+ pad_token=None,
62
+ sp_model_kwargs: Optional[Dict[str, Any]] = None,
63
+ add_bos_token=True,
64
+ add_eos_token=False,
65
+ clean_up_tokenization_spaces=False,
66
+ **kwargs,
67
+ ):
68
+ self.sp_model_kwargs = {} if sp_model_kwargs is None else sp_model_kwargs
69
+ bos_token = AddedToken(bos_token, lstrip=False, rstrip=False) if isinstance(bos_token, str) else bos_token
70
+ eos_token = AddedToken(eos_token, lstrip=False, rstrip=False) if isinstance(eos_token, str) else eos_token
71
+ unk_token = AddedToken(unk_token, lstrip=False, rstrip=False) if isinstance(unk_token, str) else unk_token
72
+ pad_token = AddedToken(pad_token, lstrip=False, rstrip=False) if isinstance(pad_token, str) else pad_token
73
+ super().__init__(
74
+ bos_token=bos_token,
75
+ eos_token=eos_token,
76
+ unk_token=unk_token,
77
+ pad_token=pad_token,
78
+ add_bos_token=add_bos_token,
79
+ add_eos_token=add_eos_token,
80
+ sp_model_kwargs=self.sp_model_kwargs,
81
+ clean_up_tokenization_spaces=clean_up_tokenization_spaces,
82
+ **kwargs,
83
+ )
84
+ self.vocab_file = vocab_file
85
+ self.add_bos_token = add_bos_token
86
+ self.add_eos_token = add_eos_token
87
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
88
+ self.sp_model.Load(vocab_file)
89
+
90
+ def __getstate__(self):
91
+ state = self.__dict__.copy()
92
+ state["sp_model"] = None
93
+ return state
94
+
95
+ def __setstate__(self, d):
96
+ self.__dict__ = d
97
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
98
+ self.sp_model.Load(self.vocab_file)
99
+
100
+ @property
101
+ def vocab_size(self):
102
+ """Returns vocab size"""
103
+ return self.sp_model.get_piece_size()
104
+
105
+ def get_vocab(self):
106
+ """Returns vocab as a dict"""
107
+ vocab = {self.convert_ids_to_tokens(i): i for i in range(self.vocab_size)}
108
+ vocab.update(self.added_tokens_encoder)
109
+ return vocab
110
+
111
+ def _tokenize(self, text):
112
+ """Returns a tokenized string."""
113
+ return self.sp_model.encode(text, out_type=str)
114
+
115
+ def _convert_token_to_id(self, token):
116
+ """Converts a token (str) in an id using the vocab."""
117
+ return self.sp_model.piece_to_id(token)
118
+
119
+ def _convert_id_to_token(self, index):
120
+ """Converts an index (integer) in a token (str) using the vocab."""
121
+ token = self.sp_model.IdToPiece(index)
122
+ return token
123
+
124
+ def convert_tokens_to_string(self, tokens):
125
+ """Converts a sequence of tokens (string) in a single string."""
126
+ current_sub_tokens = []
127
+ out_string = ""
128
+ prev_is_special = False
129
+ for i, token in enumerate(tokens):
130
+ # make sure that special tokens are not decoded using sentencepiece model
131
+ if token in self.all_special_tokens:
132
+ if not prev_is_special and i != 0:
133
+ out_string += " "
134
+ out_string += self.sp_model.decode(current_sub_tokens) + token
135
+ prev_is_special = True
136
+ current_sub_tokens = []
137
+ else:
138
+ current_sub_tokens.append(token)
139
+ prev_is_special = False
140
+ out_string += self.sp_model.decode(current_sub_tokens)
141
+ return out_string
142
+
143
+ def save_vocabulary(self, save_directory, filename_prefix: Optional[str] = None) -> Tuple[str]:
144
+ """
145
+ Save the vocabulary and special tokens file to a directory.
146
+ Args:
147
+ save_directory (`str`):
148
+ The directory in which to save the vocabulary.
149
+ Returns:
150
+ `Tuple(str)`: Paths to the files saved.
151
+ """
152
+ if not os.path.isdir(save_directory):
153
+ logger.error(f"Vocabulary path ({save_directory}) should be a directory")
154
+ return
155
+ out_vocab_file = os.path.join(
156
+ save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["vocab_file"]
157
+ )
158
+
159
+ if os.path.abspath(self.vocab_file) != os.path.abspath(out_vocab_file) and os.path.isfile(self.vocab_file):
160
+ copyfile(self.vocab_file, out_vocab_file)
161
+ elif not os.path.isfile(self.vocab_file):
162
+ with open(out_vocab_file, "wb") as fi:
163
+ content_spiece_model = self.sp_model.serialized_model_proto()
164
+ fi.write(content_spiece_model)
165
+
166
+ return (out_vocab_file,)
167
+
168
+ def build_inputs_with_special_tokens(self, token_ids_0, token_ids_1=None):
169
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
170
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
171
+
172
+ output = bos_token_id + token_ids_0 + eos_token_id
173
+
174
+ if token_ids_1 is not None:
175
+ output = output + bos_token_id + token_ids_1 + eos_token_id
176
+
177
+ return output
178
+
179
+ def get_special_tokens_mask(
180
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None, already_has_special_tokens: bool = False
181
+ ) -> List[int]:
182
+ """
183
+ Retrieve sequence ids from a token list that has no special tokens added. This method is called when adding
184
+ special tokens using the tokenizer `prepare_for_model` method.
185
+ Args:
186
+ token_ids_0 (`List[int]`):
187
+ List of IDs.
188
+ token_ids_1 (`List[int]`, *optional*):
189
+ Optional second list of IDs for sequence pairs.
190
+ already_has_special_tokens (`bool`, *optional*, defaults to `False`):
191
+ Whether or not the token list is already formatted with special tokens for the model.
192
+ Returns:
193
+ `List[int]`: A list of integers in the range [0, 1]: 1 for a special token, 0 for a sequence token.
194
+ """
195
+ if already_has_special_tokens:
196
+ return super().get_special_tokens_mask(
197
+ token_ids_0=token_ids_0, token_ids_1=token_ids_1, already_has_special_tokens=True
198
+ )
199
+
200
+ bos_token_id = [1] if self.add_bos_token else []
201
+ eos_token_id = [1] if self.add_eos_token else []
202
+
203
+ if token_ids_1 is None:
204
+ return bos_token_id + ([0] * len(token_ids_0)) + eos_token_id
205
+ return (
206
+ bos_token_id
207
+ + ([0] * len(token_ids_0))
208
+ + eos_token_id
209
+ + bos_token_id
210
+ + ([0] * len(token_ids_1))
211
+ + eos_token_id
212
+ )
213
+
214
+ def create_token_type_ids_from_sequences(
215
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None
216
+ ) -> List[int]:
217
+ """
218
+ Creates a mask from the two sequences passed to be used in a sequence-pair classification task. An ALBERT
219
+ sequence pair mask has the following format:
220
+ ```
221
+ 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
222
+ | first sequence | second sequence |
223
+ ```
224
+ if token_ids_1 is None, only returns the first portion of the mask (0s).
225
+ Args:
226
+ token_ids_0 (`List[int]`):
227
+ List of ids.
228
+ token_ids_1 (`List[int]`, *optional*):
229
+ Optional second list of IDs for sequence pairs.
230
+ Returns:
231
+ `List[int]`: List of [token type IDs](../glossary#token-type-ids) according to the given sequence(s).
232
+ """
233
+ bos_token_id = [self.bos_token_id] if self.add_bos_token else []
234
+ eos_token_id = [self.eos_token_id] if self.add_eos_token else []
235
+
236
+ output = [0] * len(bos_token_id + token_ids_0 + eos_token_id)
237
+
238
+ if token_ids_1 is not None:
239
+ output += [1] * len(bos_token_id + token_ids_1 + eos_token_id)
240
+
241
+ return output
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4be54af290d93c113bcbf421115ae9eed9d6340408f564898f1e966dc738ef01
3
+ size 1136699
tokenizer_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_eos_token": false,
4
+ "auto_map": {
5
+ "AutoTokenizer": [
6
+ "tokenization_baichuan.BaiChuanTokenizer",
7
+ null
8
+ ]
9
+ },
10
+ "bos_token": {
11
+ "__type": "AddedToken",
12
+ "content": "<s>",
13
+ "lstrip": false,
14
+ "normalized": true,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "clean_up_tokenization_spaces": false,
19
+ "eos_token": {
20
+ "__type": "AddedToken",
21
+ "content": "</s>",
22
+ "lstrip": false,
23
+ "normalized": true,
24
+ "rstrip": false,
25
+ "single_word": false
26
+ },
27
+ "model_max_length": 1000000000000000019884624838656,
28
+ "pad_token": null,
29
+ "sp_model_kwargs": {},
30
+ "tokenizer_class": "BaiChuanTokenizer",
31
+ "unk_token": {
32
+ "__type": "AddedToken",
33
+ "content": "<unk>",
34
+ "lstrip": false,
35
+ "normalized": true,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ }
39
+ }