myownskyW7 commited on
Commit
7da8e5d
1 Parent(s): bdac9ea

Upload 11 files

Browse files
config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "chat",
3
+ "architectures": [
4
+ "InternLMXComposerForCausalLM"
5
+ ],
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_InternLM_XComposer.InternLMXComposerConfig",
8
+ "AutoModel": "modeling_InternLM_XComposer.InternLMXComposerForCausalLM",
9
+ "AutoModelForCausalLM": "modeling_InternLM_XComposer.InternLMXComposerForCausalLM"
10
+ },
11
+ "bias": true,
12
+ "bos_token_id": 1,
13
+ "device": "cuda",
14
+ "eos_token_id": 2,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 4096,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 11008,
19
+ "intern_converted_llm": true,
20
+ "internlm_lora": {
21
+ "freeze": false,
22
+ "learn_param": [
23
+ "q",
24
+ "v",
25
+ "ffn"
26
+ ],
27
+ "lora_alpha": 256,
28
+ "lora_dropout": 0.05,
29
+ "lora_r": 256
30
+ },
31
+ "kqvo_bias": true,
32
+ "lora_cfg": {
33
+ "freeze": false,
34
+ "learn_param": [
35
+ "q",
36
+ "v",
37
+ "ffn"
38
+ ],
39
+ "lora_alpha": 256,
40
+ "lora_dropout": 0.05,
41
+ "lora_r": 256
42
+ },
43
+ "max_position_embeddings": 2048,
44
+ "model_type": "InternLMXComposer",
45
+ "num_attention_heads": 32,
46
+ "num_hidden_layers": 32,
47
+ "num_quant": 32,
48
+ "num_query_token": 64,
49
+ "pad_token_id": -1,
50
+ "rms_norm_eps": 1e-05,
51
+ "tie_word_embeddings": false,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.30.2",
54
+ "use_cache": true,
55
+ "vocab_size": 103168
56
+ }
configuration_InternLM_XComposer.py ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers.configuration_utils import PretrainedConfig
2
+ from transformers.utils import logging
3
+
4
+ logger = logging.get_logger(__name__)
5
+
6
+ INTERNLM_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
7
+
8
+
9
+ class InternLMXComposerConfig(PretrainedConfig):
10
+
11
+ model_type = "InternLMXComposer"
12
+ _auto_class = "AutoConfig"
13
+
14
+ def __init__(
15
+ self,
16
+ vocab_size=103168,
17
+ hidden_size=4096,
18
+ intermediate_size=11008,
19
+ num_hidden_layers=32,
20
+ num_attention_heads=32,
21
+ hidden_act="silu",
22
+ max_position_embeddings=2048,
23
+ initializer_range=0.02,
24
+ rms_norm_eps=1e-5,
25
+ use_cache=True,
26
+ pad_token_id=-1,
27
+ bos_token_id=1,
28
+ eos_token_id=2,
29
+ tie_word_embeddings=False,
30
+ bias=True,
31
+ num_query_token=32,
32
+ num_quant=32,
33
+ intern_converted_llm=True,
34
+ kqvo_bias=True,
35
+ device='cuda',
36
+ internlm_lora=None,
37
+ **kwargs,
38
+ ):
39
+ self.vocab_size = vocab_size
40
+ self.max_position_embeddings = max_position_embeddings
41
+ self.hidden_size = hidden_size
42
+ self.intermediate_size = intermediate_size
43
+ self.num_hidden_layers = num_hidden_layers
44
+ self.num_attention_heads = num_attention_heads
45
+ self.hidden_act = hidden_act
46
+ self.initializer_range = initializer_range
47
+ self.rms_norm_eps = rms_norm_eps
48
+ self.use_cache = use_cache
49
+ self.bias = bias
50
+ self.num_query_token = num_query_token
51
+ self.num_quant = num_quant
52
+ self.internlm_lora = internlm_lora
53
+ self.kqvo_bias = kqvo_bias
54
+ self.intern_converted_llm = intern_converted_llm
55
+ self.device = device
56
+ super().__init__(
57
+ pad_token_id=pad_token_id,
58
+ bos_token_id=bos_token_id,
59
+ eos_token_id=eos_token_id,
60
+ tie_word_embeddings=tie_word_embeddings,
61
+ **kwargs,
62
+ )
modeling_InternLM.py ADDED
@@ -0,0 +1,1246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import math
2
+ from typing import List, Union
3
+ from typing import Optional, Tuple
4
+
5
+ import torch
6
+ import torch.utils.checkpoint
7
+ import torch.utils.checkpoint
8
+ from einops import rearrange
9
+ from torch import nn
10
+ from torch.nn import CrossEntropyLoss
11
+ from transformers.activations import ACT2FN
12
+ from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast
13
+ from transformers.modeling_utils import PreTrainedModel
14
+ from transformers.utils import logging
15
+
16
+ from .configuration_InternLM_XComposer import InternLMXComposerConfig
17
+ from .modeling_utils import LoRALinear
18
+
19
+ logger = logging.get_logger(__name__)
20
+
21
+ _CONFIG_FOR_DOC = "InternLMXComposerConfig"
22
+
23
+
24
+ def rotary_embed(x1, x2, cos, sin, conj):
25
+ x1, x2 = x1.float(), x2.float()
26
+ if conj:
27
+ x1, x2 = x1 * cos + x2 * sin, x1 * sin + x2 * cos
28
+ else:
29
+ x1, x2 = x1 * cos - x2 * sin, x1 * sin + x2 * cos
30
+ return x1, x2
31
+
32
+
33
+ class LegacyApplyRotaryEmbQKV_(torch.autograd.Function):
34
+
35
+ @staticmethod
36
+ def forward(ctx, qkv, cos, sin, cos_k=None, sin_k=None, interleaved=False):
37
+ """
38
+ qkv: (batch_size, seqlen, 3, nheads, headdim)
39
+ cos, sin: (seqlen, rotary_dim / 2)
40
+ cos_k, sin_k: (seqlen, rotary_dim / 2), optional
41
+ interleaved: if True, rotate pairs of even and odd dimensions (GPT-J style) instead of
42
+ 1st half and 2nd half (GPT-NeoX style).
43
+ rotary_dim must be <= headdim
44
+ Apply rotary embedding *inplace* to the first rotary_dim of q and k.
45
+ """
46
+ batch, seqlen, three, nheads, headdim = qkv.shape
47
+ assert three == 3
48
+ rotary_seqlen, rotary_dim = cos.shape
49
+ rotary_dim *= 2
50
+ assert rotary_dim <= headdim
51
+ assert seqlen <= rotary_seqlen
52
+ cos_k = cos if cos_k is None else cos_k
53
+ sin_k = sin if sin_k is None else sin_k
54
+ assert sin.shape == cos_k.shape == sin_k.shape == (rotary_seqlen, rotary_dim // 2)
55
+ q_ro = qkv[:, :, 0, :, :rotary_dim]
56
+ q1, q2 = q_ro.chunk(2, dim=-1) if not interleaved else (q_ro[..., ::2], q_ro[..., 1::2])
57
+ # rotary_emb.apply_rotary(q1, q2, rearrange(cos[:seqlen], 's d -> s 1 d'),
58
+ # rearrange(sin[:seqlen], 's d -> s 1 d'), q1, q2, False)
59
+ q1, q2 = rotary_embed(q1, q2, rearrange(cos[:seqlen], 's d -> s 1 d'), rearrange(sin[:seqlen], 's d -> s 1 d'), False)
60
+ qkv[:, :, 0, :, :rotary_dim] = torch.cat([q1, q2], dim=-1)
61
+ k_ro = qkv[:, :, 1, :, :rotary_dim]
62
+ k1, k2 = k_ro.chunk(2, dim=-1) if not interleaved else (k_ro[..., ::2], k_ro[..., 1::2])
63
+ # rotary_emb.apply_rotary(k1, k2, rearrange(cos_k[:seqlen], 's d -> s 1 d'),
64
+ # rearrange(sin_k[:seqlen], 's d -> s 1 d'), k1, k2, False)
65
+ k1, k2 = rotary_embed(k1, k2, rearrange(cos_k[:seqlen], 's d -> s 1 d'), rearrange(sin_k[:seqlen], 's d -> s 1 d'), False)
66
+ qkv[:, :, 1, :, :rotary_dim] = torch.cat([k1, k2], dim=-1)
67
+ ctx.save_for_backward(cos, sin, cos_k, sin_k)
68
+ ctx.interleaved = interleaved
69
+ return qkv
70
+
71
+ @staticmethod
72
+ def backward(ctx, dqkv):
73
+ cos, sin, cos_k, sin_k = ctx.saved_tensors
74
+ _, seqlen, _, _, headdim = dqkv.shape
75
+ rotary_dim = cos.shape[-1]
76
+ rotary_dim *= 2
77
+ dq_ro = dqkv[:, :, 0, :, :rotary_dim]
78
+ dq1, dq2 = (dq_ro.chunk(2, dim=-1) if not ctx.interleaved
79
+ else (dq_ro[..., ::2], dq_ro[..., 1::2]))
80
+ rotary_emb.apply_rotary(dq1, dq2, rearrange(cos[:seqlen], 's d -> s 1 d'),
81
+ rearrange(sin[:seqlen], 's d -> s 1 d'), dq1, dq2, True)
82
+ dk_ro = dqkv[:, :, 1, :, :rotary_dim]
83
+ dk1, dk2 = (dk_ro.chunk(2, dim=-1) if not ctx.interleaved
84
+ else (dk_ro[..., ::2], dk_ro[..., 1::2]))
85
+ rotary_emb.apply_rotary(dk1, dk2, rearrange(cos_k[:seqlen], 's d -> s 1 d'),
86
+ rearrange(sin_k[:seqlen], 's d -> s 1 d'), dk1, dk2, True)
87
+ return dqkv, None, None, None, None, None
88
+
89
+
90
+ class ConvertedInternLMRotaryEmbedding(torch.nn.Module):
91
+ def __init__(self, dim: int, base=10000, scale_base=0, device=None):
92
+ """ """
93
+ super().__init__()
94
+ # Generate and save the inverse frequency buffer (non trainable)
95
+ inv_freq = 1.0 / (base**(
96
+ torch.arange(0, dim, 2, device=device, dtype=torch.float32) / dim))
97
+ self.register_buffer("inv_freq", inv_freq)
98
+ self.scale_base = scale_base
99
+ scale = ((torch.arange(0, dim, 2, device=device, dtype=torch.float32) +
100
+ 0.4 * dim) / (1.4 * dim) if scale_base > 0 else None)
101
+ self.register_buffer("scale", scale)
102
+
103
+ self._seq_len_cached = 0
104
+ self._cos_cached = None
105
+ self._sin_cached = None
106
+ self._cos_k_cached = None
107
+ self._sin_k_cached = None
108
+
109
+ def _update_cos_sin_cache(self, x, indexes):
110
+ """x: (batch, seqlen, nheads, headdim) or (batch, seqlen, 3, nheads, headdim)"""
111
+ if not isinstance(indexes, int):
112
+ seqlen = indexes.max().item() + 1
113
+ else:
114
+ seqlen = indexes + 1 # eval_forward
115
+ # Reset the tables if the sequence length has changed,
116
+ # or if we're on a new device (possibly due to tracing for instance)
117
+ if seqlen > self._seq_len_cached or self._cos_cached.device != x.device or self._cos_cached.dtype != x.dtype:
118
+ self._seq_len_cached = seqlen
119
+ t = torch.arange(seqlen,
120
+ device=x.device,
121
+ dtype=self.inv_freq.dtype)
122
+ # Don't do einsum, it converts fp32 to fp16
123
+ # freqs = torch.einsum("i,j->ij", t, self.inv_freq)
124
+ freqs = torch.outer(t, self.inv_freq.to(device=t.device))
125
+ if self.scale is None:
126
+ self._cos_cached = torch.cos(freqs).to(x.dtype)
127
+ self._sin_cached = torch.sin(freqs).to(x.dtype)
128
+ else:
129
+ power = (torch.arange(
130
+ seqlen, dtype=self.scale.dtype, device=self.scale.device) -
131
+ seqlen // 2) / self.scale_base
132
+ scale = self.scale.to(device=power.device)**rearrange(
133
+ power, "s -> s 1")
134
+ # We want the multiplication by scale to happen in fp32
135
+ self._cos_cached = (torch.cos(freqs) * scale).to(x.dtype)
136
+ self._sin_cached = (torch.sin(freqs) * scale).to(x.dtype)
137
+ self._cos_k_cached = (torch.cos(freqs) / scale).to(x.dtype)
138
+ self._sin_k_cached = (torch.sin(freqs) / scale).to(x.dtype)
139
+
140
+ def eval_forward(self, qkv, seqlen_offset=0):
141
+ """
142
+ seqlen_offset: can be used in generation where the qkv being passed in is only the last
143
+ token in the batch.
144
+ """
145
+ self._update_cos_sin_cache(qkv, seqlen_offset + qkv.shape[1])
146
+ if self.scale is None:
147
+ return legacy_apply_rotary_embed_qkv(
148
+ qkv, self._cos_cached[seqlen_offset:],
149
+ self._sin_cached[seqlen_offset:])
150
+ else:
151
+ return legacy_apply_rotary_embed_qkv(
152
+ qkv,
153
+ self._cos_cached[seqlen_offset:],
154
+ self._sin_cached[seqlen_offset:],
155
+ self._cos_k_cached[seqlen_offset:],
156
+ self._sin_k_cached[seqlen_offset:],
157
+ )
158
+
159
+
160
+ legacy_apply_rotary_embed_qkv = LegacyApplyRotaryEmbQKV_.apply
161
+
162
+
163
+ class InternConvertedInternLMAttention(nn.Module):
164
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
165
+ def __init__(self, config: InternLMXComposerConfig):
166
+ super().__init__()
167
+ self.config = config
168
+ self.hidden_size = config.hidden_size
169
+ self.num_heads = config.num_attention_heads
170
+ self.head_dim = self.hidden_size // self.num_heads
171
+ self.max_position_embeddings = config.max_position_embeddings
172
+
173
+ if (self.head_dim * self.num_heads) != self.hidden_size:
174
+ raise ValueError(
175
+ f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
176
+ f" and `num_heads`: {self.num_heads}).")
177
+ if config.lora_cfg is None:
178
+ self.q_proj = nn.Linear(self.hidden_size,
179
+ self.num_heads * self.head_dim,
180
+ bias=config.kqvo_bias)
181
+ self.k_proj = nn.Linear(self.hidden_size,
182
+ self.num_heads * self.head_dim,
183
+ bias=config.kqvo_bias)
184
+ self.v_proj = nn.Linear(self.hidden_size,
185
+ self.num_heads * self.head_dim,
186
+ bias=config.kqvo_bias)
187
+ self.o_proj = nn.Linear(self.num_heads * self.head_dim,
188
+ self.hidden_size,
189
+ bias=config.kqvo_bias)
190
+
191
+ else:
192
+ lora_cfg = config.lora_cfg
193
+ if 'q' in lora_cfg['learn_param']:
194
+ self.q_proj = LoRALinear(self.hidden_size,
195
+ self.num_heads * self.head_dim,
196
+ bias=config.kqvo_bias,
197
+ **lora_cfg)
198
+ else:
199
+ self.q_proj = nn.Linear(
200
+ self.hidden_size,
201
+ self.num_heads * self.head_dim,
202
+ bias=config.kqvo_bias,
203
+ )
204
+ if 'k' in lora_cfg['learn_param']:
205
+ self.k_proj = LoRALinear(self.hidden_size,
206
+ self.num_heads * self.head_dim,
207
+ bias=config.kqvo_bias,
208
+ **lora_cfg)
209
+ else:
210
+ self.k_proj = nn.Linear(
211
+ self.hidden_size,
212
+ self.num_heads * self.head_dim,
213
+ bias=config.kqvo_bias,
214
+ )
215
+ if 'v' in lora_cfg['learn_param']:
216
+ self.v_proj = LoRALinear(self.hidden_size,
217
+ self.num_heads * self.head_dim,
218
+ bias=config.kqvo_bias,
219
+ **lora_cfg)
220
+ else:
221
+ self.v_proj = nn.Linear(
222
+ self.hidden_size,
223
+ self.num_heads * self.head_dim,
224
+ bias=config.kqvo_bias,
225
+ )
226
+
227
+ if 'o' in lora_cfg['learn_param']:
228
+ self.o_proj = LoRALinear(self.num_heads * self.head_dim,
229
+ self.hidden_size,
230
+ bias=config.kqvo_bias,
231
+ **lora_cfg)
232
+ else:
233
+ self.o_proj = nn.Linear(
234
+ self.num_heads * self.head_dim,
235
+ self.hidden_size,
236
+ bias=config.kqvo_bias,
237
+ )
238
+
239
+ self.rotary_emb = ConvertedInternLMRotaryEmbedding(self.head_dim)
240
+
241
+ def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
242
+ return tensor.view(bsz, seq_len, self.num_heads,
243
+ self.head_dim).transpose(1, 2).contiguous()
244
+
245
+ def forward(
246
+ self,
247
+ hidden_states: torch.Tensor,
248
+ attention_mask: Optional[torch.Tensor] = None,
249
+ position_ids: Optional[torch.LongTensor] = None,
250
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
251
+ output_attentions: bool = False,
252
+ use_cache: bool = False,
253
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor],
254
+ Optional[Tuple[torch.Tensor]]]:
255
+ bsz, q_len, _ = hidden_states.size()
256
+
257
+ query_states = self.q_proj(hidden_states)
258
+ key_states = self.k_proj(hidden_states)
259
+ value_states = self.v_proj(hidden_states)
260
+
261
+ q = query_states
262
+ k = key_states
263
+ v = value_states
264
+
265
+ qkv = torch.cat([q, k, v], dim=2).contiguous()
266
+ qkv = qkv.view(bsz, q_len, -1)
267
+ qkv = rearrange(qkv,
268
+ "b s (three h d) -> b s three h d",
269
+ three=3,
270
+ d=self.head_dim)
271
+
272
+ if past_key_value is not None:
273
+ qkv = self.rotary_emb.eval_forward(
274
+ qkv, seqlen_offset=past_key_value[0].shape[2])
275
+ else:
276
+ qkv = self.rotary_emb.eval_forward(qkv)
277
+
278
+ query_states, key_states, value_states = qkv.unbind(2)
279
+ query_states = query_states.transpose(1, 2)
280
+ key_states = key_states.transpose(1, 2)
281
+ value_states = value_states.transpose(1, 2)
282
+
283
+ kv_seq_len = key_states.shape[-2]
284
+ if past_key_value is not None:
285
+ kv_seq_len += past_key_value[0].shape[-2]
286
+ # cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
287
+ # query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
288
+ # [bsz, nh, t, hd]
289
+
290
+ if past_key_value is not None:
291
+ # reuse k, v, self_attention
292
+ key_states = torch.cat([past_key_value[0], key_states], dim=2)
293
+ value_states = torch.cat([past_key_value[1], value_states], dim=2)
294
+
295
+ past_key_value = (key_states, value_states) if use_cache else None
296
+
297
+ attn_weights = torch.matmul(query_states, key_states.transpose(
298
+ 2, 3)) / math.sqrt(self.head_dim)
299
+
300
+ if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
301
+ raise ValueError(
302
+ f"Attention weights should be of size {(bsz * self.num_heads, q_len, kv_seq_len)}, but is"
303
+ f" {attn_weights.size()}")
304
+
305
+ if attention_mask is not None:
306
+ if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
307
+ raise ValueError(
308
+ f"Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}"
309
+ )
310
+ attn_weights = attn_weights + attention_mask
311
+ attn_weights = torch.max(
312
+ attn_weights,
313
+ torch.tensor(torch.finfo(attn_weights.dtype).min))
314
+
315
+ # upcast attention to fp32
316
+ attn_weights = nn.functional.softmax(attn_weights,
317
+ dim=-1,
318
+ dtype=torch.float32).to(
319
+ query_states.dtype)
320
+ attn_output = torch.matmul(attn_weights, value_states)
321
+
322
+ if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
323
+ raise ValueError(
324
+ f"`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is"
325
+ f" {attn_output.size()}")
326
+
327
+ attn_output = attn_output.transpose(1, 2)
328
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
329
+
330
+ attn_output = self.o_proj(attn_output)
331
+
332
+ if not output_attentions:
333
+ attn_weights = None
334
+
335
+ return attn_output, attn_weights, past_key_value
336
+
337
+
338
+ class ConvertedLoRALinear(nn.Linear):
339
+ def __init__(self,
340
+ in_features: int,
341
+ out_features: int,
342
+ bias: bool = True,
343
+ device=None,
344
+ dtype=None,
345
+ lora_r=8,
346
+ lora_alpha=16,
347
+ lora_dropout=0.05,
348
+ **kwargs) -> None:
349
+ super().__init__(in_features, out_features, bias, device, dtype)
350
+ self.lora_r = lora_r
351
+ self.lora_alpha = lora_alpha
352
+ if lora_dropout > 0.:
353
+ self.lora_dropout = nn.Dropout(p=lora_dropout)
354
+ else:
355
+ self.lora_dropout = lambda x: x
356
+ self.lora_scaling = self.lora_alpha / self.lora_r
357
+
358
+ self.lora_A = nn.Linear(in_features,
359
+ self.lora_r,
360
+ bias=False,
361
+ device=device,
362
+ dtype=dtype)
363
+ self.lora_B = nn.Linear(self.lora_r,
364
+ out_features,
365
+ bias=False,
366
+ device=device,
367
+ dtype=dtype)
368
+
369
+ self.reset_parameters()
370
+
371
+ def reset_parameters(self):
372
+ if hasattr(self, 'lora_A'):
373
+ # initialize A the same way as the default for nn.Linear and B to zero
374
+ nn.init.kaiming_uniform_(self.lora_A.weight, a=math.sqrt(5))
375
+ nn.init.zeros_(self.lora_B.weight)
376
+ # print ("lora weight init {} {}".format(torch.mean(self.lora_A.weight), torch.mean(self.lora_B.weight)))
377
+
378
+ def forward(self, x):
379
+ orig_type = x.dtype
380
+ res = super().forward(x)
381
+
382
+ dim = int(res.shape[-1] // 2)
383
+
384
+ r1 = res[..., :dim]
385
+ r2 = res[..., dim:]
386
+
387
+ r1 = r1.float()
388
+ r2 = r2.float()
389
+ x_ = x.float()
390
+
391
+ tmp = self.lora_B(self.lora_A(
392
+ self.lora_dropout(x_))) * self.lora_scaling
393
+ tmp1 = tmp[..., ::2]
394
+ tmp2 = tmp[..., 1::2]
395
+
396
+ r1 += tmp1
397
+ r2 += tmp2
398
+
399
+ r1 = r1.to(orig_type)
400
+ r2 = r2.to(orig_type)
401
+
402
+ res = torch.cat([r1, r2], -1)
403
+
404
+ # res += self.lora_B(self.lora_A(
405
+ # self.lora_dropout(x))) * self.lora_scaling
406
+ return res
407
+
408
+
409
+ # Copied from transformers.models.bart.modeling_bart._make_causal_mask
410
+ def _make_causal_mask(input_ids_shape: torch.Size,
411
+ dtype: torch.dtype,
412
+ device: torch.device,
413
+ past_key_values_length: int = 0):
414
+ """
415
+ Make causal mask used for bi-directional self-attention.
416
+ """
417
+ bsz, tgt_len = input_ids_shape
418
+ mask = torch.full((tgt_len, tgt_len),
419
+ torch.tensor(torch.finfo(dtype).min, device=device),
420
+ device=device)
421
+ mask_cond = torch.arange(mask.size(-1), device=device)
422
+ mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
423
+ mask = mask.to(dtype)
424
+
425
+ if past_key_values_length > 0:
426
+ mask = torch.cat([
427
+ torch.zeros(
428
+ tgt_len, past_key_values_length, dtype=dtype, device=device),
429
+ mask
430
+ ],
431
+ dim=-1)
432
+ return mask[None, None, :, :].expand(bsz, 1, tgt_len,
433
+ tgt_len + past_key_values_length)
434
+
435
+
436
+ # Copied from transformers.models.bart.modeling_bart._expand_mask
437
+ def _expand_mask(mask: torch.Tensor,
438
+ dtype: torch.dtype,
439
+ tgt_len: Optional[int] = None):
440
+ """
441
+ Expands attention_mask from `[bsz, seq_len]` to `[bsz, 1, tgt_seq_len, src_seq_len]`.
442
+ """
443
+ bsz, src_len = mask.size()
444
+ tgt_len = tgt_len if tgt_len is not None else src_len
445
+
446
+ expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len,
447
+ src_len).to(dtype)
448
+
449
+ inverted_mask = 1.0 - expanded_mask
450
+
451
+ return inverted_mask.masked_fill(inverted_mask.to(torch.bool),
452
+ torch.finfo(dtype).min)
453
+
454
+
455
+ class InternLMRMSNorm(nn.Module):
456
+ def __init__(self, hidden_size, eps=1e-6):
457
+ """
458
+ InternLMRMSNorm is equivalent to T5LayerNorm
459
+ """
460
+ super().__init__()
461
+ self.weight = nn.Parameter(torch.ones(hidden_size))
462
+ self.variance_epsilon = eps
463
+
464
+ def forward(self, hidden_states):
465
+ variance = hidden_states.to(torch.float32).pow(2).mean(-1,
466
+ keepdim=True)
467
+ hidden_states = hidden_states * torch.rsqrt(variance +
468
+ self.variance_epsilon)
469
+
470
+ # convert into half-precision if necessary
471
+ if self.weight.dtype in [torch.float16, torch.bfloat16]:
472
+ hidden_states = hidden_states.to(self.weight.dtype)
473
+
474
+ return self.weight * hidden_states
475
+
476
+
477
+ class InternLMRotaryEmbedding(torch.nn.Module):
478
+ def __init__(self,
479
+ dim,
480
+ max_position_embeddings=2048,
481
+ base=10000,
482
+ device=None):
483
+ super().__init__()
484
+ inv_freq = 1.0 / (base
485
+ **(torch.arange(0, dim, 2).float().to(device) / dim))
486
+ self.register_buffer("inv_freq", inv_freq)
487
+
488
+ # Build here to make `torch.jit.trace` work.
489
+ self.max_seq_len_cached = max_position_embeddings
490
+ t = torch.arange(self.max_seq_len_cached,
491
+ device=self.inv_freq.device,
492
+ dtype=self.inv_freq.dtype)
493
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
494
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
495
+ emb = torch.cat((freqs, freqs), dim=-1)
496
+ self.register_buffer("cos_cached",
497
+ emb.cos()[None, None, :, :],
498
+ persistent=False)
499
+ self.register_buffer("sin_cached",
500
+ emb.sin()[None, None, :, :],
501
+ persistent=False)
502
+
503
+ def forward(self, x, seq_len=None):
504
+ # x: [bs, num_attention_heads, seq_len, head_size]
505
+ # This `if` block is unlikely to be run after we build sin/cos in `__init__`. Keep the logic here just in case.
506
+ if seq_len > self.max_seq_len_cached:
507
+ self.max_seq_len_cached = seq_len
508
+ t = torch.arange(self.max_seq_len_cached,
509
+ device=x.device,
510
+ dtype=self.inv_freq.dtype)
511
+ freqs = torch.einsum("i,j->ij", t, self.inv_freq)
512
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
513
+ emb = torch.cat((freqs, freqs), dim=-1).to(x.device)
514
+ self.register_buffer("cos_cached",
515
+ emb.cos()[None, None, :, :],
516
+ persistent=False)
517
+ self.register_buffer("sin_cached",
518
+ emb.sin()[None, None, :, :],
519
+ persistent=False)
520
+ return (
521
+ self.cos_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
522
+ self.sin_cached[:, :, :seq_len, ...].to(dtype=x.dtype),
523
+ )
524
+
525
+
526
+ def rotate_half(x):
527
+ """Rotates half the hidden dims of the input."""
528
+ x1 = x[..., :x.shape[-1] // 2]
529
+ x2 = x[..., x.shape[-1] // 2:]
530
+ return torch.cat((-x2, x1), dim=-1)
531
+
532
+
533
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids):
534
+ gather_indices = position_ids[:, None, :, None] # [bs, 1, seq_len, 1]
535
+ gather_indices = gather_indices.repeat(1, cos.shape[1], 1, cos.shape[3])
536
+ cos = torch.gather(cos.repeat(gather_indices.shape[0], 1, 1, 1), 2,
537
+ gather_indices)
538
+ sin = torch.gather(sin.repeat(gather_indices.shape[0], 1, 1, 1), 2,
539
+ gather_indices)
540
+ q_embed = (q * cos) + (rotate_half(q) * sin)
541
+ k_embed = (k * cos) + (rotate_half(k) * sin)
542
+ return q_embed, k_embed
543
+
544
+
545
+ class InternLMMLP(nn.Module):
546
+ def __init__(self, hidden_size: int, intermediate_size: int,
547
+ hidden_act: str, config: InternLMXComposerConfig):
548
+ super().__init__()
549
+ self.gate_proj = nn.Linear(hidden_size, intermediate_size, bias=False)
550
+ if config.lora_cfg is not None and 'ffn' in config.lora_cfg[
551
+ 'learn_param']:
552
+ lora_cfg = config.lora_cfg
553
+ self.down_proj = LoRALinear(intermediate_size,
554
+ hidden_size,
555
+ bias=False,
556
+ **lora_cfg)
557
+ self.up_proj = LoRALinear(hidden_size,
558
+ intermediate_size,
559
+ bias=False,
560
+ **lora_cfg)
561
+ else:
562
+ self.down_proj = nn.Linear(intermediate_size,
563
+ hidden_size,
564
+ bias=False)
565
+ self.up_proj = nn.Linear(hidden_size,
566
+ intermediate_size,
567
+ bias=False)
568
+ self.act_fn = ACT2FN[hidden_act]
569
+
570
+ def forward(self, x):
571
+ return self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
572
+
573
+
574
+ class InternLMAttention(nn.Module):
575
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
576
+ def __init__(self, config: InternLMXComposerConfig):
577
+ super().__init__()
578
+ self.config = config
579
+ self.hidden_size = config.hidden_size
580
+ self.num_heads = config.num_attention_heads
581
+ self.head_dim = self.hidden_size // self.num_heads
582
+ self.max_position_embeddings = config.max_position_embeddings
583
+
584
+ if (self.head_dim * self.num_heads) != self.hidden_size:
585
+ raise ValueError(
586
+ f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
587
+ f" and `num_heads`: {self.num_heads}).")
588
+ if config.lora_cfg is None:
589
+ self.q_proj = nn.Linear(self.hidden_size,
590
+ self.num_heads * self.head_dim,
591
+ bias=False)
592
+ self.k_proj = nn.Linear(self.hidden_size,
593
+ self.num_heads * self.head_dim,
594
+ bias=False)
595
+ self.v_proj = nn.Linear(self.hidden_size,
596
+ self.num_heads * self.head_dim,
597
+ bias=False)
598
+ self.o_proj = nn.Linear(self.num_heads * self.head_dim,
599
+ self.hidden_size,
600
+ bias=False)
601
+ else:
602
+ lora_cfg = config.lora_cfg
603
+ if 'q' in lora_cfg['learn_param']:
604
+ self.q_proj = LoRALinear(self.hidden_size,
605
+ self.num_heads * self.head_dim,
606
+ bias=False,
607
+ **lora_cfg)
608
+ else:
609
+ self.q_proj = nn.Linear(self.hidden_size,
610
+ self.num_heads * self.head_dim,
611
+ bias=False)
612
+
613
+ if 'k' in lora_cfg['learn_param']:
614
+ self.k_proj = LoRALinear(self.hidden_size,
615
+ self.num_heads * self.head_dim,
616
+ bias=False,
617
+ **lora_cfg)
618
+ else:
619
+ self.k_proj = nn.Linear(self.hidden_size,
620
+ self.num_heads * self.head_dim,
621
+ bias=False)
622
+
623
+ if 'v' in lora_cfg['learn_param']:
624
+ self.v_proj = LoRALinear(self.hidden_size,
625
+ self.num_heads * self.head_dim,
626
+ bias=False,
627
+ **lora_cfg)
628
+ else:
629
+ self.v_proj = nn.Linear(self.hidden_size,
630
+ self.num_heads * self.head_dim,
631
+ bias=False)
632
+
633
+ if 'o' in lora_cfg['learn_param']:
634
+ self.o_proj = LoRALinear(self.num_heads * self.head_dim,
635
+ self.hidden_size,
636
+ bias=False,
637
+ **lora_cfg)
638
+ else:
639
+ self.o_proj = nn.Linear(self.num_heads * self.head_dim,
640
+ self.hidden_size,
641
+ bias=False)
642
+
643
+ self.rotary_emb = InternLMRotaryEmbedding(
644
+ self.head_dim,
645
+ max_position_embeddings=self.max_position_embeddings)
646
+
647
+ def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
648
+ return tensor.view(bsz, seq_len, self.num_heads,
649
+ self.head_dim).transpose(1, 2).contiguous()
650
+
651
+ def forward(
652
+ self,
653
+ hidden_states: torch.Tensor,
654
+ attention_mask: Optional[torch.Tensor] = None,
655
+ position_ids: Optional[torch.LongTensor] = None,
656
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
657
+ output_attentions: bool = False,
658
+ use_cache: bool = False,
659
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor],
660
+ Optional[Tuple[torch.Tensor]]]:
661
+ bsz, q_len, _ = hidden_states.size()
662
+
663
+ query_states = self.q_proj(hidden_states).view(
664
+ bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
665
+ key_states = self.k_proj(hidden_states).view(
666
+ bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
667
+ value_states = self.v_proj(hidden_states).view(
668
+ bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
669
+
670
+ kv_seq_len = key_states.shape[-2]
671
+ if past_key_value is not None:
672
+ kv_seq_len += past_key_value[0].shape[-2]
673
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
674
+ query_states, key_states = apply_rotary_pos_emb(
675
+ query_states, key_states, cos, sin, position_ids)
676
+ # [bsz, nh, t, hd]
677
+
678
+ if past_key_value is not None:
679
+ # reuse k, v, self_attention
680
+ key_states = torch.cat([past_key_value[0], key_states], dim=2)
681
+ value_states = torch.cat([past_key_value[1], value_states], dim=2)
682
+
683
+ past_key_value = (key_states, value_states) if use_cache else None
684
+
685
+ attn_weights = torch.matmul(query_states, key_states.transpose(
686
+ 2, 3)) / math.sqrt(self.head_dim)
687
+
688
+ if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
689
+ raise ValueError(
690
+ f"Attention weights should be of size {(bsz * self.num_heads, q_len, kv_seq_len)}, but is"
691
+ f" {attn_weights.size()}")
692
+
693
+ if attention_mask is not None:
694
+ if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
695
+ raise ValueError(
696
+ f"Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}"
697
+ )
698
+ attn_weights = attn_weights + attention_mask
699
+ attn_weights = torch.max(
700
+ attn_weights,
701
+ torch.tensor(torch.finfo(attn_weights.dtype).min))
702
+
703
+ # upcast attention to fp32
704
+ attn_weights = nn.functional.softmax(attn_weights,
705
+ dim=-1,
706
+ dtype=torch.float32).to(
707
+ query_states.dtype)
708
+ attn_output = torch.matmul(attn_weights, value_states)
709
+
710
+ if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
711
+ raise ValueError(
712
+ f"`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is"
713
+ f" {attn_output.size()}")
714
+
715
+ attn_output = attn_output.transpose(1, 2)
716
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
717
+
718
+ attn_output = self.o_proj(attn_output)
719
+
720
+ if not output_attentions:
721
+ attn_weights = None
722
+
723
+ return attn_output, attn_weights, past_key_value
724
+
725
+
726
+ class InternLMDecoderLayer(nn.Module):
727
+ def __init__(self, config: InternLMXComposerConfig):
728
+ super().__init__()
729
+ self.hidden_size = config.hidden_size
730
+ if hasattr(config,
731
+ 'intern_converted_llm') and config.intern_converted_llm:
732
+ self.self_attn = InternConvertedInternLMAttention(config=config)
733
+ else:
734
+ self.self_attn = InternLMAttention(config=config)
735
+ self.mlp = InternLMMLP(
736
+ hidden_size=self.hidden_size,
737
+ intermediate_size=config.intermediate_size,
738
+ hidden_act=config.hidden_act,
739
+ config=config,
740
+ )
741
+ self.input_layernorm = InternLMRMSNorm(config.hidden_size,
742
+ eps=config.rms_norm_eps)
743
+ self.post_attention_layernorm = InternLMRMSNorm(
744
+ config.hidden_size, eps=config.rms_norm_eps)
745
+
746
+ def forward(
747
+ self,
748
+ hidden_states: torch.Tensor,
749
+ attention_mask: Optional[torch.Tensor] = None,
750
+ position_ids: Optional[torch.LongTensor] = None,
751
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
752
+ output_attentions: Optional[bool] = False,
753
+ use_cache: Optional[bool] = False,
754
+ ) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor,
755
+ torch.FloatTensor]]]:
756
+ """
757
+ Args:
758
+ hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
759
+ attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
760
+ `(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
761
+ output_attentions (`bool`, *optional*):
762
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under
763
+ returned tensors for more detail.
764
+ use_cache (`bool`, *optional*):
765
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
766
+ (see `past_key_values`).
767
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
768
+ """
769
+
770
+ residual = hidden_states
771
+
772
+ hidden_states = self.input_layernorm(hidden_states)
773
+
774
+ # Self Attention
775
+ hidden_states, self_attn_weights, present_key_value = self.self_attn(
776
+ hidden_states=hidden_states,
777
+ attention_mask=attention_mask,
778
+ position_ids=position_ids,
779
+ past_key_value=past_key_value,
780
+ output_attentions=output_attentions,
781
+ use_cache=use_cache,
782
+ )
783
+ hidden_states = residual + hidden_states
784
+
785
+ # Fully Connected
786
+ residual = hidden_states
787
+ hidden_states = self.post_attention_layernorm(hidden_states)
788
+ hidden_states = self.mlp(hidden_states)
789
+ hidden_states = residual + hidden_states
790
+
791
+ outputs = (hidden_states, )
792
+
793
+ if output_attentions:
794
+ outputs += (self_attn_weights, )
795
+
796
+ if use_cache:
797
+ outputs += (present_key_value, )
798
+
799
+ return outputs
800
+
801
+
802
+ class InternLMPreTrainedModel(PreTrainedModel):
803
+ config_class = InternLMXComposerConfig
804
+ base_model_prefix = "model"
805
+ supports_gradient_checkpointing = True
806
+ _no_split_modules = ["InternLMDecoderLayer"]
807
+ _keys_to_ignore_on_load_unexpected = [r"decoder\.version"]
808
+
809
+ def _init_weights(self, module):
810
+ std = self.config.initializer_range
811
+ if isinstance(module, nn.Linear):
812
+ module.weight.data.normal_(mean=0.0, std=std)
813
+ if module.bias is not None:
814
+ module.bias.data.zero_()
815
+ elif isinstance(module, nn.Embedding):
816
+ module.weight.data.normal_(mean=0.0, std=std)
817
+ if module.padding_idx is not None:
818
+ module.weight.data[module.padding_idx].zero_()
819
+
820
+ def _set_gradient_checkpointing(self, module, value=False):
821
+ if isinstance(module, InternLMModel):
822
+ module.gradient_checkpointing = value
823
+
824
+
825
+ class InternLMModel(InternLMPreTrainedModel):
826
+ """
827
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`InternLMDecoderLayer`]
828
+
829
+ Args:
830
+ config: InternLMXComposerConfig
831
+ """
832
+ def __init__(self, config: InternLMXComposerConfig):
833
+ super().__init__(config)
834
+ self.padding_idx = config.pad_token_id
835
+ self.vocab_size = config.vocab_size
836
+
837
+ self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size,
838
+ self.padding_idx)
839
+ self.layers = nn.ModuleList([
840
+ InternLMDecoderLayer(config)
841
+ for _ in range(config.num_hidden_layers)
842
+ ])
843
+ self.norm = InternLMRMSNorm(config.hidden_size,
844
+ eps=config.rms_norm_eps)
845
+
846
+ self.gradient_checkpointing = False
847
+ # Initialize weights and apply final processing
848
+ self.post_init()
849
+
850
+ def get_input_embeddings(self):
851
+ return self.embed_tokens
852
+
853
+ def set_input_embeddings(self, value):
854
+ self.embed_tokens = value
855
+
856
+ # Copied from transformers.models.bart.modeling_bart.BartDecoder._prepare_decoder_attention_mask
857
+ def _prepare_decoder_attention_mask(self, attention_mask, input_shape,
858
+ inputs_embeds, past_key_values_length):
859
+ # create causal mask
860
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
861
+ combined_attention_mask = None
862
+ if input_shape[-1] > 1:
863
+ combined_attention_mask = _make_causal_mask(
864
+ input_shape,
865
+ inputs_embeds.dtype,
866
+ device=inputs_embeds.device,
867
+ past_key_values_length=past_key_values_length,
868
+ )
869
+
870
+ if attention_mask is not None:
871
+ # [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
872
+ expanded_attn_mask = _expand_mask(attention_mask,
873
+ inputs_embeds.dtype,
874
+ tgt_len=input_shape[-1]).to(
875
+ inputs_embeds.device)
876
+ combined_attention_mask = (expanded_attn_mask
877
+ if combined_attention_mask is None else
878
+ expanded_attn_mask +
879
+ combined_attention_mask)
880
+
881
+ return combined_attention_mask
882
+
883
+ def forward(
884
+ self,
885
+ input_ids: torch.LongTensor = None,
886
+ attention_mask: Optional[torch.Tensor] = None,
887
+ position_ids: Optional[torch.LongTensor] = None,
888
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
889
+ inputs_embeds: Optional[torch.FloatTensor] = None,
890
+ query_embeds: Optional[torch.FloatTensor] = None,
891
+ use_cache: Optional[bool] = None,
892
+ output_attentions: Optional[bool] = None,
893
+ output_hidden_states: Optional[bool] = None,
894
+ return_dict: Optional[bool] = None,
895
+ ) -> Union[Tuple, BaseModelOutputWithPast]:
896
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
897
+ output_hidden_states = (output_hidden_states
898
+ if output_hidden_states is not None else
899
+ self.config.output_hidden_states)
900
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
901
+
902
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
903
+
904
+ # retrieve input_ids and inputs_embeds
905
+ if input_ids is not None and inputs_embeds is not None:
906
+ raise ValueError(
907
+ "You cannot specify both decoder_input_ids and decoder_inputs_embeds at the same time"
908
+ )
909
+ elif input_ids is not None:
910
+ batch_size, seq_length = input_ids.shape
911
+ elif inputs_embeds is not None:
912
+ batch_size, seq_length, _ = inputs_embeds.shape
913
+ else:
914
+ raise ValueError(
915
+ "You have to specify either decoder_input_ids or decoder_inputs_embeds"
916
+ )
917
+
918
+ if inputs_embeds is None:
919
+ inputs_embeds = self.embed_tokens(input_ids)
920
+ if query_embeds is not None:
921
+ inputs_embeds = torch.cat([query_embeds, inputs_embeds], dim=1)
922
+ batch_size, seq_length, _ = inputs_embeds.shape
923
+
924
+ seq_length_with_past = seq_length
925
+ past_key_values_length = 0
926
+
927
+ if past_key_values is not None:
928
+ past_key_values_length = past_key_values[0][0].shape[2]
929
+ seq_length_with_past = seq_length_with_past + past_key_values_length
930
+
931
+ if position_ids is None:
932
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
933
+ position_ids = torch.arange(past_key_values_length,
934
+ seq_length + past_key_values_length,
935
+ dtype=torch.long,
936
+ device=device)
937
+ position_ids = position_ids.unsqueeze(0).view(-1, seq_length)
938
+ else:
939
+ position_ids = position_ids.view(-1, seq_length).long()
940
+
941
+ # embed positions
942
+ if attention_mask is None:
943
+ attention_mask = torch.ones((batch_size, seq_length_with_past),
944
+ dtype=torch.bool,
945
+ device=inputs_embeds.device)
946
+ attention_mask = self._prepare_decoder_attention_mask(
947
+ attention_mask, (batch_size, seq_length), inputs_embeds,
948
+ past_key_values_length)
949
+
950
+ hidden_states = inputs_embeds
951
+
952
+ if self.gradient_checkpointing and self.training:
953
+ if use_cache:
954
+ logger.warning_once(
955
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
956
+ )
957
+ use_cache = False
958
+
959
+ # decoder layers
960
+ all_hidden_states = () if output_hidden_states else None
961
+ all_self_attns = () if output_attentions else None
962
+ next_decoder_cache = () if use_cache else None
963
+
964
+ for idx, decoder_layer in enumerate(self.layers):
965
+ if output_hidden_states:
966
+ all_hidden_states += (hidden_states, )
967
+
968
+ past_key_value = past_key_values[
969
+ idx] if past_key_values is not None else None
970
+
971
+ if self.gradient_checkpointing and self.training:
972
+
973
+ def create_custom_forward(module):
974
+ def custom_forward(*inputs):
975
+ # None for past_key_value
976
+ return module(*inputs, output_attentions, None)
977
+
978
+ return custom_forward
979
+
980
+ layer_outputs = torch.utils.checkpoint.checkpoint(
981
+ create_custom_forward(decoder_layer),
982
+ hidden_states,
983
+ attention_mask,
984
+ position_ids,
985
+ None,
986
+ )
987
+ else:
988
+ layer_outputs = decoder_layer(
989
+ hidden_states,
990
+ attention_mask=attention_mask,
991
+ position_ids=position_ids,
992
+ past_key_value=past_key_value,
993
+ output_attentions=output_attentions,
994
+ use_cache=use_cache,
995
+ )
996
+
997
+ hidden_states = layer_outputs[0]
998
+
999
+ if use_cache:
1000
+ next_decoder_cache += (
1001
+ layer_outputs[2 if output_attentions else 1], )
1002
+
1003
+ if output_attentions:
1004
+ all_self_attns += (layer_outputs[1], )
1005
+
1006
+ hidden_states = self.norm(hidden_states)
1007
+
1008
+ # add hidden states from the last decoder layer
1009
+ if output_hidden_states:
1010
+ all_hidden_states += (hidden_states, )
1011
+
1012
+ next_cache = next_decoder_cache if use_cache else None
1013
+ if not return_dict:
1014
+ return tuple(
1015
+ v for v in
1016
+ [hidden_states, next_cache, all_hidden_states, all_self_attns]
1017
+ if v is not None)
1018
+ return BaseModelOutputWithPast(
1019
+ last_hidden_state=hidden_states,
1020
+ past_key_values=next_cache,
1021
+ hidden_states=all_hidden_states,
1022
+ attentions=all_self_attns,
1023
+ )
1024
+
1025
+
1026
+ class InternLMForCausalLM(InternLMPreTrainedModel):
1027
+ lora_cfg = None # init in MiniGPT4
1028
+
1029
+ def __init__(self, config):
1030
+ super().__init__(config)
1031
+ # TODO: find a way to explicitly initialize InternLM
1032
+ setattr(config, 'lora_cfg', self.lora_cfg)
1033
+
1034
+ if hasattr(config, 'kqvo_bias'):
1035
+ setattr(config, 'kqvo_bias', config.kqvo_bias)
1036
+ else:
1037
+ setattr(config, 'kqvo_bias', False)
1038
+ self.model = InternLMModel(config)
1039
+
1040
+ self.lm_head = nn.Linear(config.hidden_size,
1041
+ config.vocab_size,
1042
+ bias=False)
1043
+ if hasattr(config, 'ex_size'):
1044
+ self.ex_size = config.ex_size
1045
+ else:
1046
+ self.ex_size = 0
1047
+
1048
+ if hasattr(config, 'sp_id'):
1049
+ self.sp_id = config.sp_id
1050
+ else:
1051
+ self.sp_id = -1
1052
+
1053
+ # Initialize weights and apply final processing
1054
+ self.post_init()
1055
+
1056
+ @classmethod
1057
+ def from_pretrained(cls,
1058
+ pretrained_model_name_or_path,
1059
+ llm_cfg=None,
1060
+ *model_args,
1061
+ **kwargs):
1062
+ if llm_cfg:
1063
+ if 'torch_dtype' in kwargs:
1064
+ llm_cfg.torch_dtype = kwargs['torch_dtype']
1065
+ if 'load_in_8bit' in kwargs:
1066
+ llm_cfg.load_in_8bit = kwargs['load_in_8bit']
1067
+ if 'device_map' in kwargs:
1068
+ llm_cfg.device_map = kwargs['device_map']
1069
+ return cls._from_config(llm_cfg)
1070
+ else:
1071
+ return super().from_pretrained(pretrained_model_name_or_path,
1072
+ *model_args, **kwargs)
1073
+
1074
+ def get_input_embeddings(self):
1075
+ return self.model.embed_tokens
1076
+
1077
+ def set_input_embeddings(self, value):
1078
+ self.model.embed_tokens = value
1079
+
1080
+ def get_output_embeddings(self):
1081
+ return self.lm_head
1082
+
1083
+ def set_output_embeddings(self, new_embeddings):
1084
+ self.lm_head = new_embeddings
1085
+
1086
+ def set_decoder(self, decoder):
1087
+ self.model = decoder
1088
+
1089
+ def get_decoder(self):
1090
+ return self.model
1091
+
1092
+ def forward(
1093
+ self,
1094
+ input_ids: torch.LongTensor = None,
1095
+ attention_mask: Optional[torch.Tensor] = None,
1096
+ position_ids: Optional[torch.LongTensor] = None,
1097
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1098
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1099
+ query_embeds: Optional[torch.FloatTensor] = None,
1100
+ labels: Optional[torch.LongTensor] = None,
1101
+ use_cache: Optional[bool] = None,
1102
+ output_attentions: Optional[bool] = None,
1103
+ output_hidden_states: Optional[bool] = None,
1104
+ return_dict: Optional[bool] = None,
1105
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
1106
+ r"""
1107
+ Args:
1108
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1109
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
1110
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
1111
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
1112
+
1113
+ Returns:
1114
+
1115
+ Example:
1116
+
1117
+ ```python
1118
+ >>> from transformers import AutoTokenizer, InternLMForCausalLM
1119
+
1120
+ >>> model = InternLMForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
1121
+ >>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
1122
+
1123
+ >>> prompt = "Hey, are you consciours? Can you talk to me?"
1124
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
1125
+
1126
+ >>> # Generate
1127
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
1128
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
1129
+ "Hey, are you consciours? Can you talk to me?\nI'm not consciours, but I can talk to you."
1130
+ ```"""
1131
+
1132
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
1133
+ output_hidden_states = (output_hidden_states
1134
+ if output_hidden_states is not None else
1135
+ self.config.output_hidden_states)
1136
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
1137
+
1138
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
1139
+ outputs = self.model(
1140
+ input_ids=input_ids,
1141
+ attention_mask=attention_mask,
1142
+ position_ids=position_ids,
1143
+ past_key_values=past_key_values,
1144
+ inputs_embeds=inputs_embeds,
1145
+ query_embeds=query_embeds,
1146
+ use_cache=use_cache,
1147
+ output_attentions=output_attentions,
1148
+ output_hidden_states=output_hidden_states,
1149
+ return_dict=return_dict,
1150
+ )
1151
+
1152
+ hidden_states = outputs[0]
1153
+ logits = self.lm_head(hidden_states)
1154
+
1155
+ loss = None
1156
+ if labels is not None:
1157
+ # Shift so that tokens < n predict n
1158
+ shift_logits = logits[..., :-1, :].contiguous()
1159
+ shift_labels = labels[..., 1:].contiguous()
1160
+ # Flatten the tokens
1161
+
1162
+ loss_fct = CrossEntropyLoss(reduce=False)
1163
+ loss_reduce = CrossEntropyLoss()
1164
+ shift_logits = shift_logits.view(-1, self.config.vocab_size)
1165
+ shift_labels = shift_labels.view(-1)
1166
+ shift_labels = shift_labels.to(shift_logits.device)
1167
+ ###
1168
+ if self.sp_id >= 0:
1169
+ ori_mask = (shift_labels != self.sp_id).float()
1170
+ ori_mask = ori_mask * (shift_labels >= 0).float()
1171
+ local_mask = (shift_labels == self.sp_id).float()
1172
+ else:
1173
+ ori_mask = (shift_labels <
1174
+ self.config.vocab_size - self.ex_size).float()
1175
+ ori_mask = ori_mask * (shift_labels >= 0).float()
1176
+ local_mask = (shift_labels >=
1177
+ self.config.vocab_size - self.ex_size).float()
1178
+
1179
+ # Enable model parallelism
1180
+
1181
+ loss = loss_reduce(shift_logits, shift_labels)
1182
+
1183
+ loss_all = loss_fct(shift_logits, shift_labels)
1184
+ loss_o = (loss_all * ori_mask).sum() / ori_mask.sum()
1185
+ if torch.sum(local_mask) == 0:
1186
+ loss_l = loss_o * 0
1187
+ else:
1188
+ loss_l = (loss_all * local_mask).sum() / local_mask.sum()
1189
+
1190
+ if not return_dict:
1191
+ output = (logits, ) + outputs[1:]
1192
+ return (loss, ) + output if loss is not None else output
1193
+
1194
+ if (self.ex_size > 0 or self.sp_id >= 0) and labels is not None:
1195
+ return loss, loss_o, loss_l
1196
+
1197
+ return CausalLMOutputWithPast(
1198
+ loss=loss,
1199
+ logits=logits,
1200
+ past_key_values=outputs.past_key_values,
1201
+ hidden_states=outputs.hidden_states,
1202
+ attentions=outputs.attentions,
1203
+ )
1204
+
1205
+ def prepare_inputs_for_generation(self,
1206
+ input_ids,
1207
+ query_embeds=None,
1208
+ past_key_values=None,
1209
+ attention_mask=None,
1210
+ inputs_embeds=None,
1211
+ **kwargs):
1212
+ if past_key_values:
1213
+ input_ids = input_ids[:, -1:]
1214
+
1215
+ position_ids = kwargs.get("position_ids", None)
1216
+ if attention_mask is not None and position_ids is None:
1217
+ # create position_ids on the fly for batch generation
1218
+ position_ids = attention_mask.long().cumsum(-1) - 1
1219
+ position_ids.masked_fill_(attention_mask == 0, 1)
1220
+ if past_key_values:
1221
+ position_ids = position_ids[:, -1].unsqueeze(-1)
1222
+ query_embeds = None
1223
+
1224
+ # if `inputs_embeds` are passed, we only want to use them in the 1st generation step
1225
+ if inputs_embeds is not None and past_key_values is None:
1226
+ model_inputs = {"inputs_embeds": inputs_embeds}
1227
+ else:
1228
+ model_inputs = {"input_ids": input_ids}
1229
+
1230
+ model_inputs.update({
1231
+ "position_ids": position_ids,
1232
+ "query_embeds": query_embeds,
1233
+ "past_key_values": past_key_values,
1234
+ "use_cache": kwargs.get("use_cache"),
1235
+ "attention_mask": attention_mask,
1236
+ })
1237
+ return model_inputs
1238
+
1239
+ @staticmethod
1240
+ def _reorder_cache(past_key_values, beam_idx):
1241
+ reordered_past = ()
1242
+ for layer_past in past_key_values:
1243
+ reordered_past += (tuple(
1244
+ past_state.index_select(0, beam_idx)
1245
+ for past_state in layer_past), )
1246
+ return reordered_past
modeling_InternLM_XComposer.py ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import copy
2
+ import os
3
+ import sys
4
+
5
+ dir_path = os.path.dirname(os.path.realpath(__file__))
6
+ sys.path.insert(0, dir_path)
7
+
8
+ import contextlib
9
+
10
+ import torch.utils.checkpoint
11
+ from torch.nn import LayerNorm
12
+ from torchvision import transforms
13
+ from torchvision.transforms.functional import InterpolationMode
14
+ from PIL import Image
15
+
16
+ from .modeling_perceive_sampler import BertConfig, BertLMHeadModel
17
+ from .modeling_vit import *
18
+ from .modeling_InternLM import *
19
+ from .modeling_utils import *
20
+
21
+ from transformers.utils import logging
22
+ logger = logging.get_logger(__name__)
23
+
24
+
25
+ class InternLMXComposerForCausalLM(PreTrainedModel):
26
+ config_class = InternLMXComposerConfig
27
+ _auto_class = "AutoModelForCausalLM"
28
+
29
+ gen_config = dict(
30
+ num_beams=5,
31
+ do_sample=False,
32
+ min_length=1,
33
+ repetition_penalty=1.5,
34
+ length_penalty=1.0,
35
+ temperature=1.0,
36
+ max_new_tokens=200,
37
+ )
38
+
39
+ def __init__(self, config):
40
+ super().__init__(config)
41
+
42
+ print('Init VIT ... ', end='')
43
+ self.visual_encoder = create_eva_vit_g()
44
+ self.ln_vision = LayerNorm(self.visual_encoder.num_features)
45
+ print('Done')
46
+
47
+ print('Init Perceive Sampler ... ', end='')
48
+ with all_logging_disabled():
49
+ self.Qformer, self.query_tokens = self.init_qformer(
50
+ config.num_query_token, self.visual_encoder.num_features)
51
+ self.Qformer.bert.embeddings.word_embeddings = None
52
+ self.Qformer.bert.embeddings.position_embeddings = None
53
+ for layer in self.Qformer.bert.encoder.layer:
54
+ layer.output = None
55
+ layer.intermediate = None
56
+ self.Qformer.cls = None
57
+ print('Done')
58
+
59
+ print('Init InternLM ... ', end='')
60
+ self.flag_image_start = nn.Parameter(torch.zeros([1, 1, 4096]))
61
+ self.flag_image_end = nn.Parameter(torch.zeros([1, 1, 4096]))
62
+ self.flag_image_start.requires_grad = False
63
+ self.flag_image_end.requires_grad = False
64
+
65
+ internlm_lora = config.internlm_lora
66
+ self.internlm_lora = internlm_lora
67
+ setattr(InternLMForCausalLM, 'lora_cfg', internlm_lora)
68
+
69
+ if int(torch.__version__[0]) == 1:
70
+ self.internlm_model = InternLMForCausalLM._from_config(config).to(
71
+ torch.float16)
72
+ else:
73
+ assert int(torch.__version__[0]) == 2
74
+ # speed up init llm
75
+ with torch.device('meta'):
76
+ self.internlm_model = InternLMForCausalLM._from_config(config)
77
+ self.internlm_model.to_empty(device=config.device).to(torch.float16)
78
+ for n, m in self.internlm_model.named_modules():
79
+ if 'lora' in n:
80
+ m.float()
81
+
82
+ self.internlm_proj = nn.Linear(self.Qformer.config.hidden_size,
83
+ self.internlm_model.config.hidden_size)
84
+ print('Done')
85
+
86
+ self.vis_processor = transforms.Compose([
87
+ transforms.Resize((224, 224),
88
+ interpolation=InterpolationMode.BICUBIC),
89
+ transforms.ToTensor(),
90
+ transforms.Normalize((0.48145466, 0.4578275, 0.40821073),
91
+ (0.26862954, 0.26130258, 0.27577711)),
92
+ ])
93
+
94
+ self.tokenizer = None
95
+
96
+ @property
97
+ def eoh(self):
98
+ return self.tokenizer.decode(torch.Tensor([103027]),
99
+ skip_special_tokens=True)
100
+
101
+ @property
102
+ def eoa(self):
103
+ return self.tokenizer.decode(torch.Tensor([103028]),
104
+ skip_special_tokens=True)
105
+
106
+ def maybe_autocast(self, dtype=torch.float16):
107
+ # if on cpu, don't use autocast
108
+ # if on gpu, use autocast with dtype if provided, otherwise use torch.float16
109
+ enable_autocast = self.device != torch.device("cpu")
110
+
111
+ if enable_autocast:
112
+ return torch.cuda.amp.autocast(dtype=dtype)
113
+ else:
114
+ return contextlib.nullcontext()
115
+
116
+ @classmethod
117
+ def init_qformer(cls,
118
+ num_query_token,
119
+ vision_width,
120
+ cross_attention_freq=2,
121
+ pretrain=True):
122
+ encoder_config = BertConfig.from_pretrained("bert-base-uncased")
123
+ encoder_config.encoder_width = vision_width
124
+ # insert cross-attention layer every other block
125
+ encoder_config.add_cross_attention = True
126
+ encoder_config.cross_attention_freq = cross_attention_freq
127
+ encoder_config.query_length = num_query_token
128
+ # if pretrain:
129
+ # Qformer = BertLMHeadModel.from_pretrained("bert-base-uncased",
130
+ # config=encoder_config)
131
+ # else:
132
+ Qformer = BertLMHeadModel(config=encoder_config)
133
+ query_tokens = nn.Parameter(
134
+ torch.zeros(1, num_query_token, encoder_config.hidden_size))
135
+ query_tokens.data.normal_(mean=0.0,
136
+ std=encoder_config.initializer_range)
137
+ return Qformer, query_tokens
138
+
139
+ def encode_img(self, image):
140
+ if image is None:
141
+ return None
142
+ if isinstance(image, str):
143
+ image = Image.open(image).convert("RGB")
144
+ image = self.vis_processor(image).unsqueeze(0).to(self.device)
145
+ else:
146
+ assert isinstance(image, torch.Tensor)
147
+ device = image.device
148
+ with self.maybe_autocast():
149
+ image_embeds = self.ln_vision(
150
+ self.visual_encoder(image)).to(device)
151
+ image_atts = torch.ones(image_embeds.size()[:-1],
152
+ dtype=torch.long).to(device)
153
+ query_tokens = self.query_tokens.expand(image_embeds.shape[0], -1,
154
+ -1)
155
+ query_output = self.Qformer.bert(
156
+ query_embeds=query_tokens,
157
+ encoder_hidden_states=image_embeds,
158
+ encoder_attention_mask=image_atts,
159
+ return_dict=True,
160
+ )
161
+ inputs_internlm = self.internlm_proj(query_output.last_hidden_state)
162
+ inputs_internlm = torch.cat([
163
+ self.flag_image_start.expand(inputs_internlm.shape[0], -1, -1),
164
+ inputs_internlm,
165
+ self.flag_image_end.expand(inputs_internlm.shape[0], -1, -1)
166
+ ],
167
+ dim=1)
168
+ return inputs_internlm
169
+
170
+ def encode_text(self, text, add_special_tokens=False):
171
+ text_token_ids = self.tokenizer(
172
+ text,
173
+ return_tensors='pt',
174
+ add_special_tokens=add_special_tokens,
175
+ ).input_ids.to(self.device)
176
+ text_embeds = self.internlm_model.model.embed_tokens(text_token_ids)
177
+ return text_embeds
178
+
179
+ def decode_text(self, out_embeds):
180
+ out_text = self.tokenizer.batch_decode(out_embeds,
181
+ skip_special_tokens=True)[0]
182
+ out_text = out_text.split(self.eoa)[0]
183
+ return out_text
184
+
185
+ def wrap_text(self, user_text, bot_text='', add_special=True):
186
+ if add_special:
187
+ eoh = self.eoh
188
+ else:
189
+ eoh = ''
190
+ text = f' <|User|>:{user_text} \n{eoh} <|Bot|>:{bot_text}'
191
+ return text
192
+
193
+ def get_gen_args(self, **kwargs):
194
+ new_kargs = copy.deepcopy(self.gen_config)
195
+ new_kargs.update(kwargs)
196
+ return new_kargs
197
+
198
+ def generate(self, text, image=None, **kwargs):
199
+ text_embeds = self.encode_text(text)
200
+ img_embeds = self.encode_img(image)
201
+ prompt_embeds = self.wrap_prompt(text_embeds, img_embeds)
202
+ out_embeds = self.internlm_model.generate(inputs_embeds=prompt_embeds,
203
+ **self.get_gen_args(**kwargs))
204
+ out_text = self.decode_text(out_embeds)
205
+ return out_text
206
+
207
+ def chat(self, text, image=None, history=None, **kwargs):
208
+ text_embeds = self.encode_text(text)
209
+ img_embeds = self.encode_img(image)
210
+ prompt_embeds = self.wrap_prompt(text_embeds,
211
+ img_embeds,
212
+ history=history)
213
+ out_embeds = self.internlm_model.generate(inputs_embeds=prompt_embeds,
214
+ **self.get_gen_args(**kwargs))
215
+ out_text = self.decode_text(out_embeds)
216
+
217
+ # trunc at eoh and eoa
218
+ clean_out_text_token_ids = self.tokenizer(
219
+ out_text, return_tensors='pt').input_ids.to(self.device)
220
+ clean_out_text_embeds = self.internlm_model.model.embed_tokens(
221
+ clean_out_text_token_ids)
222
+ clean_prompt_embeds = self.wrap_prompt(text_embeds,
223
+ img_embeds,
224
+ add_special=False)
225
+ cur_history = torch.cat([clean_prompt_embeds, clean_out_text_embeds],
226
+ dim=1)
227
+ if history is None:
228
+ history = []
229
+ history.append(cur_history)
230
+ return out_text, history
231
+
232
+ def wrap_prompt(self,
233
+ text_embeds,
234
+ img_embeds=None,
235
+ history=None,
236
+ add_special=True):
237
+ if add_special:
238
+ prompt_segs = [' <|User|>:', f'\n{self.eoh} <|Bot|>:']
239
+ else:
240
+ prompt_segs = [' <|User|>:', ' <|Bot|>:'] # used in wrap history
241
+ prompt_seg_embeds = []
242
+ for i, seg in enumerate(prompt_segs):
243
+ if history is not None:
244
+ add_special_tokens = False
245
+ else:
246
+ add_special_tokens = i == 0
247
+ seg_embeds = self.encode_text(
248
+ seg, add_special_tokens=add_special_tokens)
249
+ prompt_seg_embeds.append(seg_embeds)
250
+ if img_embeds is None:
251
+ img_embeds = text_embeds.new_empty(text_embeds.size(0), 0,
252
+ text_embeds.size(-1))
253
+ prompt_seg_embeds = [
254
+ prompt_seg_embeds[0], img_embeds, text_embeds, prompt_seg_embeds[1]
255
+ ]
256
+ prompt_embeds = torch.cat(prompt_seg_embeds, dim=1)
257
+ if history is not None:
258
+ prompt_embeds = torch.cat([*history, prompt_embeds], dim=1)
259
+ return prompt_embeds
modeling_perceive_sampler.py ADDED
@@ -0,0 +1,1193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ * Copyright (c) 2023, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: BSD-3-Clause
5
+ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
+ * By Junnan Li
7
+ * Based on huggingface code base
8
+ * https://github.com/huggingface/transformers/blob/v4.15.0/src/transformers/models/bert
9
+ """
10
+
11
+ import math
12
+ from typing import Tuple
13
+
14
+ import torch
15
+ import torch.utils.checkpoint
16
+ from torch import Tensor, device
17
+ from torch import nn
18
+ from torch.nn import CrossEntropyLoss
19
+ from transformers.activations import ACT2FN
20
+ from transformers.modeling_outputs import (
21
+ BaseModelOutputWithPastAndCrossAttentions,
22
+ BaseModelOutputWithPoolingAndCrossAttentions,
23
+ CausalLMOutputWithCrossAttentions,
24
+ MaskedLMOutput,
25
+ )
26
+ from transformers.modeling_utils import (
27
+ PreTrainedModel,
28
+ apply_chunking_to_forward,
29
+ find_pruneable_heads_and_indices,
30
+ prune_linear_layer,
31
+ )
32
+ from transformers.models.bert.configuration_bert import BertConfig
33
+ from transformers.utils import logging
34
+
35
+ logger = logging.get_logger(__name__)
36
+
37
+
38
+ class BertEmbeddings(nn.Module):
39
+ """Construct the embeddings from word and position embeddings."""
40
+ def __init__(self, config):
41
+ super().__init__()
42
+ self.word_embeddings = nn.Embedding(config.vocab_size,
43
+ config.hidden_size,
44
+ padding_idx=config.pad_token_id)
45
+ self.position_embeddings = nn.Embedding(config.max_position_embeddings,
46
+ config.hidden_size)
47
+
48
+ # self.LayerNorm is not snake-cased to stick with TensorFlow model variable name and be able to load
49
+ # any TensorFlow checkpoint file
50
+ self.LayerNorm = nn.LayerNorm(config.hidden_size,
51
+ eps=config.layer_norm_eps)
52
+ self.dropout = nn.Dropout(config.hidden_dropout_prob)
53
+
54
+ # position_ids (1, len position emb) is contiguous in memory and exported when serialized
55
+ self.register_buffer(
56
+ "position_ids",
57
+ torch.arange(config.max_position_embeddings).expand((1, -1)))
58
+ self.position_embedding_type = getattr(config,
59
+ "position_embedding_type",
60
+ "absolute")
61
+
62
+ self.config = config
63
+
64
+ def forward(
65
+ self,
66
+ input_ids=None,
67
+ position_ids=None,
68
+ query_embeds=None,
69
+ past_key_values_length=0,
70
+ ):
71
+ if input_ids is not None:
72
+ seq_length = input_ids.size()[1]
73
+ else:
74
+ seq_length = 0
75
+
76
+ if position_ids is None:
77
+ position_ids = self.position_ids[:, past_key_values_length:
78
+ seq_length +
79
+ past_key_values_length].clone()
80
+
81
+ if input_ids is not None:
82
+ embeddings = self.word_embeddings(input_ids)
83
+ if self.position_embedding_type == "absolute":
84
+ position_embeddings = self.position_embeddings(position_ids)
85
+ embeddings = embeddings + position_embeddings
86
+
87
+ if query_embeds is not None:
88
+ embeddings = torch.cat((query_embeds, embeddings), dim=1)
89
+ else:
90
+ embeddings = query_embeds
91
+
92
+ embeddings = self.LayerNorm(embeddings)
93
+ embeddings = self.dropout(embeddings)
94
+ return embeddings
95
+
96
+
97
+ class BertSelfAttention(nn.Module):
98
+ def __init__(self, config, is_cross_attention):
99
+ super().__init__()
100
+ self.config = config
101
+ if config.hidden_size % config.num_attention_heads != 0 and not hasattr(
102
+ config, "embedding_size"):
103
+ raise ValueError(
104
+ "The hidden size (%d) is not a multiple of the number of attention "
105
+ "heads (%d)" %
106
+ (config.hidden_size, config.num_attention_heads))
107
+
108
+ self.num_attention_heads = config.num_attention_heads
109
+ self.attention_head_size = int(config.hidden_size /
110
+ config.num_attention_heads)
111
+ self.all_head_size = self.num_attention_heads * self.attention_head_size
112
+
113
+ self.query = nn.Linear(config.hidden_size, self.all_head_size)
114
+ if is_cross_attention:
115
+ self.key = nn.Linear(config.encoder_width, self.all_head_size)
116
+ self.value = nn.Linear(config.encoder_width, self.all_head_size)
117
+ else:
118
+ self.key = nn.Linear(config.hidden_size, self.all_head_size)
119
+ self.value = nn.Linear(config.hidden_size, self.all_head_size)
120
+
121
+ self.dropout = nn.Dropout(config.attention_probs_dropout_prob)
122
+ self.position_embedding_type = getattr(config,
123
+ "position_embedding_type",
124
+ "absolute")
125
+ if (self.position_embedding_type == "relative_key"
126
+ or self.position_embedding_type == "relative_key_query"):
127
+ self.max_position_embeddings = config.max_position_embeddings
128
+ self.distance_embedding = nn.Embedding(
129
+ 2 * config.max_position_embeddings - 1,
130
+ self.attention_head_size)
131
+ self.save_attention = False
132
+
133
+ def save_attn_gradients(self, attn_gradients):
134
+ self.attn_gradients = attn_gradients
135
+
136
+ def get_attn_gradients(self):
137
+ return self.attn_gradients
138
+
139
+ def save_attention_map(self, attention_map):
140
+ self.attention_map = attention_map
141
+
142
+ def get_attention_map(self):
143
+ return self.attention_map
144
+
145
+ def transpose_for_scores(self, x):
146
+ new_x_shape = x.size()[:-1] + (
147
+ self.num_attention_heads,
148
+ self.attention_head_size,
149
+ )
150
+ x = x.view(*new_x_shape)
151
+ return x.permute(0, 2, 1, 3)
152
+
153
+ def forward(
154
+ self,
155
+ hidden_states,
156
+ attention_mask=None,
157
+ head_mask=None,
158
+ encoder_hidden_states=None,
159
+ encoder_attention_mask=None,
160
+ past_key_value=None,
161
+ output_attentions=False,
162
+ ):
163
+
164
+ # If this is instantiated as a cross-attention module, the keys
165
+ # and values come from an encoder; the attention mask needs to be
166
+ # such that the encoder's padding tokens are not attended to.
167
+ is_cross_attention = encoder_hidden_states is not None
168
+
169
+ if is_cross_attention:
170
+ key_layer = self.transpose_for_scores(
171
+ self.key(encoder_hidden_states))
172
+ value_layer = self.transpose_for_scores(
173
+ self.value(encoder_hidden_states))
174
+ attention_mask = encoder_attention_mask
175
+ elif past_key_value is not None:
176
+ key_layer = self.transpose_for_scores(self.key(hidden_states))
177
+ value_layer = self.transpose_for_scores(self.value(hidden_states))
178
+ key_layer = torch.cat([past_key_value[0], key_layer], dim=2)
179
+ value_layer = torch.cat([past_key_value[1], value_layer], dim=2)
180
+ else:
181
+ key_layer = self.transpose_for_scores(self.key(hidden_states))
182
+ value_layer = self.transpose_for_scores(self.value(hidden_states))
183
+
184
+ mixed_query_layer = self.query(hidden_states)
185
+
186
+ query_layer = self.transpose_for_scores(mixed_query_layer)
187
+
188
+ past_key_value = (key_layer, value_layer)
189
+
190
+ # Take the dot product between "query" and "key" to get the raw attention scores.
191
+ attention_scores = torch.matmul(query_layer,
192
+ key_layer.transpose(-1, -2))
193
+
194
+ if (self.position_embedding_type == "relative_key"
195
+ or self.position_embedding_type == "relative_key_query"):
196
+ seq_length = hidden_states.size()[1]
197
+ position_ids_l = torch.arange(seq_length,
198
+ dtype=torch.long,
199
+ device=hidden_states.device).view(
200
+ -1, 1)
201
+ position_ids_r = torch.arange(seq_length,
202
+ dtype=torch.long,
203
+ device=hidden_states.device).view(
204
+ 1, -1)
205
+ distance = position_ids_l - position_ids_r
206
+ positional_embedding = self.distance_embedding(
207
+ distance + self.max_position_embeddings - 1)
208
+ positional_embedding = positional_embedding.to(
209
+ dtype=query_layer.dtype) # fp16 compatibility
210
+
211
+ if self.position_embedding_type == "relative_key":
212
+ relative_position_scores = torch.einsum(
213
+ "bhld,lrd->bhlr", query_layer, positional_embedding)
214
+ attention_scores = attention_scores + relative_position_scores
215
+ elif self.position_embedding_type == "relative_key_query":
216
+ relative_position_scores_query = torch.einsum(
217
+ "bhld,lrd->bhlr", query_layer, positional_embedding)
218
+ relative_position_scores_key = torch.einsum(
219
+ "bhrd,lrd->bhlr", key_layer, positional_embedding)
220
+ attention_scores = (attention_scores +
221
+ relative_position_scores_query +
222
+ relative_position_scores_key)
223
+
224
+ attention_scores = attention_scores / math.sqrt(
225
+ self.attention_head_size)
226
+ if attention_mask is not None:
227
+ # Apply the attention mask is (precomputed for all layers in BertModel forward() function)
228
+ attention_scores = attention_scores + attention_mask
229
+
230
+ # Normalize the attention scores to probabilities.
231
+ attention_probs = nn.Softmax(dim=-1)(attention_scores)
232
+
233
+ if is_cross_attention and self.save_attention:
234
+ self.save_attention_map(attention_probs)
235
+ attention_probs.register_hook(self.save_attn_gradients)
236
+
237
+ # This is actually dropping out entire tokens to attend to, which might
238
+ # seem a bit unusual, but is taken from the original Transformer paper.
239
+ attention_probs_dropped = self.dropout(attention_probs)
240
+
241
+ # Mask heads if we want to
242
+ if head_mask is not None:
243
+ attention_probs_dropped = attention_probs_dropped * head_mask
244
+
245
+ context_layer = torch.matmul(attention_probs_dropped, value_layer)
246
+
247
+ context_layer = context_layer.permute(0, 2, 1, 3).contiguous()
248
+ new_context_layer_shape = context_layer.size()[:-2] + (
249
+ self.all_head_size, )
250
+ context_layer = context_layer.view(*new_context_layer_shape)
251
+
252
+ outputs = ((context_layer, attention_probs) if output_attentions else
253
+ (context_layer, ))
254
+
255
+ outputs = outputs + (past_key_value, )
256
+ return outputs
257
+
258
+
259
+ class BertSelfOutput(nn.Module):
260
+ def __init__(self, config):
261
+ super().__init__()
262
+ self.dense = nn.Linear(config.hidden_size, config.hidden_size)
263
+ self.LayerNorm = nn.LayerNorm(config.hidden_size,
264
+ eps=config.layer_norm_eps)
265
+ self.dropout = nn.Dropout(config.hidden_dropout_prob)
266
+
267
+ def forward(self, hidden_states, input_tensor):
268
+ hidden_states = self.dense(hidden_states)
269
+ hidden_states = self.dropout(hidden_states)
270
+ hidden_states = self.LayerNorm(hidden_states + input_tensor)
271
+ return hidden_states
272
+
273
+
274
+ class BertAttention(nn.Module):
275
+ def __init__(self, config, is_cross_attention=False):
276
+ super().__init__()
277
+ self.self = BertSelfAttention(config, is_cross_attention)
278
+ self.output = BertSelfOutput(config)
279
+ self.pruned_heads = set()
280
+
281
+ def prune_heads(self, heads):
282
+ if len(heads) == 0:
283
+ return
284
+ heads, index = find_pruneable_heads_and_indices(
285
+ heads,
286
+ self.self.num_attention_heads,
287
+ self.self.attention_head_size,
288
+ self.pruned_heads,
289
+ )
290
+
291
+ # Prune linear layers
292
+ self.self.query = prune_linear_layer(self.self.query, index)
293
+ self.self.key = prune_linear_layer(self.self.key, index)
294
+ self.self.value = prune_linear_layer(self.self.value, index)
295
+ self.output.dense = prune_linear_layer(self.output.dense, index, dim=1)
296
+
297
+ # Update hyper params and store pruned heads
298
+ self.self.num_attention_heads = self.self.num_attention_heads - len(
299
+ heads)
300
+ self.self.all_head_size = (self.self.attention_head_size *
301
+ self.self.num_attention_heads)
302
+ self.pruned_heads = self.pruned_heads.union(heads)
303
+
304
+ def forward(
305
+ self,
306
+ hidden_states,
307
+ attention_mask=None,
308
+ head_mask=None,
309
+ encoder_hidden_states=None,
310
+ encoder_attention_mask=None,
311
+ past_key_value=None,
312
+ output_attentions=False,
313
+ ):
314
+ self_outputs = self.self(
315
+ hidden_states,
316
+ attention_mask,
317
+ head_mask,
318
+ encoder_hidden_states,
319
+ encoder_attention_mask,
320
+ past_key_value,
321
+ output_attentions,
322
+ )
323
+ attention_output = self.output(self_outputs[0], hidden_states)
324
+
325
+ outputs = (attention_output,
326
+ ) + self_outputs[1:] # add attentions if we output them
327
+ return outputs
328
+
329
+
330
+ class BertIntermediate(nn.Module):
331
+ def __init__(self, config):
332
+ super().__init__()
333
+ self.dense = nn.Linear(config.hidden_size, config.intermediate_size)
334
+ if isinstance(config.hidden_act, str):
335
+ self.intermediate_act_fn = ACT2FN[config.hidden_act]
336
+ else:
337
+ self.intermediate_act_fn = config.hidden_act
338
+
339
+ def forward(self, hidden_states):
340
+ hidden_states = self.dense(hidden_states)
341
+ hidden_states = self.intermediate_act_fn(hidden_states)
342
+ return hidden_states
343
+
344
+
345
+ class BertOutput(nn.Module):
346
+ def __init__(self, config):
347
+ super().__init__()
348
+ self.dense = nn.Linear(config.intermediate_size, config.hidden_size)
349
+ self.LayerNorm = nn.LayerNorm(config.hidden_size,
350
+ eps=config.layer_norm_eps)
351
+ self.dropout = nn.Dropout(config.hidden_dropout_prob)
352
+
353
+ def forward(self, hidden_states, input_tensor):
354
+ hidden_states = self.dense(hidden_states)
355
+ hidden_states = self.dropout(hidden_states)
356
+ hidden_states = self.LayerNorm(hidden_states + input_tensor)
357
+ return hidden_states
358
+
359
+
360
+ class BertLayer(nn.Module):
361
+ def __init__(self, config, layer_num):
362
+ super().__init__()
363
+ self.config = config
364
+ self.chunk_size_feed_forward = config.chunk_size_feed_forward
365
+ self.seq_len_dim = 1
366
+ self.attention = BertAttention(config)
367
+ self.layer_num = layer_num
368
+ if (self.config.add_cross_attention
369
+ and layer_num % self.config.cross_attention_freq == 0):
370
+ self.crossattention = BertAttention(
371
+ config, is_cross_attention=self.config.add_cross_attention)
372
+ self.has_cross_attention = True
373
+ else:
374
+ self.has_cross_attention = False
375
+ self.intermediate = BertIntermediate(config)
376
+ self.output = BertOutput(config)
377
+
378
+ self.intermediate_query = BertIntermediate(config)
379
+ self.output_query = BertOutput(config)
380
+
381
+ def forward(
382
+ self,
383
+ hidden_states,
384
+ attention_mask=None,
385
+ head_mask=None,
386
+ encoder_hidden_states=None,
387
+ encoder_attention_mask=None,
388
+ past_key_value=None,
389
+ output_attentions=False,
390
+ query_length=0,
391
+ ):
392
+ # decoder uni-directional self-attention cached key/values tuple is at positions 1,2
393
+ self_attn_past_key_value = (past_key_value[:2]
394
+ if past_key_value is not None else None)
395
+ self_attention_outputs = self.attention(
396
+ hidden_states,
397
+ attention_mask,
398
+ head_mask,
399
+ output_attentions=output_attentions,
400
+ past_key_value=self_attn_past_key_value,
401
+ )
402
+ attention_output = self_attention_outputs[0]
403
+ outputs = self_attention_outputs[1:-1]
404
+
405
+ present_key_value = self_attention_outputs[-1]
406
+
407
+ if query_length > 0:
408
+ query_attention_output = attention_output[:, :query_length, :]
409
+
410
+ if self.has_cross_attention:
411
+ assert (
412
+ encoder_hidden_states is not None
413
+ ), "encoder_hidden_states must be given for cross-attention layers"
414
+ cross_attention_outputs = self.crossattention(
415
+ query_attention_output,
416
+ attention_mask,
417
+ head_mask,
418
+ encoder_hidden_states,
419
+ encoder_attention_mask,
420
+ output_attentions=output_attentions,
421
+ )
422
+ query_attention_output = cross_attention_outputs[0]
423
+ outputs = (
424
+ outputs + cross_attention_outputs[1:-1]
425
+ ) # add cross attentions if we output attention weights
426
+
427
+ layer_output = apply_chunking_to_forward(
428
+ self.feed_forward_chunk_query,
429
+ self.chunk_size_feed_forward,
430
+ self.seq_len_dim,
431
+ query_attention_output,
432
+ )
433
+ if attention_output.shape[1] > query_length:
434
+ layer_output_text = apply_chunking_to_forward(
435
+ self.feed_forward_chunk,
436
+ self.chunk_size_feed_forward,
437
+ self.seq_len_dim,
438
+ attention_output[:, query_length:, :],
439
+ )
440
+ layer_output = torch.cat([layer_output, layer_output_text],
441
+ dim=1)
442
+ else:
443
+ layer_output = apply_chunking_to_forward(
444
+ self.feed_forward_chunk,
445
+ self.chunk_size_feed_forward,
446
+ self.seq_len_dim,
447
+ attention_output,
448
+ )
449
+ outputs = (layer_output, ) + outputs
450
+
451
+ outputs = outputs + (present_key_value, )
452
+
453
+ return outputs
454
+
455
+ def feed_forward_chunk(self, attention_output):
456
+ intermediate_output = self.intermediate(attention_output)
457
+ layer_output = self.output(intermediate_output, attention_output)
458
+ return layer_output
459
+
460
+ def feed_forward_chunk_query(self, attention_output):
461
+ intermediate_output = self.intermediate_query(attention_output)
462
+ layer_output = self.output_query(intermediate_output, attention_output)
463
+ return layer_output
464
+
465
+
466
+ class BertEncoder(nn.Module):
467
+ def __init__(self, config):
468
+ super().__init__()
469
+ self.config = config
470
+ self.layer = nn.ModuleList(
471
+ [BertLayer(config, i) for i in range(config.num_hidden_layers)])
472
+
473
+ def forward(
474
+ self,
475
+ hidden_states,
476
+ attention_mask=None,
477
+ head_mask=None,
478
+ encoder_hidden_states=None,
479
+ encoder_attention_mask=None,
480
+ past_key_values=None,
481
+ use_cache=None,
482
+ output_attentions=False,
483
+ output_hidden_states=False,
484
+ return_dict=True,
485
+ query_length=0,
486
+ ):
487
+ all_hidden_states = () if output_hidden_states else None
488
+ all_self_attentions = () if output_attentions else None
489
+ all_cross_attentions = (() if output_attentions
490
+ and self.config.add_cross_attention else None)
491
+
492
+ next_decoder_cache = () if use_cache else None
493
+
494
+ for i in range(self.config.num_hidden_layers):
495
+ layer_module = self.layer[i]
496
+ if output_hidden_states:
497
+ all_hidden_states = all_hidden_states + (hidden_states, )
498
+
499
+ layer_head_mask = head_mask[i] if head_mask is not None else None
500
+ past_key_value = past_key_values[
501
+ i] if past_key_values is not None else None
502
+
503
+ if getattr(self.config, "gradient_checkpointing",
504
+ False) and self.training:
505
+
506
+ if use_cache:
507
+ logger.warn(
508
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
509
+ )
510
+ use_cache = False
511
+
512
+ def create_custom_forward(module):
513
+ def custom_forward(*inputs):
514
+ return module(*inputs, past_key_value,
515
+ output_attentions, query_length)
516
+
517
+ return custom_forward
518
+
519
+ layer_outputs = torch.utils.checkpoint.checkpoint(
520
+ create_custom_forward(layer_module),
521
+ hidden_states,
522
+ attention_mask,
523
+ layer_head_mask,
524
+ encoder_hidden_states,
525
+ encoder_attention_mask,
526
+ )
527
+ else:
528
+ layer_outputs = layer_module(
529
+ hidden_states,
530
+ attention_mask,
531
+ layer_head_mask,
532
+ encoder_hidden_states,
533
+ encoder_attention_mask,
534
+ past_key_value,
535
+ output_attentions,
536
+ query_length,
537
+ )
538
+
539
+ hidden_states = layer_outputs[0]
540
+ if use_cache:
541
+ next_decoder_cache += (layer_outputs[-1], )
542
+ if output_attentions:
543
+ all_self_attentions = all_self_attentions + (
544
+ layer_outputs[1], )
545
+ all_cross_attentions = all_cross_attentions + (
546
+ layer_outputs[2], )
547
+
548
+ if output_hidden_states:
549
+ all_hidden_states = all_hidden_states + (hidden_states, )
550
+
551
+ if not return_dict:
552
+ return tuple(v for v in [
553
+ hidden_states,
554
+ next_decoder_cache,
555
+ all_hidden_states,
556
+ all_self_attentions,
557
+ all_cross_attentions,
558
+ ] if v is not None)
559
+ return BaseModelOutputWithPastAndCrossAttentions(
560
+ last_hidden_state=hidden_states,
561
+ past_key_values=next_decoder_cache,
562
+ hidden_states=all_hidden_states,
563
+ attentions=all_self_attentions,
564
+ cross_attentions=all_cross_attentions,
565
+ )
566
+
567
+
568
+ class BertPooler(nn.Module):
569
+ def __init__(self, config):
570
+ super().__init__()
571
+ self.dense = nn.Linear(config.hidden_size, config.hidden_size)
572
+ self.activation = nn.Tanh()
573
+
574
+ def forward(self, hidden_states):
575
+ # We "pool" the model by simply taking the hidden state corresponding
576
+ # to the first token.
577
+ first_token_tensor = hidden_states[:, 0]
578
+ pooled_output = self.dense(first_token_tensor)
579
+ pooled_output = self.activation(pooled_output)
580
+ return pooled_output
581
+
582
+
583
+ class BertPredictionHeadTransform(nn.Module):
584
+ def __init__(self, config):
585
+ super().__init__()
586
+ self.dense = nn.Linear(config.hidden_size, config.hidden_size)
587
+ if isinstance(config.hidden_act, str):
588
+ self.transform_act_fn = ACT2FN[config.hidden_act]
589
+ else:
590
+ self.transform_act_fn = config.hidden_act
591
+ self.LayerNorm = nn.LayerNorm(config.hidden_size,
592
+ eps=config.layer_norm_eps)
593
+
594
+ def forward(self, hidden_states):
595
+ hidden_states = self.dense(hidden_states)
596
+ hidden_states = self.transform_act_fn(hidden_states)
597
+ hidden_states = self.LayerNorm(hidden_states)
598
+ return hidden_states
599
+
600
+
601
+ class BertLMPredictionHead(nn.Module):
602
+ def __init__(self, config):
603
+ super().__init__()
604
+ self.transform = BertPredictionHeadTransform(config)
605
+
606
+ # The output weights are the same as the input embeddings, but there is
607
+ # an output-only bias for each token.
608
+ self.decoder = nn.Linear(config.hidden_size,
609
+ config.vocab_size,
610
+ bias=False)
611
+
612
+ self.bias = nn.Parameter(torch.zeros(config.vocab_size))
613
+
614
+ # Need a link between the two variables so that the bias is correctly resized with `resize_token_embeddings`
615
+ self.decoder.bias = self.bias
616
+
617
+ def forward(self, hidden_states):
618
+ hidden_states = self.transform(hidden_states)
619
+ hidden_states = self.decoder(hidden_states)
620
+ return hidden_states
621
+
622
+
623
+ class BertOnlyMLMHead(nn.Module):
624
+ def __init__(self, config):
625
+ super().__init__()
626
+ self.predictions = BertLMPredictionHead(config)
627
+
628
+ def forward(self, sequence_output):
629
+ prediction_scores = self.predictions(sequence_output)
630
+ return prediction_scores
631
+
632
+
633
+ class BertPreTrainedModel(PreTrainedModel):
634
+ """
635
+ An abstract class to handle weights initialization and a simple interface for downloading and loading pretrained
636
+ models.
637
+ """
638
+
639
+ config_class = BertConfig
640
+ base_model_prefix = "bert"
641
+ _keys_to_ignore_on_load_missing = [r"position_ids"]
642
+
643
+ def _init_weights(self, module):
644
+ """Initialize the weights"""
645
+ if isinstance(module, (nn.Linear, nn.Embedding)):
646
+ # Slightly different from the TF version which uses truncated_normal for initialization
647
+ # cf https://github.com/pytorch/pytorch/pull/5617
648
+ module.weight.data.normal_(mean=0.0,
649
+ std=self.config.initializer_range)
650
+ elif isinstance(module, nn.LayerNorm):
651
+ module.bias.data.zero_()
652
+ module.weight.data.fill_(1.0)
653
+ if isinstance(module, nn.Linear) and module.bias is not None:
654
+ module.bias.data.zero_()
655
+
656
+
657
+ class BertModel(BertPreTrainedModel):
658
+ """
659
+ The model can behave as an encoder (with only self-attention) as well as a decoder, in which case a layer of
660
+ cross-attention is added between the self-attention layers, following the architecture described in `Attention is
661
+ all you need <https://arxiv.org/abs/1706.03762>`__ by Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,
662
+ Llion Jones, Aidan N. Gomez, Lukasz Kaiser and Illia Polosukhin.
663
+ argument and :obj:`add_cross_attention` set to :obj:`True`; an :obj:`encoder_hidden_states` is then expected as an
664
+ input to the forward pass.
665
+ """
666
+ def __init__(self, config, add_pooling_layer=False):
667
+ super().__init__(config)
668
+ self.config = config
669
+
670
+ self.embeddings = BertEmbeddings(config)
671
+
672
+ self.encoder = BertEncoder(config)
673
+
674
+ self.pooler = BertPooler(config) if add_pooling_layer else None
675
+
676
+ self.init_weights()
677
+
678
+ def get_input_embeddings(self):
679
+ return self.embeddings.word_embeddings
680
+
681
+ def set_input_embeddings(self, value):
682
+ self.embeddings.word_embeddings = value
683
+
684
+ def _prune_heads(self, heads_to_prune):
685
+ """
686
+ Prunes heads of the model. heads_to_prune: dict of {layer_num: list of heads to prune in this layer} See base
687
+ class PreTrainedModel
688
+ """
689
+ for layer, heads in heads_to_prune.items():
690
+ self.encoder.layer[layer].attention.prune_heads(heads)
691
+
692
+ def get_extended_attention_mask(
693
+ self,
694
+ attention_mask: Tensor,
695
+ input_shape: Tuple[int],
696
+ device: device,
697
+ is_decoder: bool,
698
+ has_query: bool = False,
699
+ ) -> Tensor:
700
+ """
701
+ Makes broadcastable attention and causal masks so that future and masked tokens are ignored.
702
+
703
+ Arguments:
704
+ attention_mask (:obj:`torch.Tensor`):
705
+ Mask with ones indicating tokens to attend to, zeros for tokens to ignore.
706
+ input_shape (:obj:`Tuple[int]`):
707
+ The shape of the input to the model.
708
+ device: (:obj:`torch.device`):
709
+ The device of the input to the model.
710
+
711
+ Returns:
712
+ :obj:`torch.Tensor` The extended attention mask, with a the same dtype as :obj:`attention_mask.dtype`.
713
+ """
714
+ # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length]
715
+ # ourselves in which case we just need to make it broadcastable to all heads.
716
+ if attention_mask.dim() == 3:
717
+ extended_attention_mask = attention_mask[:, None, :, :]
718
+ elif attention_mask.dim() == 2:
719
+ # Provided a padding mask of dimensions [batch_size, seq_length]
720
+ # - if the model is a decoder, apply a causal mask in addition to the padding mask
721
+ # - if the model is an encoder, make the mask broadcastable to [batch_size, num_heads, seq_length, seq_length]
722
+ if is_decoder:
723
+ batch_size, seq_length = input_shape
724
+
725
+ seq_ids = torch.arange(seq_length, device=device)
726
+ causal_mask = (seq_ids[None, None, :].repeat(
727
+ batch_size, seq_length, 1) <= seq_ids[None, :, None])
728
+
729
+ # add a prefix ones mask to the causal mask
730
+ # causal and attention masks must have same type with pytorch version < 1.3
731
+ causal_mask = causal_mask.to(attention_mask.dtype)
732
+
733
+ if causal_mask.shape[1] < attention_mask.shape[1]:
734
+ prefix_seq_len = attention_mask.shape[
735
+ 1] - causal_mask.shape[1]
736
+ if has_query: # UniLM style attention mask
737
+ causal_mask = torch.cat(
738
+ [
739
+ torch.zeros(
740
+ (batch_size, prefix_seq_len, seq_length),
741
+ device=device,
742
+ dtype=causal_mask.dtype,
743
+ ),
744
+ causal_mask,
745
+ ],
746
+ axis=1,
747
+ )
748
+ causal_mask = torch.cat(
749
+ [
750
+ torch.ones(
751
+ (batch_size, causal_mask.shape[1],
752
+ prefix_seq_len),
753
+ device=device,
754
+ dtype=causal_mask.dtype,
755
+ ),
756
+ causal_mask,
757
+ ],
758
+ axis=-1,
759
+ )
760
+ extended_attention_mask = (causal_mask[:, None, :, :] *
761
+ attention_mask[:, None, None, :])
762
+ else:
763
+ extended_attention_mask = attention_mask[:, None, None, :]
764
+ else:
765
+ raise ValueError(
766
+ "Wrong shape for input_ids (shape {}) or attention_mask (shape {})"
767
+ .format(input_shape, attention_mask.shape))
768
+
769
+ # Since attention_mask is 1.0 for positions we want to attend and 0.0 for
770
+ # masked positions, this operation will create a tensor which is 0.0 for
771
+ # positions we want to attend and -10000.0 for masked positions.
772
+ # Since we are adding it to the raw scores before the softmax, this is
773
+ # effectively the same as removing these entirely.
774
+ extended_attention_mask = extended_attention_mask.to(
775
+ dtype=self.dtype) # fp16 compatibility
776
+ extended_attention_mask = (1.0 - extended_attention_mask) * -10000.0
777
+ return extended_attention_mask
778
+
779
+ def forward(
780
+ self,
781
+ input_ids=None,
782
+ attention_mask=None,
783
+ position_ids=None,
784
+ head_mask=None,
785
+ query_embeds=None,
786
+ encoder_hidden_states=None,
787
+ encoder_attention_mask=None,
788
+ past_key_values=None,
789
+ use_cache=None,
790
+ output_attentions=None,
791
+ output_hidden_states=None,
792
+ return_dict=None,
793
+ is_decoder=False,
794
+ ):
795
+ r"""
796
+ encoder_hidden_states (:obj:`torch.FloatTensor` of shape :obj:`(batch_size, sequence_length, hidden_size)`, `optional`):
797
+ Sequence of hidden-states at the output of the last layer of the encoder. Used in the cross-attention if
798
+ the model is configured as a decoder.
799
+ encoder_attention_mask (:obj:`torch.FloatTensor` of shape :obj:`(batch_size, sequence_length)`, `optional`):
800
+ Mask to avoid performing attention on the padding token indices of the encoder input. This mask is used in
801
+ the cross-attention if the model is configured as a decoder. Mask values selected in ``[0, 1]``:
802
+ - 1 for tokens that are **not masked**,
803
+ - 0 for tokens that are **masked**.
804
+ past_key_values (:obj:`tuple(tuple(torch.FloatTensor))` of length :obj:`config.n_layers` with each tuple having 4 tensors of shape :obj:`(batch_size, num_heads, sequence_length - 1, embed_size_per_head)`):
805
+ Contains precomputed key and value hidden states of the attention blocks. Can be used to speed up decoding.
806
+ If :obj:`past_key_values` are used, the user can optionally input only the last :obj:`decoder_input_ids`
807
+ (those that don't have their past key value states given to this model) of shape :obj:`(batch_size, 1)`
808
+ instead of all :obj:`decoder_input_ids` of shape :obj:`(batch_size, sequence_length)`.
809
+ use_cache (:obj:`bool`, `optional`):
810
+ If set to :obj:`True`, :obj:`past_key_values` key value states are returned and can be used to speed up
811
+ decoding (see :obj:`past_key_values`).
812
+ """
813
+ output_attentions = (output_attentions if output_attentions is not None
814
+ else self.config.output_attentions)
815
+ output_hidden_states = (output_hidden_states
816
+ if output_hidden_states is not None else
817
+ self.config.output_hidden_states)
818
+ return_dict = (return_dict if return_dict is not None else
819
+ self.config.use_return_dict)
820
+
821
+ # use_cache = use_cache if use_cache is not None else self.config.use_cache
822
+
823
+ if input_ids is None:
824
+ assert (
825
+ query_embeds is not None
826
+ ), "You have to specify query_embeds when input_ids is None"
827
+
828
+ # past_key_values_length
829
+ past_key_values_length = (past_key_values[0][0].shape[2] -
830
+ self.config.query_length
831
+ if past_key_values is not None else 0)
832
+
833
+ query_length = query_embeds.shape[1] if query_embeds is not None else 0
834
+
835
+ embedding_output = self.embeddings(
836
+ input_ids=input_ids,
837
+ position_ids=position_ids,
838
+ query_embeds=query_embeds,
839
+ past_key_values_length=past_key_values_length,
840
+ )
841
+
842
+ input_shape = embedding_output.size()[:-1]
843
+ batch_size, seq_length = input_shape
844
+ device = embedding_output.device
845
+
846
+ if attention_mask is None:
847
+ attention_mask = torch.ones(
848
+ ((batch_size, seq_length + past_key_values_length)),
849
+ device=device)
850
+
851
+ # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length]
852
+ # ourselves in which case we just need to make it broadcastable to all heads.
853
+ if is_decoder:
854
+ extended_attention_mask = self.get_extended_attention_mask(
855
+ attention_mask,
856
+ input_ids.shape,
857
+ device,
858
+ is_decoder,
859
+ has_query=(query_embeds is not None),
860
+ )
861
+ else:
862
+ extended_attention_mask = self.get_extended_attention_mask(
863
+ attention_mask, input_shape, device, is_decoder)
864
+
865
+ # If a 2D or 3D attention mask is provided for the cross-attention
866
+ # we need to make broadcastable to [batch_size, num_heads, seq_length, seq_length]
867
+ if encoder_hidden_states is not None:
868
+ if type(encoder_hidden_states) == list:
869
+ encoder_batch_size, encoder_sequence_length, _ = encoder_hidden_states[
870
+ 0].size()
871
+ else:
872
+ (
873
+ encoder_batch_size,
874
+ encoder_sequence_length,
875
+ _,
876
+ ) = encoder_hidden_states.size()
877
+ encoder_hidden_shape = (encoder_batch_size,
878
+ encoder_sequence_length)
879
+
880
+ if type(encoder_attention_mask) == list:
881
+ encoder_extended_attention_mask = [
882
+ self.invert_attention_mask(mask)
883
+ for mask in encoder_attention_mask
884
+ ]
885
+ elif encoder_attention_mask is None:
886
+ encoder_attention_mask = torch.ones(encoder_hidden_shape,
887
+ device=device)
888
+ encoder_extended_attention_mask = self.invert_attention_mask(
889
+ encoder_attention_mask)
890
+ else:
891
+ encoder_extended_attention_mask = self.invert_attention_mask(
892
+ encoder_attention_mask)
893
+ else:
894
+ encoder_extended_attention_mask = None
895
+
896
+ # Prepare head mask if needed
897
+ # 1.0 in head_mask indicate we keep the head
898
+ # attention_probs has shape bsz x n_heads x N x N
899
+ # input head_mask has shape [num_heads] or [num_hidden_layers x num_heads]
900
+ # and head_mask is converted to shape [num_hidden_layers x batch x num_heads x seq_length x seq_length]
901
+ head_mask = self.get_head_mask(head_mask,
902
+ self.config.num_hidden_layers)
903
+
904
+ encoder_outputs = self.encoder(
905
+ embedding_output,
906
+ attention_mask=extended_attention_mask,
907
+ head_mask=head_mask,
908
+ encoder_hidden_states=encoder_hidden_states,
909
+ encoder_attention_mask=encoder_extended_attention_mask,
910
+ past_key_values=past_key_values,
911
+ use_cache=use_cache,
912
+ output_attentions=output_attentions,
913
+ output_hidden_states=output_hidden_states,
914
+ return_dict=return_dict,
915
+ query_length=query_length,
916
+ )
917
+ sequence_output = encoder_outputs[0]
918
+ pooled_output = (self.pooler(sequence_output)
919
+ if self.pooler is not None else None)
920
+
921
+ if not return_dict:
922
+ return (sequence_output, pooled_output) + encoder_outputs[1:]
923
+
924
+ return BaseModelOutputWithPoolingAndCrossAttentions(
925
+ last_hidden_state=sequence_output,
926
+ pooler_output=pooled_output,
927
+ past_key_values=encoder_outputs.past_key_values,
928
+ hidden_states=encoder_outputs.hidden_states,
929
+ attentions=encoder_outputs.attentions,
930
+ cross_attentions=encoder_outputs.cross_attentions,
931
+ )
932
+
933
+
934
+ class BertLMHeadModel(BertPreTrainedModel):
935
+
936
+ _keys_to_ignore_on_load_unexpected = [r"pooler"]
937
+ _keys_to_ignore_on_load_missing = [
938
+ r"position_ids", r"predictions.decoder.bias"
939
+ ]
940
+
941
+ def __init__(self, config):
942
+ super().__init__(config)
943
+
944
+ self.bert = BertModel(config, add_pooling_layer=False)
945
+ self.cls = BertOnlyMLMHead(config)
946
+
947
+ self.init_weights()
948
+
949
+ def get_output_embeddings(self):
950
+ return self.cls.predictions.decoder
951
+
952
+ def set_output_embeddings(self, new_embeddings):
953
+ self.cls.predictions.decoder = new_embeddings
954
+
955
+ def forward(
956
+ self,
957
+ input_ids=None,
958
+ attention_mask=None,
959
+ position_ids=None,
960
+ head_mask=None,
961
+ query_embeds=None,
962
+ encoder_hidden_states=None,
963
+ encoder_attention_mask=None,
964
+ labels=None,
965
+ past_key_values=None,
966
+ use_cache=True,
967
+ output_attentions=None,
968
+ output_hidden_states=None,
969
+ return_dict=None,
970
+ return_logits=False,
971
+ is_decoder=True,
972
+ reduction="mean",
973
+ ):
974
+ r"""
975
+ encoder_hidden_states (:obj:`torch.FloatTensor` of shape :obj:`(batch_size, sequence_length, hidden_size)`, `optional`):
976
+ Sequence of hidden-states at the output of the last layer of the encoder. Used in the cross-attention if
977
+ the model is configured as a decoder.
978
+ encoder_attention_mask (:obj:`torch.FloatTensor` of shape :obj:`(batch_size, sequence_length)`, `optional`):
979
+ Mask to avoid performing attention on the padding token indices of the encoder input. This mask is used in
980
+ the cross-attention if the model is configured as a decoder. Mask values selected in ``[0, 1]``:
981
+ - 1 for tokens that are **not masked**,
982
+ - 0 for tokens that are **masked**.
983
+ labels (:obj:`torch.LongTensor` of shape :obj:`(batch_size, sequence_length)`, `optional`):
984
+ Labels for computing the left-to-right language modeling loss (next word prediction). Indices should be in
985
+ ``[-100, 0, ..., config.vocab_size]`` (see ``input_ids`` docstring) Tokens with indices set to ``-100`` are
986
+ ignored (masked), the loss is only computed for the tokens with labels n ``[0, ..., config.vocab_size]``
987
+ past_key_values (:obj:`tuple(tuple(torch.FloatTensor))` of length :obj:`config.n_layers` with each tuple having 4 tensors of shape :obj:`(batch_size, num_heads, sequence_length - 1, embed_size_per_head)`):
988
+ Contains precomputed key and value hidden states of the attention blocks. Can be used to speed up decoding.
989
+ If :obj:`past_key_values` are used, the user can optionally input only the last :obj:`decoder_input_ids`
990
+ (those that don't have their past key value states given to this model) of shape :obj:`(batch_size, 1)`
991
+ instead of all :obj:`decoder_input_ids` of shape :obj:`(batch_size, sequence_length)`.
992
+ use_cache (:obj:`bool`, `optional`):
993
+ If set to :obj:`True`, :obj:`past_key_values` key value states are returned and can be used to speed up
994
+ decoding (see :obj:`past_key_values`).
995
+ Returns:
996
+ Example::
997
+ >>> from transformers import BertTokenizer, BertLMHeadModel, BertConfig
998
+ >>> import torch
999
+ >>> tokenizer = BertTokenizer.from_pretrained('bert-base-cased')
1000
+ >>> config = BertConfig.from_pretrained("bert-base-cased")
1001
+ >>> model = BertLMHeadModel.from_pretrained('bert-base-cased', config=config)
1002
+ >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
1003
+ >>> outputs = model(**inputs)
1004
+ >>> prediction_logits = outputs.logits
1005
+ """
1006
+ return_dict = (return_dict if return_dict is not None else
1007
+ self.config.use_return_dict)
1008
+ if labels is not None:
1009
+ use_cache = False
1010
+ if past_key_values is not None:
1011
+ query_embeds = None
1012
+
1013
+ outputs = self.bert(
1014
+ input_ids,
1015
+ attention_mask=attention_mask,
1016
+ position_ids=position_ids,
1017
+ head_mask=head_mask,
1018
+ query_embeds=query_embeds,
1019
+ encoder_hidden_states=encoder_hidden_states,
1020
+ encoder_attention_mask=encoder_attention_mask,
1021
+ past_key_values=past_key_values,
1022
+ use_cache=use_cache,
1023
+ output_attentions=output_attentions,
1024
+ output_hidden_states=output_hidden_states,
1025
+ return_dict=return_dict,
1026
+ is_decoder=is_decoder,
1027
+ )
1028
+
1029
+ sequence_output = outputs[0]
1030
+ if query_embeds is not None:
1031
+ sequence_output = outputs[0][:, query_embeds.shape[1]:, :]
1032
+
1033
+ prediction_scores = self.cls(sequence_output)
1034
+
1035
+ if return_logits:
1036
+ return prediction_scores[:, :-1, :].contiguous()
1037
+
1038
+ lm_loss = None
1039
+ if labels is not None:
1040
+ # we are doing next-token prediction; shift prediction scores and input ids by one
1041
+ shifted_prediction_scores = prediction_scores[:, :
1042
+ -1, :].contiguous()
1043
+ labels = labels[:, 1:].contiguous()
1044
+ loss_fct = CrossEntropyLoss(reduction=reduction,
1045
+ label_smoothing=0.1)
1046
+ lm_loss = loss_fct(
1047
+ shifted_prediction_scores.view(-1, self.config.vocab_size),
1048
+ labels.view(-1),
1049
+ )
1050
+ if reduction == "none":
1051
+ lm_loss = lm_loss.view(prediction_scores.size(0), -1).sum(1)
1052
+
1053
+ if not return_dict:
1054
+ output = (prediction_scores, ) + outputs[2:]
1055
+ return ((lm_loss, ) + output) if lm_loss is not None else output
1056
+
1057
+ return CausalLMOutputWithCrossAttentions(
1058
+ loss=lm_loss,
1059
+ logits=prediction_scores,
1060
+ past_key_values=outputs.past_key_values,
1061
+ hidden_states=outputs.hidden_states,
1062
+ attentions=outputs.attentions,
1063
+ cross_attentions=outputs.cross_attentions,
1064
+ )
1065
+
1066
+ def prepare_inputs_for_generation(self,
1067
+ input_ids,
1068
+ query_embeds,
1069
+ past=None,
1070
+ attention_mask=None,
1071
+ **model_kwargs):
1072
+ # if model is used as a decoder in encoder-decoder model, the decoder attention mask is created on the fly
1073
+ if attention_mask is None:
1074
+ attention_mask = input_ids.new_ones(input_ids.shape)
1075
+ query_mask = input_ids.new_ones(query_embeds.shape[:-1])
1076
+ attention_mask = torch.cat([query_mask, attention_mask], dim=-1)
1077
+
1078
+ # cut decoder_input_ids if past is used
1079
+ if past is not None:
1080
+ input_ids = input_ids[:, -1:]
1081
+
1082
+ return {
1083
+ "input_ids":
1084
+ input_ids,
1085
+ "query_embeds":
1086
+ query_embeds,
1087
+ "attention_mask":
1088
+ attention_mask,
1089
+ "past_key_values":
1090
+ past,
1091
+ "encoder_hidden_states":
1092
+ model_kwargs.get("encoder_hidden_states", None),
1093
+ "encoder_attention_mask":
1094
+ model_kwargs.get("encoder_attention_mask", None),
1095
+ "is_decoder":
1096
+ True,
1097
+ }
1098
+
1099
+ def _reorder_cache(self, past, beam_idx):
1100
+ reordered_past = ()
1101
+ for layer_past in past:
1102
+ reordered_past += (tuple(
1103
+ past_state.index_select(0, beam_idx)
1104
+ for past_state in layer_past), )
1105
+ return reordered_past
1106
+
1107
+
1108
+ class BertForMaskedLM(BertPreTrainedModel):
1109
+
1110
+ _keys_to_ignore_on_load_unexpected = [r"pooler"]
1111
+ _keys_to_ignore_on_load_missing = [
1112
+ r"position_ids", r"predictions.decoder.bias"
1113
+ ]
1114
+
1115
+ def __init__(self, config):
1116
+ super().__init__(config)
1117
+
1118
+ self.bert = BertModel(config, add_pooling_layer=False)
1119
+ self.cls = BertOnlyMLMHead(config)
1120
+
1121
+ self.init_weights()
1122
+
1123
+ def get_output_embeddings(self):
1124
+ return self.cls.predictions.decoder
1125
+
1126
+ def set_output_embeddings(self, new_embeddings):
1127
+ self.cls.predictions.decoder = new_embeddings
1128
+
1129
+ def forward(
1130
+ self,
1131
+ input_ids=None,
1132
+ attention_mask=None,
1133
+ position_ids=None,
1134
+ head_mask=None,
1135
+ query_embeds=None,
1136
+ encoder_hidden_states=None,
1137
+ encoder_attention_mask=None,
1138
+ labels=None,
1139
+ output_attentions=None,
1140
+ output_hidden_states=None,
1141
+ return_dict=None,
1142
+ return_logits=False,
1143
+ is_decoder=False,
1144
+ ):
1145
+ r"""
1146
+ labels (:obj:`torch.LongTensor` of shape :obj:`(batch_size, sequence_length)`, `optional`):
1147
+ Labels for computing the masked language modeling loss. Indices should be in ``[-100, 0, ...,
1148
+ config.vocab_size]`` (see ``input_ids`` docstring) Tokens with indices set to ``-100`` are ignored
1149
+ (masked), the loss is only computed for the tokens with labels in ``[0, ..., config.vocab_size]``
1150
+ """
1151
+
1152
+ return_dict = (return_dict if return_dict is not None else
1153
+ self.config.use_return_dict)
1154
+
1155
+ outputs = self.bert(
1156
+ input_ids,
1157
+ attention_mask=attention_mask,
1158
+ position_ids=position_ids,
1159
+ head_mask=head_mask,
1160
+ query_embeds=query_embeds,
1161
+ encoder_hidden_states=encoder_hidden_states,
1162
+ encoder_attention_mask=encoder_attention_mask,
1163
+ output_attentions=output_attentions,
1164
+ output_hidden_states=output_hidden_states,
1165
+ return_dict=return_dict,
1166
+ is_decoder=is_decoder,
1167
+ )
1168
+
1169
+ if query_embeds is not None:
1170
+ sequence_output = outputs[0][:, query_embeds.shape[1]:, :]
1171
+ prediction_scores = self.cls(sequence_output)
1172
+
1173
+ if return_logits:
1174
+ return prediction_scores
1175
+
1176
+ masked_lm_loss = None
1177
+ if labels is not None:
1178
+ loss_fct = CrossEntropyLoss() # -100 index = padding token
1179
+ masked_lm_loss = loss_fct(
1180
+ prediction_scores.view(-1, self.config.vocab_size),
1181
+ labels.view(-1))
1182
+
1183
+ if not return_dict:
1184
+ output = (prediction_scores, ) + outputs[2:]
1185
+ return (((masked_lm_loss, ) +
1186
+ output) if masked_lm_loss is not None else output)
1187
+
1188
+ return MaskedLMOutput(
1189
+ loss=masked_lm_loss,
1190
+ logits=prediction_scores,
1191
+ hidden_states=outputs.hidden_states,
1192
+ attentions=outputs.attentions,
1193
+ )
modeling_utils.py ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import math
3
+ import os
4
+ from contextlib import contextmanager
5
+
6
+ import timm.models.hub as timm_hub
7
+ import torch
8
+ import torch.distributed as dist
9
+ import torch.nn as nn
10
+
11
+
12
+ def is_dist_avail_and_initialized():
13
+ if not dist.is_available():
14
+ return False
15
+ if not dist.is_initialized():
16
+ return False
17
+ return True
18
+
19
+
20
+ def get_rank():
21
+ if not is_dist_avail_and_initialized():
22
+ return 0
23
+ return dist.get_rank()
24
+
25
+
26
+ def is_main_process():
27
+ return get_rank() == 0
28
+
29
+
30
+ def download_cached_file(url, check_hash=True, progress=False):
31
+ """
32
+ Download a file from a URL and cache it locally. If the file already exists, it is not downloaded again.
33
+ If distributed, only the main process downloads the file, and the other processes wait for the file to be downloaded.
34
+ """
35
+ def get_cached_file_path():
36
+ # a hack to sync the file path across processes
37
+ parts = torch.hub.urlparse(url)
38
+ filename = os.path.basename(parts.path)
39
+ cached_file = os.path.join(timm_hub.get_cache_dir(), filename)
40
+
41
+ return cached_file
42
+
43
+ if is_main_process():
44
+ timm_hub.download_cached_file(url, check_hash, progress)
45
+
46
+ if is_dist_avail_and_initialized():
47
+ dist.barrier()
48
+
49
+ return get_cached_file_path()
50
+
51
+
52
+ @contextmanager
53
+ def all_logging_disabled(highest_level=logging.CRITICAL):
54
+ """
55
+ A context manager that will prevent any logging messages
56
+ triggered during the body from being processed.
57
+ :param highest_level: the maximum logging level in use.
58
+ This would only need to be changed if a custom level greater than CRITICAL
59
+ is defined.
60
+ """
61
+ # two kind-of hacks here:
62
+ # * can't get the highest logging level in effect => delegate to the user
63
+ # * can't get the current module-level override => use an undocumented
64
+ # (but non-private!) interface
65
+
66
+ previous_level = logging.root.manager.disable
67
+
68
+ logging.disable(highest_level)
69
+
70
+ try:
71
+ yield
72
+ finally:
73
+ logging.disable(previous_level)
74
+
75
+
76
+ class LoRALinear(nn.Linear):
77
+ def __init__(self,
78
+ in_features: int,
79
+ out_features: int,
80
+ bias: bool = True,
81
+ device=None,
82
+ dtype=None,
83
+ lora_r=8,
84
+ lora_alpha=16,
85
+ lora_dropout=0.05,
86
+ **kwargs) -> None:
87
+ super().__init__(in_features, out_features, bias, device, dtype)
88
+ self.lora_r = lora_r
89
+ self.lora_alpha = lora_alpha
90
+ if lora_dropout > 0.:
91
+ self.lora_dropout = nn.Dropout(p=lora_dropout)
92
+ else:
93
+ self.lora_dropout = lambda x: x
94
+ self.lora_scaling = self.lora_alpha / self.lora_r
95
+
96
+ self.lora_A = nn.Linear(in_features,
97
+ self.lora_r,
98
+ bias=False,
99
+ device=device,
100
+ dtype=dtype)
101
+ self.lora_B = nn.Linear(self.lora_r,
102
+ out_features,
103
+ bias=False,
104
+ device=device,
105
+ dtype=dtype)
106
+
107
+ self.reset_parameters()
108
+
109
+ def reset_parameters(self):
110
+ if hasattr(self, 'lora_A'):
111
+ # initialize A the same way as the default for nn.Linear and B to zero
112
+ nn.init.kaiming_uniform_(self.lora_A.weight, a=math.sqrt(5))
113
+ nn.init.zeros_(self.lora_B.weight)
114
+ #print ("lora weight init {} {}".format(torch.mean(self.lora_A.weight), torch.mean(self.lora_B.weight)))
115
+
116
+ def forward(self, x):
117
+ orig_type = x.dtype
118
+ res = super().forward(x)
119
+ x = x.float()
120
+ res += self.lora_B(self.lora_A(
121
+ self.lora_dropout(x))) * self.lora_scaling
122
+ return res.to(orig_type)
modeling_vit.py ADDED
@@ -0,0 +1,535 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import math
2
+ from functools import partial
3
+
4
+ import torch
5
+ import torch.nn as nn
6
+ import torch.nn.functional as F
7
+ import torch.utils.checkpoint as checkpoint
8
+ from timm.models.layers import drop_path, to_2tuple, trunc_normal_
9
+
10
+ from .modeling_utils import download_cached_file
11
+
12
+
13
+ def _cfg(url='', **kwargs):
14
+ return {
15
+ 'url': url,
16
+ 'num_classes': 1000,
17
+ 'input_size': (3, 224, 224),
18
+ 'pool_size': None,
19
+ 'crop_pct': .9,
20
+ 'interpolation': 'bicubic',
21
+ 'mean': (0.5, 0.5, 0.5),
22
+ 'std': (0.5, 0.5, 0.5),
23
+ **kwargs
24
+ }
25
+
26
+
27
+ class DropPath(nn.Module):
28
+ """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks).
29
+ """
30
+ def __init__(self, drop_prob=None):
31
+ super(DropPath, self).__init__()
32
+ self.drop_prob = drop_prob
33
+
34
+ def forward(self, x):
35
+ return drop_path(x, self.drop_prob, self.training)
36
+
37
+ def extra_repr(self) -> str:
38
+ return 'p={}'.format(self.drop_prob)
39
+
40
+
41
+ class Mlp(nn.Module):
42
+ def __init__(self,
43
+ in_features,
44
+ hidden_features=None,
45
+ out_features=None,
46
+ act_layer=nn.GELU,
47
+ drop=0.):
48
+ super().__init__()
49
+ out_features = out_features or in_features
50
+ hidden_features = hidden_features or in_features
51
+ self.fc1 = nn.Linear(in_features, hidden_features)
52
+ self.act = act_layer()
53
+ self.fc2 = nn.Linear(hidden_features, out_features)
54
+ self.drop = nn.Dropout(drop)
55
+
56
+ def forward(self, x):
57
+ x = self.fc1(x)
58
+ x = self.act(x)
59
+ # x = self.drop(x)
60
+ # commit this for the orignal BERT implement
61
+ x = self.fc2(x)
62
+ x = self.drop(x)
63
+ return x
64
+
65
+
66
+ class Attention(nn.Module):
67
+ def __init__(self,
68
+ dim,
69
+ num_heads=8,
70
+ qkv_bias=False,
71
+ qk_scale=None,
72
+ attn_drop=0.,
73
+ proj_drop=0.,
74
+ window_size=None,
75
+ attn_head_dim=None):
76
+ super().__init__()
77
+ self.num_heads = num_heads
78
+ head_dim = dim // num_heads
79
+ if attn_head_dim is not None:
80
+ head_dim = attn_head_dim
81
+ all_head_dim = head_dim * self.num_heads
82
+ self.scale = qk_scale or head_dim**-0.5
83
+
84
+ self.qkv = nn.Linear(dim, all_head_dim * 3, bias=False)
85
+ if qkv_bias:
86
+ self.q_bias = nn.Parameter(torch.zeros(all_head_dim))
87
+ self.v_bias = nn.Parameter(torch.zeros(all_head_dim))
88
+ else:
89
+ self.q_bias = None
90
+ self.v_bias = None
91
+
92
+ if window_size:
93
+ self.window_size = window_size
94
+ self.num_relative_distance = (2 * window_size[0] -
95
+ 1) * (2 * window_size[1] - 1) + 3
96
+ self.relative_position_bias_table = nn.Parameter(
97
+ torch.zeros(self.num_relative_distance,
98
+ num_heads)) # 2*Wh-1 * 2*Ww-1, nH
99
+ # cls to token & token 2 cls & cls to cls
100
+
101
+ # get pair-wise relative position index for each token inside the window
102
+ coords_h = torch.arange(window_size[0])
103
+ coords_w = torch.arange(window_size[1])
104
+ coords = torch.stack(torch.meshgrid([coords_h,
105
+ coords_w])) # 2, Wh, Ww
106
+ coords_flatten = torch.flatten(coords, 1) # 2, Wh*Ww
107
+ relative_coords = coords_flatten[:, :,
108
+ None] - coords_flatten[:,
109
+ None, :] # 2, Wh*Ww, Wh*Ww
110
+ relative_coords = relative_coords.permute(
111
+ 1, 2, 0).contiguous() # Wh*Ww, Wh*Ww, 2
112
+ relative_coords[:, :,
113
+ 0] += window_size[0] - 1 # shift to start from 0
114
+ relative_coords[:, :, 1] += window_size[1] - 1
115
+ relative_coords[:, :, 0] *= 2 * window_size[1] - 1
116
+ relative_position_index = \
117
+ torch.zeros(size=(window_size[0] * window_size[1] + 1, ) * 2, dtype=relative_coords.dtype)
118
+ relative_position_index[1:, 1:] = relative_coords.sum(
119
+ -1) # Wh*Ww, Wh*Ww
120
+ relative_position_index[0, 0:] = self.num_relative_distance - 3
121
+ relative_position_index[0:, 0] = self.num_relative_distance - 2
122
+ relative_position_index[0, 0] = self.num_relative_distance - 1
123
+
124
+ self.register_buffer("relative_position_index",
125
+ relative_position_index)
126
+ else:
127
+ self.window_size = None
128
+ self.relative_position_bias_table = None
129
+ self.relative_position_index = None
130
+
131
+ self.attn_drop = nn.Dropout(attn_drop)
132
+ self.proj = nn.Linear(all_head_dim, dim)
133
+ self.proj_drop = nn.Dropout(proj_drop)
134
+
135
+ def forward(self, x, rel_pos_bias=None):
136
+ B, N, C = x.shape
137
+ qkv_bias = None
138
+ if self.q_bias is not None:
139
+ qkv_bias = torch.cat(
140
+ (self.q_bias, torch.zeros_like(self.v_bias,
141
+ requires_grad=False),
142
+ self.v_bias))
143
+ # qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4)
144
+ qkv = F.linear(input=x, weight=self.qkv.weight, bias=qkv_bias)
145
+ qkv = qkv.reshape(B, N, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4)
146
+ q, k, v = qkv[0], qkv[1], qkv[
147
+ 2] # make torchscript happy (cannot use tensor as tuple)
148
+
149
+ q = q * self.scale
150
+ attn = (q @ k.transpose(-2, -1))
151
+
152
+ if self.relative_position_bias_table is not None:
153
+ relative_position_bias = \
154
+ self.relative_position_bias_table[self.relative_position_index.view(-1)].view(
155
+ self.window_size[0] * self.window_size[1] + 1,
156
+ self.window_size[0] * self.window_size[1] + 1, -1) # Wh*Ww,Wh*Ww,nH
157
+ relative_position_bias = relative_position_bias.permute(
158
+ 2, 0, 1).contiguous() # nH, Wh*Ww, Wh*Ww
159
+ attn = attn + relative_position_bias.unsqueeze(0)
160
+
161
+ if rel_pos_bias is not None:
162
+ attn = attn + rel_pos_bias
163
+
164
+ attn = attn.softmax(dim=-1)
165
+ attn = self.attn_drop(attn)
166
+
167
+ x = (attn @ v).transpose(1, 2).reshape(B, N, -1)
168
+ x = self.proj(x)
169
+ x = self.proj_drop(x)
170
+ return x
171
+
172
+
173
+ class Block(nn.Module):
174
+ def __init__(self,
175
+ dim,
176
+ num_heads,
177
+ mlp_ratio=4.,
178
+ qkv_bias=False,
179
+ qk_scale=None,
180
+ drop=0.,
181
+ attn_drop=0.,
182
+ drop_path=0.,
183
+ init_values=None,
184
+ act_layer=nn.GELU,
185
+ norm_layer=nn.LayerNorm,
186
+ window_size=None,
187
+ attn_head_dim=None):
188
+ super().__init__()
189
+ self.norm1 = norm_layer(dim)
190
+ self.attn = Attention(dim,
191
+ num_heads=num_heads,
192
+ qkv_bias=qkv_bias,
193
+ qk_scale=qk_scale,
194
+ attn_drop=attn_drop,
195
+ proj_drop=drop,
196
+ window_size=window_size,
197
+ attn_head_dim=attn_head_dim)
198
+ # NOTE: drop path for stochastic depth, we shall see if this is better than dropout here
199
+ self.drop_path = DropPath(
200
+ drop_path) if drop_path > 0. else nn.Identity()
201
+ self.norm2 = norm_layer(dim)
202
+ mlp_hidden_dim = int(dim * mlp_ratio)
203
+ self.mlp = Mlp(in_features=dim,
204
+ hidden_features=mlp_hidden_dim,
205
+ act_layer=act_layer,
206
+ drop=drop)
207
+
208
+ if init_values is not None and init_values > 0:
209
+ self.gamma_1 = nn.Parameter(init_values * torch.ones((dim)),
210
+ requires_grad=True)
211
+ self.gamma_2 = nn.Parameter(init_values * torch.ones((dim)),
212
+ requires_grad=True)
213
+ else:
214
+ self.gamma_1, self.gamma_2 = None, None
215
+
216
+ def forward(self, x, rel_pos_bias=None):
217
+ if self.gamma_1 is None:
218
+ x = x + self.drop_path(
219
+ self.attn(self.norm1(x), rel_pos_bias=rel_pos_bias))
220
+ x = x + self.drop_path(self.mlp(self.norm2(x)))
221
+ else:
222
+ x = x + self.drop_path(self.gamma_1 * self.attn(
223
+ self.norm1(x), rel_pos_bias=rel_pos_bias))
224
+ x = x + self.drop_path(self.gamma_2 * self.mlp(self.norm2(x)))
225
+ return x
226
+
227
+
228
+ class PatchEmbed(nn.Module):
229
+ """ Image to Patch Embedding
230
+ """
231
+ def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):
232
+ super().__init__()
233
+ img_size = to_2tuple(img_size)
234
+ patch_size = to_2tuple(patch_size)
235
+ num_patches = (img_size[1] // patch_size[1]) * (img_size[0] //
236
+ patch_size[0])
237
+ self.patch_shape = (img_size[0] // patch_size[0],
238
+ img_size[1] // patch_size[1])
239
+ self.img_size = img_size
240
+ self.patch_size = patch_size
241
+ self.num_patches = num_patches
242
+
243
+ self.proj = nn.Conv2d(in_chans,
244
+ embed_dim,
245
+ kernel_size=patch_size,
246
+ stride=patch_size)
247
+
248
+ def forward(self, x, **kwargs):
249
+ B, C, H, W = x.shape
250
+ # FIXME look at relaxing size constraints
251
+ assert H == self.img_size[0] and W == self.img_size[1], \
252
+ f"Input image size ({H}*{W}) doesn't match model ({self.img_size[0]}*{self.img_size[1]})."
253
+ x = self.proj(x).flatten(2).transpose(1, 2)
254
+ return x
255
+
256
+
257
+ class RelativePositionBias(nn.Module):
258
+ def __init__(self, window_size, num_heads):
259
+ super().__init__()
260
+ self.window_size = window_size
261
+ self.num_relative_distance = (2 * window_size[0] -
262
+ 1) * (2 * window_size[1] - 1) + 3
263
+ self.relative_position_bias_table = nn.Parameter(
264
+ torch.zeros(self.num_relative_distance,
265
+ num_heads)) # 2*Wh-1 * 2*Ww-1, nH
266
+ # cls to token & token 2 cls & cls to cls
267
+
268
+ # get pair-wise relative position index for each token inside the window
269
+ coords_h = torch.arange(window_size[0])
270
+ coords_w = torch.arange(window_size[1])
271
+ coords = torch.stack(torch.meshgrid([coords_h, coords_w])) # 2, Wh, Ww
272
+ coords_flatten = torch.flatten(coords, 1) # 2, Wh*Ww
273
+ relative_coords = coords_flatten[:, :,
274
+ None] - coords_flatten[:,
275
+ None, :] # 2, Wh*Ww, Wh*Ww
276
+ relative_coords = relative_coords.permute(
277
+ 1, 2, 0).contiguous() # Wh*Ww, Wh*Ww, 2
278
+ relative_coords[:, :, 0] += window_size[0] - 1 # shift to start from 0
279
+ relative_coords[:, :, 1] += window_size[1] - 1
280
+ relative_coords[:, :, 0] *= 2 * window_size[1] - 1
281
+ relative_position_index = \
282
+ torch.zeros(size=(window_size[0] * window_size[1] + 1,) * 2, dtype=relative_coords.dtype)
283
+ relative_position_index[1:,
284
+ 1:] = relative_coords.sum(-1) # Wh*Ww, Wh*Ww
285
+ relative_position_index[0, 0:] = self.num_relative_distance - 3
286
+ relative_position_index[0:, 0] = self.num_relative_distance - 2
287
+ relative_position_index[0, 0] = self.num_relative_distance - 1
288
+
289
+ self.register_buffer("relative_position_index",
290
+ relative_position_index)
291
+
292
+ # trunc_normal_(self.relative_position_bias_table, std=.02)
293
+
294
+ def forward(self):
295
+ relative_position_bias = \
296
+ self.relative_position_bias_table[self.relative_position_index.view(-1)].view(
297
+ self.window_size[0] * self.window_size[1] + 1,
298
+ self.window_size[0] * self.window_size[1] + 1, -1) # Wh*Ww,Wh*Ww,nH
299
+ return relative_position_bias.permute(
300
+ 2, 0, 1).contiguous() # nH, Wh*Ww, Wh*Ww
301
+
302
+
303
+ class VisionTransformer(nn.Module):
304
+ """ Vision Transformer with support for patch or hybrid CNN input stage
305
+ """
306
+ def __init__(self,
307
+ img_size=224,
308
+ patch_size=16,
309
+ in_chans=3,
310
+ num_classes=1000,
311
+ embed_dim=768,
312
+ depth=12,
313
+ num_heads=12,
314
+ mlp_ratio=4.,
315
+ qkv_bias=False,
316
+ qk_scale=None,
317
+ drop_rate=0.,
318
+ attn_drop_rate=0.,
319
+ drop_path_rate=0.,
320
+ norm_layer=nn.LayerNorm,
321
+ init_values=None,
322
+ use_abs_pos_emb=True,
323
+ use_rel_pos_bias=False,
324
+ use_shared_rel_pos_bias=False,
325
+ use_mean_pooling=True,
326
+ init_scale=0.001,
327
+ use_checkpoint=False):
328
+ super().__init__()
329
+ self.image_size = img_size
330
+ self.num_classes = num_classes
331
+ self.num_features = self.embed_dim = embed_dim # num_features for consistency with other models
332
+
333
+ self.patch_embed = PatchEmbed(img_size=img_size,
334
+ patch_size=patch_size,
335
+ in_chans=in_chans,
336
+ embed_dim=embed_dim)
337
+ num_patches = self.patch_embed.num_patches
338
+
339
+ self.cls_token = nn.Parameter(torch.zeros(1, 1, embed_dim))
340
+ if use_abs_pos_emb:
341
+ self.pos_embed = nn.Parameter(
342
+ torch.zeros(1, num_patches + 1, embed_dim))
343
+ else:
344
+ self.pos_embed = None
345
+ self.pos_drop = nn.Dropout(p=drop_rate)
346
+
347
+ if use_shared_rel_pos_bias:
348
+ self.rel_pos_bias = RelativePositionBias(
349
+ window_size=self.patch_embed.patch_shape, num_heads=num_heads)
350
+ else:
351
+ self.rel_pos_bias = None
352
+ self.use_checkpoint = use_checkpoint
353
+
354
+ dpr = [x.item() for x in torch.linspace(0, drop_path_rate, depth)
355
+ ] # stochastic depth decay rule
356
+ self.use_rel_pos_bias = use_rel_pos_bias
357
+ self.blocks = nn.ModuleList([
358
+ Block(dim=embed_dim,
359
+ num_heads=num_heads,
360
+ mlp_ratio=mlp_ratio,
361
+ qkv_bias=qkv_bias,
362
+ qk_scale=qk_scale,
363
+ drop=drop_rate,
364
+ attn_drop=attn_drop_rate,
365
+ drop_path=dpr[i],
366
+ norm_layer=norm_layer,
367
+ init_values=init_values,
368
+ window_size=self.patch_embed.patch_shape
369
+ if use_rel_pos_bias else None) for i in range(depth)
370
+ ])
371
+
372
+ if self.pos_embed is not None:
373
+ trunc_normal_(self.pos_embed, std=.02)
374
+ trunc_normal_(self.cls_token, std=.02)
375
+ self.apply(self._init_weights)
376
+ self.fix_init_weight()
377
+
378
+ def fix_init_weight(self):
379
+ def rescale(param, layer_id):
380
+ param.div_(math.sqrt(2.0 * layer_id))
381
+
382
+ for layer_id, layer in enumerate(self.blocks):
383
+ rescale(layer.attn.proj.weight.data, layer_id + 1)
384
+ rescale(layer.mlp.fc2.weight.data, layer_id + 1)
385
+
386
+ def _init_weights(self, m):
387
+ if isinstance(m, nn.Linear):
388
+ trunc_normal_(m.weight, std=.02)
389
+ if isinstance(m, nn.Linear) and m.bias is not None:
390
+ nn.init.constant_(m.bias, 0)
391
+ elif isinstance(m, nn.LayerNorm):
392
+ nn.init.constant_(m.bias, 0)
393
+ nn.init.constant_(m.weight, 1.0)
394
+
395
+ def get_classifier(self):
396
+ return self.head
397
+
398
+ def reset_classifier(self, num_classes, global_pool=''):
399
+ self.num_classes = num_classes
400
+ self.head = nn.Linear(
401
+ self.embed_dim, num_classes) if num_classes > 0 else nn.Identity()
402
+
403
+ def forward_features(self, x):
404
+ x = self.patch_embed(x)
405
+ batch_size, seq_len, _ = x.size()
406
+
407
+ cls_tokens = self.cls_token.expand(
408
+ batch_size, -1, -1) # stole cls_tokens impl from Phil Wang, thanks
409
+ x = torch.cat((cls_tokens, x), dim=1)
410
+ if self.pos_embed is not None:
411
+ x = x + self.pos_embed
412
+ x = self.pos_drop(x)
413
+
414
+ rel_pos_bias = self.rel_pos_bias(
415
+ ) if self.rel_pos_bias is not None else None
416
+ for blk in self.blocks:
417
+ if self.use_checkpoint:
418
+ x = checkpoint.checkpoint(blk, x, rel_pos_bias)
419
+ else:
420
+ x = blk(x, rel_pos_bias)
421
+ return x
422
+
423
+ def forward(self, x):
424
+ x = self.forward_features(x)
425
+ # x = self.head(x)
426
+ return x
427
+
428
+ def get_intermediate_layers(self, x):
429
+ x = self.patch_embed(x)
430
+ batch_size, seq_len, _ = x.size()
431
+
432
+ cls_tokens = self.cls_token.expand(
433
+ batch_size, -1, -1) # stole cls_tokens impl from Phil Wang, thanks
434
+ x = torch.cat((cls_tokens, x), dim=1)
435
+ if self.pos_embed is not None:
436
+ x = x + self.pos_embed
437
+ x = self.pos_drop(x)
438
+
439
+ features = []
440
+ rel_pos_bias = self.rel_pos_bias(
441
+ ) if self.rel_pos_bias is not None else None
442
+ for blk in self.blocks:
443
+ x = blk(x, rel_pos_bias)
444
+ features.append(x)
445
+
446
+ return features
447
+
448
+
449
+ def interpolate_pos_embed(model, checkpoint_model):
450
+ if 'pos_embed' in checkpoint_model:
451
+ pos_embed_checkpoint = checkpoint_model['pos_embed'].float()
452
+ embedding_size = pos_embed_checkpoint.shape[-1]
453
+ num_patches = model.patch_embed.num_patches
454
+ num_extra_tokens = model.pos_embed.shape[-2] - num_patches
455
+ # height (== width) for the checkpoint position embedding
456
+ orig_size = int(
457
+ (pos_embed_checkpoint.shape[-2] - num_extra_tokens)**0.5)
458
+ # height (== width) for the new position embedding
459
+ new_size = int(num_patches**0.5)
460
+ # class_token and dist_token are kept unchanged
461
+ if orig_size != new_size:
462
+ print("Position interpolate from %dx%d to %dx%d" %
463
+ (orig_size, orig_size, new_size, new_size))
464
+ extra_tokens = pos_embed_checkpoint[:, :num_extra_tokens]
465
+ # only the position tokens are interpolated
466
+ pos_tokens = pos_embed_checkpoint[:, num_extra_tokens:]
467
+ pos_tokens = pos_tokens.reshape(-1, orig_size, orig_size,
468
+ embedding_size).permute(
469
+ 0, 3, 1, 2)
470
+ pos_tokens = torch.nn.functional.interpolate(pos_tokens,
471
+ size=(new_size,
472
+ new_size),
473
+ mode='bicubic',
474
+ align_corners=False)
475
+ pos_tokens = pos_tokens.permute(0, 2, 3, 1).flatten(1, 2)
476
+ new_pos_embed = torch.cat((extra_tokens, pos_tokens), dim=1)
477
+ checkpoint_model['pos_embed'] = new_pos_embed
478
+
479
+
480
+ def convert_weights_to_fp16(model: nn.Module):
481
+ """Convert applicable model parameters to fp16"""
482
+ def _convert_weights_to_fp16(l):
483
+ if isinstance(l, (nn.Conv1d, nn.Conv2d, nn.Linear)):
484
+ l.weight.data = l.weight.data.half()
485
+ if l.bias is not None:
486
+ l.bias.data = l.bias.data.half()
487
+
488
+ model.apply(_convert_weights_to_fp16)
489
+
490
+
491
+ def convert_weights_to_fp32(model: nn.Module):
492
+ """Convert applicable model parameters to fp16"""
493
+ def _convert_weights_to_fp32(l):
494
+ if hasattr(l, 'weight') and l.weight is not None:
495
+ if l.weight.dtype == torch.float16:
496
+ l.weight = l.weight.to(torch.float32)
497
+ if hasattr(l, 'bias') and l.bias is not None:
498
+ if l.bias.dtype == torch.float16:
499
+ l.bias = l.bias.to(torch.float32)
500
+
501
+ model.apply(_convert_weights_to_fp32)
502
+
503
+
504
+ def create_eva_vit_g(img_size=224,
505
+ drop_path_rate=0.4,
506
+ use_checkpoint=False,
507
+ precision="fp16"):
508
+ model = VisionTransformer(
509
+ img_size=img_size,
510
+ patch_size=14,
511
+ use_mean_pooling=False,
512
+ embed_dim=1408,
513
+ depth=39,
514
+ num_heads=1408 // 88,
515
+ mlp_ratio=4.3637,
516
+ qkv_bias=True,
517
+ drop_path_rate=drop_path_rate,
518
+ norm_layer=partial(nn.LayerNorm, eps=1e-6),
519
+ use_checkpoint=use_checkpoint,
520
+ )
521
+ # url = "https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/eva_vit_g.pth"
522
+ # cached_file = download_cached_file(url, check_hash=False, progress=True)
523
+ # state_dict = torch.load(cached_file, map_location="cpu")
524
+ # interpolate_pos_embed(model, state_dict)
525
+ #
526
+ # incompatible_keys = model.load_state_dict(state_dict, strict=False)
527
+
528
+ if precision == "fp16":
529
+ convert_weights_to_fp16(model)
530
+
531
+ if precision == "fp32":
532
+ print('convert ViT weights to fp32')
533
+ convert_weights_to_fp32(model)
534
+
535
+ return model
pytorch_model.bin.index.json ADDED
The diff for this file is too large to render. See raw diff
 
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_XComposer.py ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ from transformers.tokenization_utils import PreTrainedTokenizer
28
+ from transformers.utils import logging
29
+
30
+ logger = logging.get_logger(__name__)
31
+
32
+ VOCAB_FILES_NAMES = {"vocab_file": "./tokenizer.model"}
33
+
34
+ PRETRAINED_VOCAB_FILES_MAP = {}
35
+
36
+
37
+ class InternLMXComposerTokenizer(PreTrainedTokenizer):
38
+ """
39
+ Construct a InternLM tokenizer. Based on byte-level Byte-Pair-Encoding.
40
+
41
+ Args:
42
+ vocab_file (`str`):
43
+ Path to the vocabulary file.
44
+ """
45
+
46
+ vocab_files_names = VOCAB_FILES_NAMES
47
+ pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
48
+ model_input_names = ["input_ids", "attention_mask"]
49
+ _auto_class = "AutoTokenizer"
50
+
51
+ def __init__(
52
+ self,
53
+ vocab_file,
54
+ unk_token="<unk>",
55
+ bos_token="<s>",
56
+ eos_token="</s>",
57
+ pad_token="</s>",
58
+ sp_model_kwargs: Optional[Dict[str, Any]] = None,
59
+ add_bos_token=True,
60
+ add_eos_token=False,
61
+ decode_with_prefix_space=False,
62
+ clean_up_tokenization_spaces=False,
63
+ **kwargs,
64
+ ):
65
+ self.sp_model_kwargs = {} if sp_model_kwargs is None else sp_model_kwargs
66
+ super().__init__(
67
+ bos_token=bos_token,
68
+ eos_token=eos_token,
69
+ unk_token=unk_token,
70
+ pad_token=pad_token,
71
+ clean_up_tokenization_spaces=clean_up_tokenization_spaces,
72
+ **kwargs,
73
+ )
74
+ self.vocab_file = vocab_file
75
+ self.add_bos_token = add_bos_token
76
+ self.add_eos_token = add_eos_token
77
+ self.decode_with_prefix_space = decode_with_prefix_space
78
+ self.sp_model = spm.SentencePieceProcessor(**self.sp_model_kwargs)
79
+ self.sp_model.Load(vocab_file)
80
+ self._no_prefix_space_tokens = None
81
+
82
+ """ Initialisation"""
83
+
84
+ @property
85
+ def no_prefix_space_tokens(self):
86
+ if self._no_prefix_space_tokens is None:
87
+ vocab = self.convert_ids_to_tokens(list(range(self.vocab_size)))
88
+ self._no_prefix_space_tokens = {i for i, tok in enumerate(vocab) if not tok.startswith("▁")}
89
+ return self._no_prefix_space_tokens
90
+
91
+ @property
92
+ def vocab_size(self):
93
+ """Returns vocab size"""
94
+ return self.sp_model.get_piece_size()
95
+
96
+ @property
97
+ def bos_token_id(self) -> Optional[int]:
98
+ return self.sp_model.bos_id()
99
+
100
+ @property
101
+ def eos_token_id(self) -> Optional[int]:
102
+ return self.sp_model.eos_id()
103
+
104
+ def get_vocab(self):
105
+ """Returns vocab as a dict"""
106
+ vocab = {self.convert_ids_to_tokens(i): i for i in range(self.vocab_size)}
107
+ vocab.update(self.added_tokens_encoder)
108
+ return vocab
109
+
110
+ def _tokenize(self, text):
111
+ """Returns a tokenized string."""
112
+ return self.sp_model.encode(text, out_type=str)
113
+
114
+ def _convert_token_to_id(self, token):
115
+ """Converts a token (str) in an id using the vocab."""
116
+ return self.sp_model.piece_to_id(token)
117
+
118
+ def _convert_id_to_token(self, index):
119
+ """Converts an index (integer) in a token (str) using the vocab."""
120
+ token = self.sp_model.IdToPiece(index)
121
+ return token
122
+
123
+ def _maybe_add_prefix_space(self, tokens, decoded):
124
+ if tokens and tokens[0] not in self.no_prefix_space_tokens:
125
+ return " " + decoded
126
+ else:
127
+ return decoded
128
+
129
+ def convert_tokens_to_string(self, tokens):
130
+ """Converts a sequence of tokens (string) in a single string."""
131
+ current_sub_tokens = []
132
+ out_string = ""
133
+ prev_is_special = False
134
+ for token in tokens:
135
+ # make sure that special tokens are not decoded using sentencepiece model
136
+ if token in self.all_special_tokens:
137
+ if not prev_is_special:
138
+ out_string += " "
139
+ out_string += self.sp_model.decode(current_sub_tokens) + token
140
+ prev_is_special = True
141
+ current_sub_tokens = []
142
+ else:
143
+ current_sub_tokens.append(token)
144
+ prev_is_special = False
145
+ out_string += self.sp_model.decode(current_sub_tokens)
146
+ out_string = self.clean_up_tokenization(out_string)
147
+ out_string = self._maybe_add_prefix_space(tokens=tokens, decoded=out_string)
148
+ return out_string[1:]
149
+
150
+ def save_vocabulary(self, save_directory, filename_prefix: Optional[str] = None) -> Tuple[str]:
151
+ """
152
+ Save the vocabulary and special tokens file to a directory.
153
+
154
+ Args:
155
+ save_directory (`str`):
156
+ The directory in which to save the vocabulary.
157
+
158
+ Returns:
159
+ `Tuple(str)`: Paths to the files saved.
160
+ """
161
+ if not os.path.isdir(save_directory):
162
+ logger.error(f"Vocabulary path ({save_directory}) should be a directory")
163
+ return
164
+ out_vocab_file = os.path.join(
165
+ save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["vocab_file"]
166
+ )
167
+
168
+ if os.path.abspath(self.vocab_file) != os.path.abspath(out_vocab_file) and os.path.isfile(self.vocab_file):
169
+ copyfile(self.vocab_file, out_vocab_file)
170
+ elif not os.path.isfile(self.vocab_file):
171
+ with open(out_vocab_file, "wb") as fi:
172
+ content_spiece_model = self.sp_model.serialized_model_proto()
173
+ fi.write(content_spiece_model)
174
+
175
+ return (out_vocab_file,)
176
+
177
+ def build_inputs_with_special_tokens(self, token_ids_0, token_ids_1=None):
178
+ if self.add_bos_token:
179
+ bos_token_ids = [self.bos_token_id]
180
+ else:
181
+ bos_token_ids = []
182
+
183
+ output = bos_token_ids + token_ids_0
184
+
185
+ if token_ids_1 is not None:
186
+ output = output + token_ids_1
187
+
188
+ if self.add_eos_token:
189
+ output = output + [self.eos_token_id]
190
+
191
+ return output
192
+
193
+ def get_special_tokens_mask(
194
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None, already_has_special_tokens: bool = False
195
+ ) -> List[int]:
196
+ """
197
+ Retrieve sequence ids from a token list that has no special tokens added. This method is called when adding
198
+ special tokens using the tokenizer `prepare_for_model` method.
199
+
200
+ Args:
201
+ token_ids_0 (`List[int]`):
202
+ List of IDs.
203
+ token_ids_1 (`List[int]`, *optional*):
204
+ Optional second list of IDs for sequence pairs.
205
+ already_has_special_tokens (`bool`, *optional*, defaults to `False`):
206
+ Whether or not the token list is already formatted with special tokens for the model.
207
+
208
+ Returns:
209
+ `List[int]`: A list of integers in the range [0, 1]: 1 for a special token, 0 for a sequence token.
210
+ """
211
+ if already_has_special_tokens:
212
+ return super().get_special_tokens_mask(
213
+ token_ids_0=token_ids_0, token_ids_1=token_ids_1, already_has_special_tokens=True
214
+ )
215
+
216
+ if token_ids_1 is None:
217
+ return [1] + ([0] * len(token_ids_0)) + [1]
218
+ return [1] + ([0] * len(token_ids_0)) + [1, 1] + ([0] * len(token_ids_1)) + [1]
219
+
220
+ def create_token_type_ids_from_sequences(
221
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None
222
+ ) -> List[int]:
223
+ """
224
+ Create a mask from the two sequences passed to be used in a sequence-pair classification task. T5 does not make
225
+ use of token type ids, therefore a list of zeros is returned.
226
+
227
+ Args:
228
+ token_ids_0 (`List[int]`):
229
+ List of IDs.
230
+ token_ids_1 (`List[int]`, *optional*):
231
+ Optional second list of IDs for sequence pairs.
232
+
233
+ Returns:
234
+ `List[int]`: List of zeros.
235
+ """
236
+ eos = [self.eos_token_id]
237
+
238
+ if token_ids_1 is None:
239
+ return len(token_ids_0 + eos) * [0]
240
+ return len(token_ids_0 + eos + token_ids_1 + eos) * [0]
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoTokenizer": [
4
+ "tokenization_InternLM_XComposer.InternLMXComposerTokenizer",
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": "InternLMXComposerTokenizer",
14
+ "unk_token": "<unk>"
15
+ }