ssbuild commited on
Commit
b53674d
1 Parent(s): 5dcf3d6
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/data/nlp/pre_models/torch/internlm/internlm-chat-7b",
3
+ "architectures": [
4
+ "InternLMForCausalLM"
5
+ ],
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_internlm.InternLMConfig",
8
+ "AutoModel": "modeling_internlm.InternLMForCausalLM",
9
+ "AutoModelForCausalLM": "modeling_internlm.InternLMForCausalLM"
10
+ },
11
+ "bias": true,
12
+ "bos_token_id": 1,
13
+ "decoder_start_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 4096,
17
+ "initializer_range": 0.02,
18
+ "initializer_weight": false,
19
+ "intermediate_size": 11008,
20
+ "max_position_embeddings": 2048,
21
+ "model_type": "internlm",
22
+ "num_attention_heads": 32,
23
+ "num_hidden_layers": 32,
24
+ "pad_token_id": 2,
25
+ "quantization_bit": 4,
26
+ "return_dict": false,
27
+ "rms_norm_eps": 1e-06,
28
+ "task_specific_params": {},
29
+ "tie_word_embeddings": false,
30
+ "torch_dtype": "float16",
31
+ "transformers_version": "4.31.0",
32
+ "use_cache": true,
33
+ "vocab_size": 103168
34
+ }
configuration_internlm.py ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ """ InternLM model configuration"""
21
+
22
+ from transformers.utils import logging
23
+ from transformers.configuration_utils import PretrainedConfig
24
+
25
+
26
+ logger = logging.get_logger(__name__)
27
+
28
+ INTERNLM_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
29
+
30
+
31
+ class InternLMConfig(PretrainedConfig):
32
+ r"""
33
+ This is the configuration class to store the configuration of a [`InternLMModel`]. It is used to instantiate an InternLM
34
+ model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
35
+ defaults will yield a similar configuration to that of the InternLM-7B.
36
+
37
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
38
+ documentation from [`PretrainedConfig`] for more information.
39
+
40
+
41
+ Args:
42
+ vocab_size (`int`, *optional*, defaults to 32000):
43
+ Vocabulary size of the InternLM model. Defines the number of different tokens that can be represented by the
44
+ `inputs_ids` passed when calling [`InternLMModel`]
45
+ hidden_size (`int`, *optional*, defaults to 4096):
46
+ Dimension of the hidden representations.
47
+ intermediate_size (`int`, *optional*, defaults to 11008):
48
+ Dimension of the MLP representations.
49
+ num_hidden_layers (`int`, *optional*, defaults to 32):
50
+ Number of hidden layers in the Transformer encoder.
51
+ num_attention_heads (`int`, *optional*, defaults to 32):
52
+ Number of attention heads for each attention layer in the Transformer encoder.
53
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
54
+ The non-linear activation function (function or string) in the decoder.
55
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
56
+ The maximum sequence length that this model might ever be used with. Typically set this to something large
57
+ just in case (e.g., 512 or 1024 or 2048).
58
+ initializer_range (`float`, *optional*, defaults to 0.02):
59
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
60
+ rms_norm_eps (`float`, *optional*, defaults to 1e-12):
61
+ The epsilon used by the rms normalization layers.
62
+ use_cache (`bool`, *optional*, defaults to `True`):
63
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
64
+ relevant if `config.is_decoder=True`.
65
+ tie_word_embeddings(`bool`, *optional*, defaults to `False`):
66
+ Whether to tie weight embeddings
67
+ Example:
68
+
69
+ ```python
70
+ >>> from transformers import InternLMModel, InternLMConfig
71
+
72
+ >>> # Initializing a InternLM internlm-7b style configuration
73
+ >>> configuration = InternLMConfig()
74
+
75
+ >>> # Initializing a model from the internlm-7b style configuration
76
+ >>> model = InternLMModel(configuration)
77
+
78
+ >>> # Accessing the model configuration
79
+ >>> configuration = model.config
80
+ ```"""
81
+ model_type = "internlm"
82
+ _auto_class = "AutoConfig"
83
+
84
+ def __init__(
85
+ self,
86
+ vocab_size=103168,
87
+ hidden_size=4096,
88
+ intermediate_size=11008,
89
+ num_hidden_layers=32,
90
+ num_attention_heads=32,
91
+ hidden_act="silu",
92
+ max_position_embeddings=2048,
93
+ initializer_range=0.02,
94
+ rms_norm_eps=1e-6,
95
+ use_cache=True,
96
+ pad_token_id=0,
97
+ bos_token_id=1,
98
+ eos_token_id=2,
99
+ tie_word_embeddings=False,
100
+ bias=True,
101
+ quantization_bit=0,
102
+ initializer_weight=False,
103
+ **kwargs,
104
+ ):
105
+ self.vocab_size = vocab_size
106
+ self.max_position_embeddings = max_position_embeddings
107
+ self.hidden_size = hidden_size
108
+ self.intermediate_size = intermediate_size
109
+ self.num_hidden_layers = num_hidden_layers
110
+ self.num_attention_heads = num_attention_heads
111
+ self.hidden_act = hidden_act
112
+ self.initializer_range = initializer_range
113
+ self.rms_norm_eps = rms_norm_eps
114
+ self.use_cache = use_cache
115
+ self.bias = bias
116
+ self.quantization_bit = quantization_bit
117
+ self.initializer_weight = initializer_weight
118
+ super().__init__(
119
+ pad_token_id=pad_token_id,
120
+ bos_token_id=bos_token_id,
121
+ eos_token_id=eos_token_id,
122
+ tie_word_embeddings=tie_word_embeddings,
123
+ **kwargs,
124
+ )
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_internlm.py ADDED
@@ -0,0 +1,1011 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ """ PyTorch InternLM model."""
21
+ import math
22
+ from typing import List, Optional, Tuple, Union
23
+ import torch
24
+ import torch.utils.checkpoint
25
+ from torch import nn
26
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
27
+ from transformers.activations import ACT2FN
28
+ from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast, SequenceClassifierOutputWithPast
29
+ from transformers.modeling_utils import PreTrainedModel
30
+ from transformers.generation.streamers import BaseStreamer
31
+ from transformers.utils import add_start_docstrings, add_start_docstrings_to_model_forward, logging, replace_return_docstrings
32
+ from .configuration_internlm import InternLMConfig
33
+ from deep_training.nlp.models.transformer_base import TransformerBase
34
+ from deep_training.nlp.utils.torch_utils import skip_init
35
+
36
+ logger = logging.get_logger(__name__)
37
+
38
+ _CONFIG_FOR_DOC = "InternLMConfig"
39
+
40
+
41
+ def default_init(cls, *args, **kwargs):
42
+ return cls(*args, **kwargs)
43
+ skip_init_function = skip_init
44
+ def setup_model_profile(skip_init_flag=True):
45
+ global skip_init_function
46
+ if skip_init_flag:
47
+ skip_init_function = skip_init
48
+ else:
49
+ skip_init_function = default_init
50
+
51
+ # Copied from transformers.models.bart.modeling_bart._make_causal_mask
52
+ def _make_causal_mask(
53
+ input_ids_shape: torch.Size, dtype: torch.dtype, device: torch.device, past_key_values_length: int = 0
54
+ ):
55
+ """
56
+ Make causal mask used for bi-directional self-attention.
57
+ """
58
+ bsz, tgt_len = input_ids_shape
59
+ mask = torch.full((tgt_len, tgt_len), torch.tensor(torch.finfo(dtype).min, device=device), device=device)
60
+ mask_cond = torch.arange(mask.size(-1), device=device)
61
+ mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
62
+ mask = mask.to(dtype)
63
+
64
+ if past_key_values_length > 0:
65
+ mask = torch.cat([torch.zeros(tgt_len, past_key_values_length, dtype=dtype, device=device), mask], dim=-1)
66
+ return mask[None, None, :, :].expand(bsz, 1, tgt_len, tgt_len + past_key_values_length)
67
+
68
+
69
+ # Copied from transformers.models.bart.modeling_bart._expand_mask
70
+ def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int] = None):
71
+ """
72
+ Expands attention_mask from `[bsz, seq_len]` to `[bsz, 1, tgt_seq_len, src_seq_len]`.
73
+ """
74
+ bsz, src_len = mask.size()
75
+ tgt_len = tgt_len if tgt_len is not None else src_len
76
+
77
+ expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len, src_len).to(dtype)
78
+
79
+ inverted_mask = 1.0 - expanded_mask
80
+
81
+ return inverted_mask.masked_fill(inverted_mask.to(torch.bool), torch.finfo(dtype).min)
82
+
83
+
84
+ class InternLMRMSNorm(nn.Module):
85
+ def __init__(self, hidden_size, eps=1e-6,**kwargs):
86
+ """
87
+ InternLMRMSNorm is equivalent to T5LayerNorm
88
+ """
89
+ super().__init__()
90
+ self.weight = nn.Parameter(torch.ones(hidden_size,**kwargs))
91
+ self.variance_epsilon = eps
92
+
93
+ def forward(self, hidden_states):
94
+ variance = hidden_states.to(torch.float32).pow(2).mean(-1, keepdim=True)
95
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
96
+
97
+ # convert into half-precision if necessary
98
+ if self.weight.dtype in [torch.float16, torch.bfloat16]:
99
+ hidden_states = hidden_states.to(self.weight.dtype)
100
+
101
+ return self.weight * hidden_states
102
+
103
+
104
+ class InternLMRotaryEmbedding(torch.nn.Module):
105
+ def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None,**kwargs):
106
+ super().__init__()
107
+ inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float().to(device) / dim))
108
+ self.register_buffer("inv_freq", inv_freq)
109
+
110
+ # Build here to make `torch.jit.trace` work.
111
+ self.max_seq_len_cached = max_position_embeddings
112
+ t = torch.arange(self.max_seq_len_cached, device=self.inv_freq.device, dtype=self.inv_freq.dtype)
113
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
114
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
115
+ emb = torch.cat((freqs, freqs), dim=-1)
116
+ self.register_buffer("cos_cached", emb.cos()[None, None, :, :], persistent=False)
117
+ self.register_buffer("sin_cached", emb.sin()[None, None, :, :], persistent=False)
118
+
119
+ def forward(self, x, seq_len=None):
120
+ # x: [bs, num_attention_heads, seq_len, head_size]
121
+ # This `if` block is unlikely to be run after we build sin/cos in `__init__`. Keep the logic here just in case.
122
+ if seq_len > self.max_seq_len_cached:
123
+ self.max_seq_len_cached = seq_len
124
+ t = torch.arange(self.max_seq_len_cached, device=x.device, dtype=self.inv_freq.dtype)
125
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
126
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
127
+ emb = torch.cat((freqs, freqs), dim=-1).to(x.device)
128
+ self.register_buffer("cos_cached", emb.cos()[None, None, :, :], persistent=False)
129
+ self.register_buffer("sin_cached", emb.sin()[None, None, :, :], persistent=False)
130
+ return (
131
+ self.cos_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
132
+ self.sin_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
133
+ )
134
+
135
+
136
+ def rotate_half(x):
137
+ """Rotates half the hidden dims of the input."""
138
+ x1 = x[..., : x.shape[-1] // 2]
139
+ x2 = x[..., x.shape[-1] // 2 :]
140
+ return torch.cat((-x2, x1), dim=-1)
141
+
142
+
143
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids):
144
+ # The first two dimensions of cos and sin are always 1, so we can `squeeze` them.
145
+ cos = cos.squeeze(1).squeeze(0) # [seq_len, dim]
146
+ sin = sin.squeeze(1).squeeze(0) # [seq_len, dim]
147
+ cos = cos[position_ids].unsqueeze(1) # [bs, 1, seq_len, dim]
148
+ sin = sin[position_ids].unsqueeze(1) # [bs, 1, seq_len, dim]
149
+ q_embed = (q * cos) + (rotate_half(q) * sin)
150
+ k_embed = (k * cos) + (rotate_half(k) * sin)
151
+ return q_embed, k_embed
152
+
153
+
154
+ class InternLMMLP(nn.Module):
155
+ def __init__(
156
+ self,
157
+ hidden_size: int,
158
+ intermediate_size: int,
159
+ hidden_act: str,
160
+ **kwargs
161
+ ):
162
+ super().__init__()
163
+ self.gate_proj = nn.Linear(hidden_size, intermediate_size, bias=False,**kwargs)
164
+ self.down_proj = nn.Linear(intermediate_size, hidden_size, bias=False,**kwargs)
165
+ self.up_proj = nn.Linear(hidden_size, intermediate_size, bias=False,**kwargs)
166
+ self.act_fn = ACT2FN[hidden_act]
167
+
168
+ def forward(self, x):
169
+ return self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
170
+
171
+
172
+ class InternLMAttention(nn.Module):
173
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
174
+
175
+ def __init__(self, config: InternLMConfig,**kwargs):
176
+ super().__init__()
177
+ self.config = config
178
+ self.hidden_size = config.hidden_size
179
+ self.num_heads = config.num_attention_heads
180
+ self.head_dim = self.hidden_size // self.num_heads
181
+ self.max_position_embeddings = config.max_position_embeddings
182
+
183
+ if (self.head_dim * self.num_heads) != self.hidden_size:
184
+ raise ValueError(
185
+ f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
186
+ f" and `num_heads`: {self.num_heads})."
187
+ )
188
+ global skip_init_function
189
+ init_method = skip_init_function
190
+ self.q_proj = init_method(nn.Linear,self.hidden_size, self.num_heads * self.head_dim, bias=config.bias,**kwargs)
191
+ self.k_proj = init_method(nn.Linear,self.hidden_size, self.num_heads * self.head_dim, bias=config.bias,**kwargs)
192
+ self.v_proj = init_method(nn.Linear,self.hidden_size, self.num_heads * self.head_dim, bias=config.bias,**kwargs)
193
+ self.o_proj = init_method(nn.Linear,self.num_heads * self.head_dim, self.hidden_size, bias=config.bias,**kwargs)
194
+ self.rotary_emb = InternLMRotaryEmbedding(self.head_dim, max_position_embeddings=self.max_position_embeddings,**kwargs)
195
+
196
+ def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
197
+ return tensor.view(bsz, seq_len, self.num_heads, self.head_dim).transpose(1, 2).contiguous()
198
+
199
+ def forward(
200
+ self,
201
+ hidden_states: torch.Tensor,
202
+ attention_mask: Optional[torch.Tensor] = None,
203
+ position_ids: Optional[torch.LongTensor] = None,
204
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
205
+ output_attentions: bool = False,
206
+ use_cache: bool = False,
207
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
208
+ bsz, q_len, _ = hidden_states.size()
209
+
210
+ query_states = self.q_proj(hidden_states).view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
211
+ key_states = self.k_proj(hidden_states).view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
212
+ value_states = self.v_proj(hidden_states).view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
213
+
214
+ kv_seq_len = key_states.shape[-2]
215
+ if past_key_value is not None:
216
+ kv_seq_len += past_key_value[0].shape[-2]
217
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
218
+ query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
219
+ # [bsz, nh, t, hd]
220
+
221
+ if past_key_value is not None:
222
+ # reuse k, v, self_attention
223
+ key_states = torch.cat([past_key_value[0], key_states], dim=2)
224
+ value_states = torch.cat([past_key_value[1], value_states], dim=2)
225
+
226
+ past_key_value = (key_states, value_states) if use_cache else None
227
+
228
+ attn_weights = torch.matmul(query_states, key_states.transpose(2, 3)) / math.sqrt(self.head_dim)
229
+
230
+ if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
231
+ raise ValueError(
232
+ f"Attention weights should be of size {(bsz, self.num_heads, q_len, kv_seq_len)}, but is"
233
+ f" {attn_weights.size()}"
234
+ )
235
+
236
+ if attention_mask is not None:
237
+ if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
238
+ raise ValueError(
239
+ f"Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}"
240
+ )
241
+ attn_weights = attn_weights + attention_mask
242
+ attn_weights = torch.max(attn_weights, torch.tensor(torch.finfo(attn_weights.dtype).min))
243
+
244
+ # upcast attention to fp32
245
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query_states.dtype)
246
+ attn_output = torch.matmul(attn_weights, value_states)
247
+
248
+ if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
249
+ raise ValueError(
250
+ f"`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is"
251
+ f" {attn_output.size()}"
252
+ )
253
+
254
+ attn_output = attn_output.transpose(1, 2)
255
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
256
+
257
+ attn_output = self.o_proj(attn_output)
258
+
259
+ if not output_attentions:
260
+ attn_weights = None
261
+
262
+ return attn_output, attn_weights, past_key_value
263
+
264
+
265
+ class InternLMDecoderLayer(nn.Module):
266
+ def __init__(self, config: InternLMConfig,**kwargs):
267
+ super().__init__()
268
+ self.hidden_size = config.hidden_size
269
+ self.self_attn = InternLMAttention(config=config,**kwargs)
270
+ global skip_init_function
271
+ init_method = skip_init_function
272
+ self.mlp = init_method(InternLMMLP,
273
+ hidden_size=self.hidden_size,
274
+ intermediate_size=config.intermediate_size,
275
+ hidden_act=config.hidden_act,
276
+ **kwargs,
277
+ )
278
+ self.input_layernorm = init_method(InternLMRMSNorm,config.hidden_size, eps=config.rms_norm_eps,**kwargs)
279
+ self.post_attention_layernorm = init_method(InternLMRMSNorm,config.hidden_size, eps=config.rms_norm_eps,**kwargs)
280
+
281
+ def forward(
282
+ self,
283
+ hidden_states: torch.Tensor,
284
+ attention_mask: Optional[torch.Tensor] = None,
285
+ position_ids: Optional[torch.LongTensor] = None,
286
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
287
+ output_attentions: Optional[bool] = False,
288
+ use_cache: Optional[bool] = False,
289
+ ) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
290
+ """
291
+ Args:
292
+ hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
293
+ attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
294
+ `(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
295
+ output_attentions (`bool`, *optional*):
296
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under
297
+ returned tensors for more detail.
298
+ use_cache (`bool`, *optional*):
299
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
300
+ (see `past_key_values`).
301
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
302
+ """
303
+
304
+ residual = hidden_states
305
+
306
+ hidden_states = self.input_layernorm(hidden_states)
307
+
308
+ # Self Attention
309
+ hidden_states, self_attn_weights, present_key_value = self.self_attn(
310
+ hidden_states=hidden_states,
311
+ attention_mask=attention_mask,
312
+ position_ids=position_ids,
313
+ output_attentions=output_attentions,
314
+ past_key_value=past_key_value,
315
+ use_cache=use_cache,
316
+ )
317
+ hidden_states = residual + hidden_states
318
+
319
+ # Fully Connected
320
+ residual = hidden_states
321
+ hidden_states = self.post_attention_layernorm(hidden_states)
322
+ hidden_states = self.mlp(hidden_states)
323
+ hidden_states = residual + hidden_states
324
+
325
+ outputs = (hidden_states,)
326
+
327
+ if output_attentions:
328
+ outputs += (self_attn_weights,)
329
+
330
+ if use_cache:
331
+ outputs += (present_key_value,)
332
+
333
+ return outputs
334
+
335
+
336
+ INTERNLM_START_DOCSTRING = r"""
337
+ This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
338
+ library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
339
+ etc.)
340
+
341
+ This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
342
+ Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
343
+ and behavior.
344
+
345
+ Parameters:
346
+ config ([`InternLMConfig`]):
347
+ Model configuration class with all the parameters of the model. Initializing with a config file does not
348
+ load the weights associated with the model, only the configuration. Check out the
349
+ [`~PreTrainedModel.from_pretrained`] method to load the model weights.
350
+ """
351
+
352
+
353
+ @add_start_docstrings(
354
+ "The bare InternLM Model outputting raw hidden-states without any specific head on top.",
355
+ INTERNLM_START_DOCSTRING,
356
+ )
357
+ class InternLMPreTrainedModel(PreTrainedModel):
358
+ config_class = InternLMConfig
359
+ base_model_prefix = "model"
360
+ supports_gradient_checkpointing = True
361
+ _no_split_modules = ["InternLMDecoderLayer"]
362
+ _keys_to_ignore_on_load_unexpected = [r"decoder\.version"]
363
+
364
+ def _init_weights(self, module):
365
+ if not getattr(self.config, 'initializer_weight', False):
366
+ return
367
+ std = self.config.initializer_range
368
+ if isinstance(module, nn.Linear):
369
+ module.weight.data.normal_(mean=0.0, std=std)
370
+ if module.bias is not None:
371
+ module.bias.data.zero_()
372
+ elif isinstance(module, nn.Embedding):
373
+ module.weight.data.normal_(mean=0.0, std=std)
374
+ if module.padding_idx is not None:
375
+ module.weight.data[module.padding_idx].zero_()
376
+
377
+ def _set_gradient_checkpointing(self, module, value=False):
378
+ if isinstance(module, InternLMModel):
379
+ module.gradient_checkpointing = value
380
+
381
+
382
+ INTERNLM_INPUTS_DOCSTRING = r"""
383
+ Args:
384
+ input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
385
+ Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
386
+ it.
387
+
388
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
389
+ [`PreTrainedTokenizer.__call__`] for details.
390
+
391
+ [What are input IDs?](../glossary#input-ids)
392
+ attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
393
+ Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
394
+
395
+ - 1 for tokens that are **not masked**,
396
+ - 0 for tokens that are **masked**.
397
+
398
+ [What are attention masks?](../glossary#attention-mask)
399
+
400
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
401
+ [`PreTrainedTokenizer.__call__`] for details.
402
+
403
+ If `past_key_values` is used, optionally only the last `decoder_input_ids` have to be input (see
404
+ `past_key_values`).
405
+
406
+ If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
407
+ and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
408
+ information on the default strategy.
409
+
410
+ - 1 indicates the head is **not masked**,
411
+ - 0 indicates the head is **masked**.
412
+ position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
413
+ Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
414
+ config.n_positions - 1]`.
415
+
416
+ [What are position IDs?](../glossary#position-ids)
417
+ past_key_values (`tuple(tuple(torch.FloatTensor))`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):
418
+ Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape
419
+ `(batch_size, num_heads, sequence_length, embed_size_per_head)`) and 2 additional tensors of shape
420
+ `(batch_size, num_heads, encoder_sequence_length, embed_size_per_head)`.
421
+
422
+ Contains pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
423
+ blocks) that can be used (see `past_key_values` input) to speed up sequential decoding.
424
+
425
+ If `past_key_values` are used, the user can optionally input only the last `decoder_input_ids` (those that
426
+ don't have their past key value states given to this model) of shape `(batch_size, 1)` instead of all
427
+ `decoder_input_ids` of shape `(batch_size, sequence_length)`.
428
+ inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
429
+ Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
430
+ is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
431
+ model's internal embedding lookup matrix.
432
+ use_cache (`bool`, *optional*):
433
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
434
+ `past_key_values`).
435
+ output_attentions (`bool`, *optional*):
436
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
437
+ tensors for more detail.
438
+ output_hidden_states (`bool`, *optional*):
439
+ Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
440
+ more detail.
441
+ return_dict (`bool`, *optional*):
442
+ Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
443
+ """
444
+
445
+
446
+ @add_start_docstrings(
447
+ "The bare InternLM Model outputting raw hidden-states without any specific head on top.",
448
+ INTERNLM_START_DOCSTRING,
449
+ )
450
+ class InternLMModel(InternLMPreTrainedModel):
451
+ """
452
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`InternLMDecoderLayer`]
453
+
454
+ Args:
455
+ config: InternLMConfig
456
+ """
457
+ _auto_class = "AutoModel"
458
+
459
+ def __init__(self, config: InternLMConfig,**kwargs):
460
+ super().__init__(config)
461
+ self.padding_idx = config.pad_token_id
462
+ self.vocab_size = config.vocab_size
463
+
464
+ global skip_init_function
465
+ init_method = skip_init_function
466
+ self.embed_tokens = init_method(nn.Embedding,config.vocab_size, config.hidden_size, self.padding_idx,**kwargs)
467
+ self.layers = nn.ModuleList([InternLMDecoderLayer(config,**kwargs) for _ in range(config.num_hidden_layers)])
468
+ self.norm = init_method(InternLMRMSNorm,config.hidden_size, eps=config.rms_norm_eps,**kwargs)
469
+
470
+ self.gradient_checkpointing = False
471
+ # Initialize weights and apply final processing
472
+ self.post_init()
473
+
474
+ def get_input_embeddings(self):
475
+ return self.embed_tokens
476
+
477
+ def set_input_embeddings(self, value):
478
+ self.embed_tokens = value
479
+
480
+ # Copied from transformers.models.bart.modeling_bart.BartDecoder._prepare_decoder_attention_mask
481
+ def _prepare_decoder_attention_mask(self, attention_mask, input_shape, inputs_embeds, past_key_values_length):
482
+ # create causal mask
483
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
484
+ combined_attention_mask = None
485
+ if input_shape[-1] > 1:
486
+ combined_attention_mask = _make_causal_mask(
487
+ input_shape,
488
+ inputs_embeds.dtype,
489
+ device=inputs_embeds.device,
490
+ past_key_values_length=past_key_values_length,
491
+ )
492
+
493
+ if attention_mask is not None:
494
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
495
+ expanded_attn_mask = _expand_mask(attention_mask, inputs_embeds.dtype, tgt_len=input_shape[-1]).to(
496
+ inputs_embeds.device
497
+ )
498
+ combined_attention_mask = (
499
+ expanded_attn_mask if combined_attention_mask is None else expanded_attn_mask + combined_attention_mask
500
+ )
501
+
502
+ return combined_attention_mask
503
+
504
+ @add_start_docstrings_to_model_forward(INTERNLM_INPUTS_DOCSTRING)
505
+ def forward(
506
+ self,
507
+ input_ids: torch.LongTensor = None,
508
+ attention_mask: Optional[torch.Tensor] = None,
509
+ position_ids: Optional[torch.LongTensor] = None,
510
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
511
+ inputs_embeds: Optional[torch.FloatTensor] = None,
512
+ use_cache: Optional[bool] = None,
513
+ output_attentions: Optional[bool] = None,
514
+ output_hidden_states: Optional[bool] = None,
515
+ return_dict: Optional[bool] = None,
516
+ ) -> Union[Tuple, BaseModelOutputWithPast]:
517
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
518
+ output_hidden_states = (
519
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
520
+ )
521
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
522
+
523
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
524
+
525
+ # retrieve input_ids and inputs_embeds
526
+ if input_ids is not None and inputs_embeds is not None:
527
+ raise ValueError("You cannot specify both decoder_input_ids and decoder_inputs_embeds at the same time")
528
+ elif input_ids is not None:
529
+ batch_size, seq_length = input_ids.shape
530
+ elif inputs_embeds is not None:
531
+ batch_size, seq_length, _ = inputs_embeds.shape
532
+ else:
533
+ raise ValueError("You have to specify either decoder_input_ids or decoder_inputs_embeds")
534
+
535
+ seq_length_with_past = seq_length
536
+ past_key_values_length = 0
537
+
538
+ if past_key_values is not None:
539
+ past_key_values_length = past_key_values[0][0].shape[2]
540
+ seq_length_with_past = seq_length_with_past + past_key_values_length
541
+
542
+ if position_ids is None:
543
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
544
+ position_ids = torch.arange(
545
+ past_key_values_length, seq_length + past_key_values_length, dtype=torch.long, device=device
546
+ )
547
+ position_ids = position_ids.unsqueeze(0).view(-1, seq_length)
548
+ else:
549
+ position_ids = position_ids.view(-1, seq_length).long()
550
+
551
+ if inputs_embeds is None:
552
+ inputs_embeds = self.embed_tokens(input_ids)
553
+ # embed positions
554
+ if attention_mask is None:
555
+ attention_mask = torch.ones(
556
+ (batch_size, seq_length_with_past), dtype=torch.bool, device=inputs_embeds.device
557
+ )
558
+ attention_mask = self._prepare_decoder_attention_mask(
559
+ attention_mask, (batch_size, seq_length), inputs_embeds, past_key_values_length
560
+ )
561
+
562
+ hidden_states = inputs_embeds
563
+
564
+ if self.gradient_checkpointing and self.training:
565
+ if use_cache:
566
+ logger.warning_once(
567
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
568
+ )
569
+ use_cache = False
570
+
571
+ # decoder layers
572
+ all_hidden_states = () if output_hidden_states else None
573
+ all_self_attns = () if output_attentions else None
574
+ next_decoder_cache = () if use_cache else None
575
+
576
+ for idx, decoder_layer in enumerate(self.layers):
577
+ if output_hidden_states:
578
+ all_hidden_states += (hidden_states,)
579
+
580
+ past_key_value = past_key_values[idx] if past_key_values is not None else None
581
+
582
+ if self.gradient_checkpointing and self.training:
583
+
584
+ def create_custom_forward(module):
585
+ def custom_forward(*inputs):
586
+ # None for past_key_value
587
+ return module(*inputs, output_attentions, None)
588
+
589
+ return custom_forward
590
+
591
+ layer_outputs = torch.utils.checkpoint.checkpoint(
592
+ create_custom_forward(decoder_layer),
593
+ hidden_states,
594
+ attention_mask,
595
+ position_ids,
596
+ None,
597
+ )
598
+ else:
599
+ layer_outputs = decoder_layer(
600
+ hidden_states,
601
+ attention_mask=attention_mask,
602
+ position_ids=position_ids,
603
+ past_key_value=past_key_value,
604
+ output_attentions=output_attentions,
605
+ use_cache=use_cache,
606
+ )
607
+
608
+ hidden_states = layer_outputs[0]
609
+
610
+ if use_cache:
611
+ next_decoder_cache += (layer_outputs[2 if output_attentions else 1],)
612
+
613
+ if output_attentions:
614
+ all_self_attns += (layer_outputs[1],)
615
+
616
+ hidden_states = self.norm(hidden_states)
617
+
618
+ # add hidden states from the last decoder layer
619
+ if output_hidden_states:
620
+ all_hidden_states += (hidden_states,)
621
+
622
+ next_cache = next_decoder_cache if use_cache else None
623
+ if not return_dict:
624
+ return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)
625
+ return BaseModelOutputWithPast(
626
+ last_hidden_state=hidden_states,
627
+ past_key_values=next_cache,
628
+ hidden_states=all_hidden_states,
629
+ attentions=all_self_attns,
630
+ )
631
+
632
+
633
+ class InternLMForCausalLM(InternLMPreTrainedModel):
634
+ _auto_class = "AutoModelForCausalLM"
635
+
636
+ def __init__(self, config,**kwargs):
637
+ super().__init__(config)
638
+ global skip_init_function
639
+ init_method = skip_init_function
640
+ self.model = InternLMModel(config,**kwargs)
641
+
642
+ self.lm_head = init_method(nn.Linear,config.hidden_size, config.vocab_size, bias=False,**kwargs)
643
+
644
+ # Initialize weights and apply final processing
645
+ self.post_init()
646
+
647
+ self.quantized = False
648
+ if self.config.quantization_bit is not None and self.config.quantization_bit in [4,8]:
649
+ self.quantize(self.config.quantization_bit, empty_init=True)
650
+
651
+ def get_input_embeddings(self):
652
+ return self.model.embed_tokens
653
+
654
+ def set_input_embeddings(self, value):
655
+ self.model.embed_tokens = value
656
+
657
+ def get_output_embeddings(self):
658
+ return self.lm_head
659
+
660
+ def set_output_embeddings(self, new_embeddings):
661
+ self.lm_head = new_embeddings
662
+
663
+ def set_decoder(self, decoder):
664
+ self.model = decoder
665
+
666
+ def get_decoder(self):
667
+ return self.model
668
+
669
+ @add_start_docstrings_to_model_forward(INTERNLM_INPUTS_DOCSTRING)
670
+ @replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
671
+ def forward(
672
+ self,
673
+ input_ids: torch.LongTensor = None,
674
+ attention_mask: Optional[torch.Tensor] = None,
675
+ position_ids: Optional[torch.LongTensor] = None,
676
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
677
+ inputs_embeds: Optional[torch.FloatTensor] = None,
678
+ labels: Optional[torch.LongTensor] = None,
679
+ use_cache: Optional[bool] = None,
680
+ output_attentions: Optional[bool] = None,
681
+ output_hidden_states: Optional[bool] = None,
682
+ return_dict: Optional[bool] = None,
683
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
684
+ r"""
685
+ Args:
686
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
687
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
688
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
689
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
690
+
691
+ Returns:
692
+
693
+ Example:
694
+
695
+ ```python
696
+ >>> from transformers import AutoTokenizer, InternLMForCausalLM
697
+
698
+ >>> model = InternLMForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
699
+ >>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
700
+
701
+ >>> prompt = "Hey, are you consciours? Can you talk to me?"
702
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
703
+
704
+ >>> # Generate
705
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
706
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
707
+ "Hey, are you consciours? Can you talk to me?\nI'm not consciours, but I can talk to you."
708
+ ```"""
709
+
710
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
711
+ output_hidden_states = (
712
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
713
+ )
714
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
715
+
716
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
717
+ outputs = self.model(
718
+ input_ids=input_ids,
719
+ attention_mask=attention_mask,
720
+ position_ids=position_ids,
721
+ past_key_values=past_key_values,
722
+ inputs_embeds=inputs_embeds,
723
+ use_cache=use_cache,
724
+ output_attentions=output_attentions,
725
+ output_hidden_states=output_hidden_states,
726
+ return_dict=return_dict,
727
+ )
728
+
729
+ hidden_states = outputs[0]
730
+ logits = self.lm_head(hidden_states)
731
+
732
+ loss = None
733
+ if labels is not None:
734
+ # Shift so that tokens < n predict n
735
+ shift_logits = logits[..., :-1, :].contiguous()
736
+ shift_labels = labels[..., 1:].contiguous()
737
+ # Flatten the tokens
738
+ loss_fct = CrossEntropyLoss()
739
+ shift_logits = shift_logits.view(-1, self.config.vocab_size)
740
+ shift_labels = shift_labels.view(-1)
741
+ # Enable model parallelism
742
+ shift_labels = shift_labels.to(shift_logits.device)
743
+ loss = loss_fct(shift_logits, shift_labels)
744
+
745
+ if not return_dict:
746
+ output = (logits,) + outputs[1:]
747
+ return (loss,) + output if loss is not None else output
748
+
749
+ return CausalLMOutputWithPast(
750
+ loss=loss,
751
+ logits=logits,
752
+ past_key_values=outputs.past_key_values,
753
+ hidden_states=outputs.hidden_states,
754
+ attentions=outputs.attentions,
755
+ )
756
+
757
+ def prepare_inputs_for_generation(
758
+ self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
759
+ ):
760
+ if past_key_values:
761
+ input_ids = input_ids[:, -1:]
762
+
763
+ position_ids = kwargs.get("position_ids", None)
764
+ if attention_mask is not None and position_ids is None:
765
+ # create position_ids on the fly for batch generation
766
+ position_ids = attention_mask.long().cumsum(-1) - 1
767
+ position_ids.masked_fill_(attention_mask == 0, 1)
768
+ if past_key_values:
769
+ position_ids = position_ids[:, -1].unsqueeze(-1)
770
+
771
+ # if `inputs_embeds` are passed, we only want to use them in the 1st generation step
772
+ if inputs_embeds is not None and past_key_values is None:
773
+ model_inputs = {"inputs_embeds": inputs_embeds}
774
+ else:
775
+ model_inputs = {"input_ids": input_ids}
776
+
777
+ model_inputs.update(
778
+ {
779
+ "position_ids": position_ids,
780
+ "past_key_values": past_key_values,
781
+ "use_cache": kwargs.get("use_cache"),
782
+ "attention_mask": attention_mask,
783
+ }
784
+ )
785
+ return model_inputs
786
+
787
+ @staticmethod
788
+ def _reorder_cache(past_key_values, beam_idx):
789
+ reordered_past = ()
790
+ for layer_past in past_key_values:
791
+ reordered_past += (tuple(past_state.index_select(0, beam_idx) for past_state in layer_past),)
792
+ return reordered_past
793
+
794
+ def build_inputs(self, tokenizer, query: str, history: List[Tuple[str, str]] = []):
795
+ prompt = ""
796
+ for record in history:
797
+ prompt += f"""<s><|User|>:{record[0]}<eoh>\n<|Bot|>:{record[1]}<eoa>\n"""
798
+ if len(prompt) == 0:
799
+ prompt += "<s>"
800
+ prompt += f"""<|User|>:{query}<eoh>\n<|Bot|>:"""
801
+ return tokenizer([prompt], return_tensors="pt")
802
+
803
+ @torch.no_grad()
804
+ def chat(self,
805
+ tokenizer,
806
+ query: str,
807
+ history: List[Tuple[str, str]] = [],
808
+ streamer: Optional[BaseStreamer] = None,
809
+ max_new_tokens: int = 1024,
810
+ do_sample: bool = True,
811
+ temperature: float = 0.8,
812
+ top_p: float = 0.8,
813
+ eos_token_id = (2, 103028),
814
+ **kwargs):
815
+ inputs = self.build_inputs(tokenizer, query, history)
816
+ inputs = {k: v.to(self.device) for k, v in inputs.items() if torch.is_tensor(v)}
817
+ outputs = self.generate(**inputs,
818
+ streamer=streamer,
819
+ max_new_tokens=max_new_tokens,
820
+ do_sample=do_sample,
821
+ temperature=temperature,
822
+ top_p=top_p,
823
+ eos_token_id=list(eos_token_id),
824
+ **kwargs)
825
+ outputs = outputs[0].cpu().tolist()[len(inputs["input_ids"][0]):]
826
+ response = tokenizer.decode(outputs, skip_special_tokens=True)
827
+ response = response.split("<eoa>")[0]
828
+ history = history + [(query, response)]
829
+ return response, history
830
+
831
+ @torch.no_grad()
832
+ def stream_chat(self,
833
+ tokenizer,
834
+ query: str,
835
+ history: List[Tuple[str, str]] = [],
836
+ max_new_tokens: int = 1024,
837
+ do_sample: bool = True,
838
+ temperature: float = 0.8,
839
+ top_p: float = 0.8,
840
+ eos_token_id = (2, 103028),
841
+ **kwargs):
842
+ class ChatStreamer(BaseStreamer):
843
+ def __init__(self, tokenizer) -> None:
844
+ super().__init__()
845
+ self.tokenizer = tokenizer
846
+
847
+ def put(self, value):
848
+ if len(value.shape) > 1 and value.shape[0] > 1:
849
+ raise ValueError("ChatStreamer only supports batch size 1")
850
+ elif len(value.shape) > 1:
851
+ value = value[0]
852
+ token = self.tokenizer.decode([value[-1]], skip_special_tokens=True)
853
+ if token.strip() != "<eoa>":
854
+ print(token, end="")
855
+
856
+ def end(self):
857
+ print("")
858
+
859
+ return self.chat(
860
+ tokenizer=tokenizer,
861
+ query=query,
862
+ streamer=ChatStreamer(tokenizer=tokenizer),
863
+ history=history,
864
+ max_new_tokens=max_new_tokens,
865
+ do_sample=do_sample,
866
+ temperature=temperature,
867
+ top_p=top_p,
868
+ eos_token_id=eos_token_id,
869
+ **kwargs
870
+ )
871
+
872
+ def quantize(self, bits: int, empty_init=False, device=None, **kwarg):
873
+ if bits == 0:
874
+ return
875
+ from .quantization import quantize
876
+ if self.quantized:
877
+ logger.info("Already quantized.")
878
+ return self
879
+ quantize(self, bits=bits, empty_init=empty_init, device=device, **kwarg)
880
+ self.config.quantization_bit = bits
881
+ self.quantized = True
882
+ return self
883
+
884
+
885
+ @add_start_docstrings(
886
+ """
887
+ The InternLM Model transformer with a sequence classification head on top (linear layer).
888
+
889
+ [`InternLMForSequenceClassification`] uses the last token in order to do the classification, as other causal models
890
+ (e.g. GPT-2) do.
891
+
892
+ Since it does classification on the last token, it requires to know the position of the last token. If a
893
+ `pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
894
+ no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
895
+ padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
896
+ each row of the batch).
897
+ """,
898
+ INTERNLM_START_DOCSTRING,
899
+ )
900
+ class InternLMForSequenceClassification(InternLMPreTrainedModel):
901
+ _keys_to_ignore_on_load_missing = [r"lm_head.weight"]
902
+
903
+ def __init__(self, config):
904
+ super().__init__(config)
905
+ self.num_labels = config.num_labels
906
+ self.model = InternLMModel(config)
907
+ self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
908
+
909
+ # Initialize weights and apply final processing
910
+ self.post_init()
911
+
912
+ def get_input_embeddings(self):
913
+ return self.model.embed_tokens
914
+
915
+ def set_input_embeddings(self, value):
916
+ self.model.embed_tokens = value
917
+
918
+ @add_start_docstrings_to_model_forward(INTERNLM_INPUTS_DOCSTRING)
919
+ def forward(
920
+ self,
921
+ input_ids: torch.LongTensor = None,
922
+ attention_mask: Optional[torch.Tensor] = None,
923
+ position_ids: Optional[torch.LongTensor] = None,
924
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
925
+ inputs_embeds: Optional[torch.FloatTensor] = None,
926
+ labels: Optional[torch.LongTensor] = None,
927
+ use_cache: Optional[bool] = None,
928
+ output_attentions: Optional[bool] = None,
929
+ output_hidden_states: Optional[bool] = None,
930
+ return_dict: Optional[bool] = None,
931
+ ) -> Union[Tuple, SequenceClassifierOutputWithPast]:
932
+ r"""
933
+ labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
934
+ Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
935
+ config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
936
+ `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
937
+ """
938
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
939
+
940
+ transformer_outputs = self.model(
941
+ input_ids,
942
+ attention_mask=attention_mask,
943
+ position_ids=position_ids,
944
+ past_key_values=past_key_values,
945
+ inputs_embeds=inputs_embeds,
946
+ use_cache=use_cache,
947
+ output_attentions=output_attentions,
948
+ output_hidden_states=output_hidden_states,
949
+ return_dict=return_dict,
950
+ )
951
+ hidden_states = transformer_outputs[0]
952
+ logits = self.score(hidden_states)
953
+
954
+ if input_ids is not None:
955
+ batch_size = input_ids.shape[0]
956
+ else:
957
+ batch_size = inputs_embeds.shape[0]
958
+
959
+ if self.config.pad_token_id is None and batch_size != 1:
960
+ raise ValueError("Cannot handle batch sizes > 1 if no padding token is defined.")
961
+ if self.config.pad_token_id is None:
962
+ sequence_lengths = -1
963
+ else:
964
+ if input_ids is not None:
965
+ sequence_lengths = (torch.ne(input_ids, self.config.pad_token_id).sum(-1) - 1).to(logits.device)
966
+ else:
967
+ sequence_lengths = -1
968
+
969
+ pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
970
+
971
+ loss = None
972
+ if labels is not None:
973
+ labels = labels.to(logits.device)
974
+ if self.config.problem_type is None:
975
+ if self.num_labels == 1:
976
+ self.config.problem_type = "regression"
977
+ elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
978
+ self.config.problem_type = "single_label_classification"
979
+ else:
980
+ self.config.problem_type = "multi_label_classification"
981
+
982
+ if self.config.problem_type == "regression":
983
+ loss_fct = MSELoss()
984
+ if self.num_labels == 1:
985
+ loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
986
+ else:
987
+ loss = loss_fct(pooled_logits, labels)
988
+ elif self.config.problem_type == "single_label_classification":
989
+ loss_fct = CrossEntropyLoss()
990
+ loss = loss_fct(pooled_logits.view(-1, self.num_labels), labels.view(-1))
991
+ elif self.config.problem_type == "multi_label_classification":
992
+ loss_fct = BCEWithLogitsLoss()
993
+ loss = loss_fct(pooled_logits, labels)
994
+ if not return_dict:
995
+ output = (pooled_logits,) + transformer_outputs[1:]
996
+ return ((loss,) + output) if loss is not None else output
997
+
998
+ return SequenceClassifierOutputWithPast(
999
+ loss=loss,
1000
+ logits=pooled_logits,
1001
+ past_key_values=transformer_outputs.past_key_values,
1002
+ hidden_states=transformer_outputs.hidden_states,
1003
+ attentions=transformer_outputs.attentions,
1004
+ )
1005
+
1006
+
1007
+
1008
+ class TransformerInternLMHeadModel(TransformerBase):
1009
+ def __init__(self, *args,**kwargs):
1010
+ super(TransformerInternLMHeadModel, self).__init__(*args,**kwargs)
1011
+ self.set_model(self.from_pretrained(InternLMForCausalLM, *args, **kwargs))
pytorch_model-00001-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8f2937b7f04cc6d6b9ff95b521d8c834dbb6bbbd0d4db5464aed461dce6222e
3
+ size 2998284324
pytorch_model-00002-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86ce5643b512b050eb0cc9f7238804bcfdc584eb5e9a7bb59a4576c2690edc8a
3
+ size 1934564299
pytorch_model.bin.index.json ADDED
@@ -0,0 +1,682 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 4932612096
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.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
11
+ "model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
12
+ "model.layers.0.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
13
+ "model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
14
+ "model.layers.0.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
15
+ "model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
16
+ "model.layers.0.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
17
+ "model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
18
+ "model.layers.0.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
19
+ "model.layers.0.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
20
+ "model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
21
+ "model.layers.0.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
22
+ "model.layers.0.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
23
+ "model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
24
+ "model.layers.0.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
25
+ "model.layers.0.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
26
+ "model.layers.0.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
27
+ "model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
28
+ "model.layers.0.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
29
+ "model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
30
+ "model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
31
+ "model.layers.1.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
32
+ "model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
33
+ "model.layers.1.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
34
+ "model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
35
+ "model.layers.1.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
36
+ "model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
37
+ "model.layers.1.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
38
+ "model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
39
+ "model.layers.1.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
40
+ "model.layers.1.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
41
+ "model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
42
+ "model.layers.1.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
43
+ "model.layers.1.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
44
+ "model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
45
+ "model.layers.1.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
46
+ "model.layers.1.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
47
+ "model.layers.1.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
48
+ "model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
49
+ "model.layers.1.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
50
+ "model.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
51
+ "model.layers.10.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
52
+ "model.layers.10.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
53
+ "model.layers.10.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
54
+ "model.layers.10.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
55
+ "model.layers.10.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
56
+ "model.layers.10.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
57
+ "model.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
58
+ "model.layers.10.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
59
+ "model.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
60
+ "model.layers.10.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
61
+ "model.layers.10.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
62
+ "model.layers.10.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
63
+ "model.layers.10.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
64
+ "model.layers.10.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
65
+ "model.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
66
+ "model.layers.10.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
67
+ "model.layers.10.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
68
+ "model.layers.10.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
69
+ "model.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
70
+ "model.layers.10.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
71
+ "model.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
72
+ "model.layers.11.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
73
+ "model.layers.11.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
74
+ "model.layers.11.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
75
+ "model.layers.11.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
76
+ "model.layers.11.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
77
+ "model.layers.11.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
78
+ "model.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
79
+ "model.layers.11.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
80
+ "model.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
81
+ "model.layers.11.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
82
+ "model.layers.11.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
83
+ "model.layers.11.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
84
+ "model.layers.11.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
85
+ "model.layers.11.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
86
+ "model.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
87
+ "model.layers.11.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
88
+ "model.layers.11.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
89
+ "model.layers.11.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
90
+ "model.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
91
+ "model.layers.11.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
92
+ "model.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
93
+ "model.layers.12.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
94
+ "model.layers.12.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
95
+ "model.layers.12.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
96
+ "model.layers.12.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
97
+ "model.layers.12.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
98
+ "model.layers.12.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
99
+ "model.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
100
+ "model.layers.12.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
101
+ "model.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
102
+ "model.layers.12.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
103
+ "model.layers.12.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
104
+ "model.layers.12.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
105
+ "model.layers.12.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
106
+ "model.layers.12.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
107
+ "model.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
108
+ "model.layers.12.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
109
+ "model.layers.12.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
110
+ "model.layers.12.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
111
+ "model.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
112
+ "model.layers.12.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
113
+ "model.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
114
+ "model.layers.13.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
115
+ "model.layers.13.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
116
+ "model.layers.13.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
117
+ "model.layers.13.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
118
+ "model.layers.13.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
119
+ "model.layers.13.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
120
+ "model.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
121
+ "model.layers.13.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
122
+ "model.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
123
+ "model.layers.13.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
124
+ "model.layers.13.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
125
+ "model.layers.13.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
126
+ "model.layers.13.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
127
+ "model.layers.13.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
128
+ "model.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
129
+ "model.layers.13.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
130
+ "model.layers.13.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
131
+ "model.layers.13.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
132
+ "model.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
133
+ "model.layers.13.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
134
+ "model.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
135
+ "model.layers.14.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
136
+ "model.layers.14.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
137
+ "model.layers.14.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
138
+ "model.layers.14.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
139
+ "model.layers.14.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
140
+ "model.layers.14.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
141
+ "model.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
142
+ "model.layers.14.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
143
+ "model.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
144
+ "model.layers.14.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
145
+ "model.layers.14.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
146
+ "model.layers.14.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
147
+ "model.layers.14.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
148
+ "model.layers.14.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
149
+ "model.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
150
+ "model.layers.14.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
151
+ "model.layers.14.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
152
+ "model.layers.14.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
153
+ "model.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
154
+ "model.layers.14.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
155
+ "model.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
156
+ "model.layers.15.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
157
+ "model.layers.15.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
158
+ "model.layers.15.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
159
+ "model.layers.15.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
160
+ "model.layers.15.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
161
+ "model.layers.15.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
162
+ "model.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
163
+ "model.layers.15.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
164
+ "model.layers.15.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
165
+ "model.layers.15.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
166
+ "model.layers.15.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
167
+ "model.layers.15.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
168
+ "model.layers.15.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
169
+ "model.layers.15.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
170
+ "model.layers.15.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
171
+ "model.layers.15.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
172
+ "model.layers.15.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
173
+ "model.layers.15.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
174
+ "model.layers.15.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
175
+ "model.layers.15.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
176
+ "model.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
177
+ "model.layers.16.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
178
+ "model.layers.16.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
179
+ "model.layers.16.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
180
+ "model.layers.16.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
181
+ "model.layers.16.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
182
+ "model.layers.16.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
183
+ "model.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
184
+ "model.layers.16.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
185
+ "model.layers.16.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
186
+ "model.layers.16.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
187
+ "model.layers.16.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
188
+ "model.layers.16.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
189
+ "model.layers.16.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
190
+ "model.layers.16.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
191
+ "model.layers.16.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
192
+ "model.layers.16.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
193
+ "model.layers.16.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
194
+ "model.layers.16.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
195
+ "model.layers.16.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
196
+ "model.layers.16.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
197
+ "model.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
198
+ "model.layers.17.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
199
+ "model.layers.17.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
200
+ "model.layers.17.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
201
+ "model.layers.17.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
202
+ "model.layers.17.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
203
+ "model.layers.17.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
204
+ "model.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
205
+ "model.layers.17.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
206
+ "model.layers.17.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
207
+ "model.layers.17.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
208
+ "model.layers.17.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
209
+ "model.layers.17.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
210
+ "model.layers.17.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
211
+ "model.layers.17.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
212
+ "model.layers.17.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
213
+ "model.layers.17.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
214
+ "model.layers.17.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
215
+ "model.layers.17.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
216
+ "model.layers.17.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
217
+ "model.layers.17.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
218
+ "model.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
219
+ "model.layers.18.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
220
+ "model.layers.18.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
221
+ "model.layers.18.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
222
+ "model.layers.18.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
223
+ "model.layers.18.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
224
+ "model.layers.18.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
225
+ "model.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
226
+ "model.layers.18.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
227
+ "model.layers.18.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
228
+ "model.layers.18.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
229
+ "model.layers.18.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
230
+ "model.layers.18.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
231
+ "model.layers.18.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
232
+ "model.layers.18.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
233
+ "model.layers.18.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
234
+ "model.layers.18.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
235
+ "model.layers.18.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
236
+ "model.layers.18.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
237
+ "model.layers.18.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
238
+ "model.layers.18.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
239
+ "model.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
240
+ "model.layers.19.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
241
+ "model.layers.19.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
242
+ "model.layers.19.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
243
+ "model.layers.19.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
244
+ "model.layers.19.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
245
+ "model.layers.19.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
246
+ "model.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
247
+ "model.layers.19.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
248
+ "model.layers.19.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
249
+ "model.layers.19.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
250
+ "model.layers.19.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
251
+ "model.layers.19.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
252
+ "model.layers.19.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
253
+ "model.layers.19.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
254
+ "model.layers.19.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
255
+ "model.layers.19.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
256
+ "model.layers.19.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
257
+ "model.layers.19.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
258
+ "model.layers.19.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
259
+ "model.layers.19.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
260
+ "model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
261
+ "model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
262
+ "model.layers.2.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
263
+ "model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
264
+ "model.layers.2.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
265
+ "model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
266
+ "model.layers.2.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
267
+ "model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
268
+ "model.layers.2.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
269
+ "model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
270
+ "model.layers.2.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
271
+ "model.layers.2.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
272
+ "model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
273
+ "model.layers.2.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
274
+ "model.layers.2.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
275
+ "model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
276
+ "model.layers.2.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
277
+ "model.layers.2.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
278
+ "model.layers.2.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
279
+ "model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
280
+ "model.layers.2.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
281
+ "model.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
282
+ "model.layers.20.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
283
+ "model.layers.20.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
284
+ "model.layers.20.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
285
+ "model.layers.20.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
286
+ "model.layers.20.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
287
+ "model.layers.20.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
288
+ "model.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
289
+ "model.layers.20.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
290
+ "model.layers.20.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
291
+ "model.layers.20.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
292
+ "model.layers.20.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
293
+ "model.layers.20.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
294
+ "model.layers.20.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
295
+ "model.layers.20.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
296
+ "model.layers.20.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
297
+ "model.layers.20.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
298
+ "model.layers.20.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
299
+ "model.layers.20.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
300
+ "model.layers.20.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
301
+ "model.layers.20.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
302
+ "model.layers.21.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
303
+ "model.layers.21.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
304
+ "model.layers.21.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
305
+ "model.layers.21.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
306
+ "model.layers.21.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
307
+ "model.layers.21.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
308
+ "model.layers.21.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
309
+ "model.layers.21.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
310
+ "model.layers.21.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
311
+ "model.layers.21.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
312
+ "model.layers.21.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
313
+ "model.layers.21.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
314
+ "model.layers.21.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
315
+ "model.layers.21.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
316
+ "model.layers.21.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
317
+ "model.layers.21.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
318
+ "model.layers.21.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
319
+ "model.layers.21.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
320
+ "model.layers.21.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
321
+ "model.layers.21.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
322
+ "model.layers.21.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
323
+ "model.layers.22.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
324
+ "model.layers.22.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
325
+ "model.layers.22.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
326
+ "model.layers.22.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
327
+ "model.layers.22.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
328
+ "model.layers.22.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
329
+ "model.layers.22.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
330
+ "model.layers.22.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
331
+ "model.layers.22.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
332
+ "model.layers.22.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
333
+ "model.layers.22.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
334
+ "model.layers.22.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
335
+ "model.layers.22.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
336
+ "model.layers.22.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
337
+ "model.layers.22.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
338
+ "model.layers.22.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
339
+ "model.layers.22.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
340
+ "model.layers.22.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
341
+ "model.layers.22.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
342
+ "model.layers.22.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
343
+ "model.layers.22.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
344
+ "model.layers.23.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
345
+ "model.layers.23.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
346
+ "model.layers.23.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
347
+ "model.layers.23.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
348
+ "model.layers.23.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
349
+ "model.layers.23.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
350
+ "model.layers.23.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
351
+ "model.layers.23.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
352
+ "model.layers.23.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
353
+ "model.layers.23.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
354
+ "model.layers.23.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
355
+ "model.layers.23.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
356
+ "model.layers.23.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
357
+ "model.layers.23.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
358
+ "model.layers.23.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
359
+ "model.layers.23.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
360
+ "model.layers.23.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
361
+ "model.layers.23.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
362
+ "model.layers.23.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
363
+ "model.layers.23.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
364
+ "model.layers.23.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
365
+ "model.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
366
+ "model.layers.24.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
367
+ "model.layers.24.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
368
+ "model.layers.24.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
369
+ "model.layers.24.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
370
+ "model.layers.24.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
371
+ "model.layers.24.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
372
+ "model.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
373
+ "model.layers.24.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
374
+ "model.layers.24.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
375
+ "model.layers.24.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
376
+ "model.layers.24.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
377
+ "model.layers.24.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
378
+ "model.layers.24.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
379
+ "model.layers.24.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
380
+ "model.layers.24.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
381
+ "model.layers.24.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
382
+ "model.layers.24.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
383
+ "model.layers.24.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
384
+ "model.layers.24.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
385
+ "model.layers.24.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
386
+ "model.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
387
+ "model.layers.25.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
388
+ "model.layers.25.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
389
+ "model.layers.25.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
390
+ "model.layers.25.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
391
+ "model.layers.25.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
392
+ "model.layers.25.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
393
+ "model.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
394
+ "model.layers.25.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
395
+ "model.layers.25.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
396
+ "model.layers.25.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
397
+ "model.layers.25.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
398
+ "model.layers.25.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
399
+ "model.layers.25.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
400
+ "model.layers.25.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
401
+ "model.layers.25.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
402
+ "model.layers.25.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
403
+ "model.layers.25.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
404
+ "model.layers.25.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
405
+ "model.layers.25.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
406
+ "model.layers.25.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
407
+ "model.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
408
+ "model.layers.26.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
409
+ "model.layers.26.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
410
+ "model.layers.26.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
411
+ "model.layers.26.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
412
+ "model.layers.26.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
413
+ "model.layers.26.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
414
+ "model.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
415
+ "model.layers.26.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
416
+ "model.layers.26.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
417
+ "model.layers.26.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
418
+ "model.layers.26.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
419
+ "model.layers.26.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
420
+ "model.layers.26.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
421
+ "model.layers.26.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
422
+ "model.layers.26.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
423
+ "model.layers.26.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
424
+ "model.layers.26.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
425
+ "model.layers.26.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
426
+ "model.layers.26.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
427
+ "model.layers.26.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
428
+ "model.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
429
+ "model.layers.27.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
430
+ "model.layers.27.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
431
+ "model.layers.27.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
432
+ "model.layers.27.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
433
+ "model.layers.27.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
434
+ "model.layers.27.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
435
+ "model.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
436
+ "model.layers.27.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
437
+ "model.layers.27.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
438
+ "model.layers.27.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
439
+ "model.layers.27.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
440
+ "model.layers.27.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
441
+ "model.layers.27.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
442
+ "model.layers.27.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
443
+ "model.layers.27.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
444
+ "model.layers.27.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
445
+ "model.layers.27.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
446
+ "model.layers.27.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
447
+ "model.layers.27.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
448
+ "model.layers.27.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
449
+ "model.layers.28.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
450
+ "model.layers.28.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
451
+ "model.layers.28.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
452
+ "model.layers.28.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
453
+ "model.layers.28.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
454
+ "model.layers.28.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
455
+ "model.layers.28.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
456
+ "model.layers.28.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
457
+ "model.layers.28.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
458
+ "model.layers.28.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
459
+ "model.layers.28.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
460
+ "model.layers.28.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
461
+ "model.layers.28.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
462
+ "model.layers.28.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
463
+ "model.layers.28.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
464
+ "model.layers.28.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
465
+ "model.layers.28.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
466
+ "model.layers.28.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
467
+ "model.layers.28.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
468
+ "model.layers.28.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
469
+ "model.layers.28.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
470
+ "model.layers.29.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
471
+ "model.layers.29.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
472
+ "model.layers.29.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
473
+ "model.layers.29.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
474
+ "model.layers.29.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
475
+ "model.layers.29.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
476
+ "model.layers.29.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
477
+ "model.layers.29.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
478
+ "model.layers.29.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
479
+ "model.layers.29.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
480
+ "model.layers.29.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
481
+ "model.layers.29.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
482
+ "model.layers.29.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
483
+ "model.layers.29.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
484
+ "model.layers.29.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
485
+ "model.layers.29.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
486
+ "model.layers.29.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
487
+ "model.layers.29.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
488
+ "model.layers.29.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
489
+ "model.layers.29.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
490
+ "model.layers.29.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
491
+ "model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
492
+ "model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
493
+ "model.layers.3.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
494
+ "model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
495
+ "model.layers.3.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
496
+ "model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
497
+ "model.layers.3.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
498
+ "model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
499
+ "model.layers.3.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
500
+ "model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
501
+ "model.layers.3.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
502
+ "model.layers.3.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
503
+ "model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
504
+ "model.layers.3.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
505
+ "model.layers.3.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
506
+ "model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
507
+ "model.layers.3.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
508
+ "model.layers.3.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
509
+ "model.layers.3.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
510
+ "model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
511
+ "model.layers.3.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
512
+ "model.layers.30.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
513
+ "model.layers.30.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
514
+ "model.layers.30.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
515
+ "model.layers.30.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
516
+ "model.layers.30.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
517
+ "model.layers.30.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
518
+ "model.layers.30.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
519
+ "model.layers.30.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
520
+ "model.layers.30.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
521
+ "model.layers.30.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
522
+ "model.layers.30.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
523
+ "model.layers.30.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
524
+ "model.layers.30.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
525
+ "model.layers.30.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
526
+ "model.layers.30.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
527
+ "model.layers.30.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
528
+ "model.layers.30.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
529
+ "model.layers.30.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
530
+ "model.layers.30.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
531
+ "model.layers.30.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
532
+ "model.layers.30.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
533
+ "model.layers.31.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
534
+ "model.layers.31.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
535
+ "model.layers.31.mlp.down_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
536
+ "model.layers.31.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
537
+ "model.layers.31.mlp.gate_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
538
+ "model.layers.31.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
539
+ "model.layers.31.mlp.up_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
540
+ "model.layers.31.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
541
+ "model.layers.31.self_attn.k_proj.bias": "pytorch_model-00002-of-00002.bin",
542
+ "model.layers.31.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
543
+ "model.layers.31.self_attn.k_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
544
+ "model.layers.31.self_attn.o_proj.bias": "pytorch_model-00002-of-00002.bin",
545
+ "model.layers.31.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
546
+ "model.layers.31.self_attn.o_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
547
+ "model.layers.31.self_attn.q_proj.bias": "pytorch_model-00002-of-00002.bin",
548
+ "model.layers.31.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
549
+ "model.layers.31.self_attn.q_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
550
+ "model.layers.31.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
551
+ "model.layers.31.self_attn.v_proj.bias": "pytorch_model-00002-of-00002.bin",
552
+ "model.layers.31.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
553
+ "model.layers.31.self_attn.v_proj.weight_scale": "pytorch_model-00002-of-00002.bin",
554
+ "model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
555
+ "model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
556
+ "model.layers.4.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
557
+ "model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
558
+ "model.layers.4.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
559
+ "model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
560
+ "model.layers.4.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
561
+ "model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
562
+ "model.layers.4.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
563
+ "model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
564
+ "model.layers.4.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
565
+ "model.layers.4.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
566
+ "model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
567
+ "model.layers.4.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
568
+ "model.layers.4.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
569
+ "model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
570
+ "model.layers.4.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
571
+ "model.layers.4.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
572
+ "model.layers.4.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
573
+ "model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
574
+ "model.layers.4.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
575
+ "model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
576
+ "model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
577
+ "model.layers.5.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
578
+ "model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
579
+ "model.layers.5.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
580
+ "model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
581
+ "model.layers.5.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
582
+ "model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
583
+ "model.layers.5.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
584
+ "model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
585
+ "model.layers.5.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
586
+ "model.layers.5.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
587
+ "model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
588
+ "model.layers.5.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
589
+ "model.layers.5.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
590
+ "model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
591
+ "model.layers.5.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
592
+ "model.layers.5.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
593
+ "model.layers.5.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
594
+ "model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
595
+ "model.layers.5.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
596
+ "model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
597
+ "model.layers.6.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
598
+ "model.layers.6.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
599
+ "model.layers.6.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
600
+ "model.layers.6.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
601
+ "model.layers.6.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
602
+ "model.layers.6.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
603
+ "model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
604
+ "model.layers.6.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
605
+ "model.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
606
+ "model.layers.6.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
607
+ "model.layers.6.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
608
+ "model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
609
+ "model.layers.6.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
610
+ "model.layers.6.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
611
+ "model.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
612
+ "model.layers.6.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
613
+ "model.layers.6.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
614
+ "model.layers.6.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
615
+ "model.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
616
+ "model.layers.6.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
617
+ "model.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
618
+ "model.layers.7.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
619
+ "model.layers.7.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
620
+ "model.layers.7.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
621
+ "model.layers.7.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
622
+ "model.layers.7.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
623
+ "model.layers.7.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
624
+ "model.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
625
+ "model.layers.7.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
626
+ "model.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
627
+ "model.layers.7.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
628
+ "model.layers.7.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
629
+ "model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
630
+ "model.layers.7.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
631
+ "model.layers.7.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
632
+ "model.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
633
+ "model.layers.7.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
634
+ "model.layers.7.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
635
+ "model.layers.7.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
636
+ "model.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
637
+ "model.layers.7.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
638
+ "model.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
639
+ "model.layers.8.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
640
+ "model.layers.8.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
641
+ "model.layers.8.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
642
+ "model.layers.8.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
643
+ "model.layers.8.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
644
+ "model.layers.8.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
645
+ "model.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
646
+ "model.layers.8.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
647
+ "model.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
648
+ "model.layers.8.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
649
+ "model.layers.8.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
650
+ "model.layers.8.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
651
+ "model.layers.8.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
652
+ "model.layers.8.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
653
+ "model.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
654
+ "model.layers.8.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
655
+ "model.layers.8.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
656
+ "model.layers.8.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
657
+ "model.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
658
+ "model.layers.8.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
659
+ "model.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
660
+ "model.layers.9.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
661
+ "model.layers.9.mlp.down_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
662
+ "model.layers.9.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
663
+ "model.layers.9.mlp.gate_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
664
+ "model.layers.9.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
665
+ "model.layers.9.mlp.up_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
666
+ "model.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
667
+ "model.layers.9.self_attn.k_proj.bias": "pytorch_model-00001-of-00002.bin",
668
+ "model.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
669
+ "model.layers.9.self_attn.k_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
670
+ "model.layers.9.self_attn.o_proj.bias": "pytorch_model-00001-of-00002.bin",
671
+ "model.layers.9.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
672
+ "model.layers.9.self_attn.o_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
673
+ "model.layers.9.self_attn.q_proj.bias": "pytorch_model-00001-of-00002.bin",
674
+ "model.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
675
+ "model.layers.9.self_attn.q_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
676
+ "model.layers.9.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
677
+ "model.layers.9.self_attn.v_proj.bias": "pytorch_model-00001-of-00002.bin",
678
+ "model.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
679
+ "model.layers.9.self_attn.v_proj.weight_scale": "pytorch_model-00001-of-00002.bin",
680
+ "model.norm.weight": "pytorch_model-00002-of-00002.bin"
681
+ }
682
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "pad_token": "</s>",
5
+ "unk_token": "<unk>"
6
+ }
tokenization_internlm.py ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ """Tokenization classes for IntermLM."""
22
+ import os
23
+ from shutil import copyfile
24
+ from typing import Any, Dict, List, Optional, Tuple
25
+
26
+ import sentencepiece as spm
27
+
28
+ from transformers.tokenization_utils import PreTrainedTokenizer
29
+ from transformers.utils import logging
30
+
31
+
32
+ logger = logging.get_logger(__name__)
33
+
34
+ VOCAB_FILES_NAMES = {"vocab_file": "./tokenizer.model"}
35
+
36
+ PRETRAINED_VOCAB_FILES_MAP = {}
37
+
38
+
39
+ class InternLMTokenizer(PreTrainedTokenizer):
40
+ """
41
+ Construct a InternLM tokenizer. Based on byte-level Byte-Pair-Encoding.
42
+
43
+ Args:
44
+ vocab_file (`str`):
45
+ Path to the vocabulary file.
46
+ """
47
+
48
+ vocab_files_names = VOCAB_FILES_NAMES
49
+ pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
50
+ model_input_names = ["input_ids", "attention_mask"]
51
+ _auto_class = "AutoTokenizer"
52
+
53
+ def __init__(
54
+ self,
55
+ vocab_file,
56
+ unk_token="<unk>",
57
+ bos_token="<s>",
58
+ eos_token="</s>",
59
+ pad_token="</s>",
60
+ sp_model_kwargs: Optional[Dict[str, Any]] = None,
61
+ add_bos_token=True,
62
+ add_eos_token=False,
63
+ decode_with_prefix_space=False,
64
+ clean_up_tokenization_spaces=False,
65
+ **kwargs,
66
+ ):
67
+ self.sp_model_kwargs = {} if sp_model_kwargs is None else sp_model_kwargs
68
+ super().__init__(
69
+ bos_token=bos_token,
70
+ eos_token=eos_token,
71
+ unk_token=unk_token,
72
+ pad_token=pad_token,
73
+ clean_up_tokenization_spaces=clean_up_tokenization_spaces,
74
+ **kwargs,
75
+ )
76
+ self.vocab_file = vocab_file
77
+ self.add_bos_token = add_bos_token
78
+ self.add_eos_token = add_eos_token
79
+ self.decode_with_prefix_space = decode_with_prefix_space
80
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
81
+ self.sp_model.Load(vocab_file)
82
+ self._no_prefix_space_tokens = None
83
+
84
+ """ Initialisation"""
85
+
86
+ @property
87
+ def no_prefix_space_tokens(self):
88
+ if self._no_prefix_space_tokens is None:
89
+ vocab = self.convert_ids_to_tokens(list(range(self.vocab_size)))
90
+ self._no_prefix_space_tokens = {i for i, tok in enumerate(vocab) if not tok.startswith("▁")}
91
+ return self._no_prefix_space_tokens
92
+
93
+ @property
94
+ def vocab_size(self):
95
+ """Returns vocab size"""
96
+ return self.sp_model.get_piece_size()
97
+
98
+ @property
99
+ def bos_token_id(self) -> Optional[int]:
100
+ return self.sp_model.bos_id()
101
+
102
+ @property
103
+ def eos_token_id(self) -> Optional[int]:
104
+ return self.sp_model.eos_id()
105
+
106
+ def get_vocab(self):
107
+ """Returns vocab as a dict"""
108
+ vocab = {self.convert_ids_to_tokens(i): i for i in range(self.vocab_size)}
109
+ vocab.update(self.added_tokens_encoder)
110
+ return vocab
111
+
112
+ def _tokenize(self, text):
113
+ """Returns a tokenized string."""
114
+ return self.sp_model.encode(text, out_type=str)
115
+
116
+ def _convert_token_to_id(self, token):
117
+ """Converts a token (str) in an id using the vocab."""
118
+ return self.sp_model.piece_to_id(token)
119
+
120
+ def _convert_id_to_token(self, index):
121
+ """Converts an index (integer) in a token (str) using the vocab."""
122
+ token = self.sp_model.IdToPiece(index)
123
+ return token
124
+
125
+ def _maybe_add_prefix_space(self, tokens, decoded):
126
+ if tokens and tokens[0] not in self.no_prefix_space_tokens:
127
+ return " " + decoded
128
+ else:
129
+ return decoded
130
+
131
+ def convert_tokens_to_string(self, tokens):
132
+ """Converts a sequence of tokens (string) in a single string."""
133
+ current_sub_tokens = []
134
+ out_string = ""
135
+ prev_is_special = False
136
+ for token in tokens:
137
+ # make sure that special tokens are not decoded using sentencepiece model
138
+ if token in self.all_special_tokens:
139
+ if not prev_is_special:
140
+ out_string += " "
141
+ out_string += self.sp_model.decode(current_sub_tokens) + token
142
+ prev_is_special = True
143
+ current_sub_tokens = []
144
+ else:
145
+ current_sub_tokens.append(token)
146
+ prev_is_special = False
147
+ out_string += self.sp_model.decode(current_sub_tokens)
148
+ out_string = self.clean_up_tokenization(out_string)
149
+ out_string = self._maybe_add_prefix_space(tokens=tokens, decoded=out_string)
150
+ return out_string[1:]
151
+
152
+ def save_vocabulary(self, save_directory, filename_prefix: Optional[str] = None) -> Tuple[str]:
153
+ """
154
+ Save the vocabulary and special tokens file to a directory.
155
+
156
+ Args:
157
+ save_directory (`str`):
158
+ The directory in which to save the vocabulary.
159
+
160
+ Returns:
161
+ `Tuple(str)`: Paths to the files saved.
162
+ """
163
+ if not os.path.isdir(save_directory):
164
+ logger.error(f"Vocabulary path ({save_directory}) should be a directory")
165
+ return
166
+ out_vocab_file = os.path.join(
167
+ save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["vocab_file"]
168
+ )
169
+
170
+ if os.path.abspath(self.vocab_file) != os.path.abspath(out_vocab_file) and os.path.isfile(self.vocab_file):
171
+ copyfile(self.vocab_file, out_vocab_file)
172
+ elif not os.path.isfile(self.vocab_file):
173
+ with open(out_vocab_file, "wb") as fi:
174
+ content_spiece_model = self.sp_model.serialized_model_proto()
175
+ fi.write(content_spiece_model)
176
+
177
+ return (out_vocab_file,)
178
+
179
+ def build_inputs_with_special_tokens(self, token_ids_0, token_ids_1=None):
180
+ if self.add_bos_token:
181
+ bos_token_ids = [self.bos_token_id]
182
+ else:
183
+ bos_token_ids = []
184
+
185
+ output = bos_token_ids + token_ids_0
186
+
187
+ if token_ids_1 is not None:
188
+ output = output + token_ids_1
189
+
190
+ if self.add_eos_token:
191
+ output = output + [self.eos_token_id]
192
+
193
+ return output
194
+
195
+ def get_special_tokens_mask(
196
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None, already_has_special_tokens: bool = False
197
+ ) -> List[int]:
198
+ """
199
+ Retrieve sequence ids from a token list that has no special tokens added. This method is called when adding
200
+ special tokens using the tokenizer `prepare_for_model` method.
201
+
202
+ Args:
203
+ token_ids_0 (`List[int]`):
204
+ List of IDs.
205
+ token_ids_1 (`List[int]`, *optional*):
206
+ Optional second list of IDs for sequence pairs.
207
+ already_has_special_tokens (`bool`, *optional*, defaults to `False`):
208
+ Whether or not the token list is already formatted with special tokens for the model.
209
+
210
+ Returns:
211
+ `List[int]`: A list of integers in the range [0, 1]: 1 for a special token, 0 for a sequence token.
212
+ """
213
+ if already_has_special_tokens:
214
+ return super().get_special_tokens_mask(
215
+ token_ids_0=token_ids_0, token_ids_1=token_ids_1, already_has_special_tokens=True
216
+ )
217
+
218
+ if token_ids_1 is None:
219
+ return [1] + ([0] * len(token_ids_0)) + [1]
220
+ return [1] + ([0] * len(token_ids_0)) + [1, 1] + ([0] * len(token_ids_1)) + [1]
221
+
222
+ def create_token_type_ids_from_sequences(
223
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None
224
+ ) -> List[int]:
225
+ """
226
+ Create a mask from the two sequences passed to be used in a sequence-pair classification task. T5 does not make
227
+ use of token type ids, therefore a list of zeros is returned.
228
+
229
+ Args:
230
+ token_ids_0 (`List[int]`):
231
+ List of IDs.
232
+ token_ids_1 (`List[int]`, *optional*):
233
+ Optional second list of IDs for sequence pairs.
234
+
235
+ Returns:
236
+ `List[int]`: List of zeros.
237
+ """
238
+ eos = [self.eos_token_id]
239
+
240
+ if token_ids_1 is None:
241
+ return len(token_ids_0 + eos) * [0]
242
+ return len(token_ids_0 + eos + token_ids_1 + eos) * [0]
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aab622d98c98677a1a51f969e25765154487bf3e85c7819db105db2fcacba83f
3
+ size 1658691
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoTokenizer": [
4
+ "tokenization_internlm.InternLMTokenizer",
5
+ null
6
+ ]
7
+ },
8
+ "bos_token": "<s>",
9
+ "clean_up_tokenization_spaces": false,
10
+ "eos_token": "</s>",
11
+ "model_max_length": 1000000000000000019884624838656,
12
+ "pad_token": "</s>",
13
+ "tokenizer_class": "InternLMTokenizer",
14
+ "unk_token": "<unk>"
15
+ }