nicolollo commited on
Commit
897a8b0
1 Parent(s): 2679db4

Upload 15 files

Browse files
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: image-text-to-text
4
+ ---
5
+
6
+ moondream2 is a small vision language model designed to run efficiently on edge devices. Check out the [GitHub repository](https://github.com/vikhyat/moondream) for details, or try it out on the [Hugging Face Space](https://huggingface.co/spaces/vikhyatk/moondream2)!
7
+
8
+ **Benchmarks**
9
+
10
+ | Release | VQAv2 | GQA | TextVQA | TallyQA (simple) | TallyQA (full) |
11
+ | --- | --- | --- | --- | --- | --- |
12
+ | 2024-03-04 | 74.2 | 58.5 | 36.4 | - | - |
13
+ | 2024-03-06 | 75.4 | 59.8 | 43.1 | 79.5 | 73.2 |
14
+ | 2024-03-13 | 76.8 | 60.6 | 46.4 | 79.6 | 73.3 |
15
+ | **2024-04-02** (latest) | 77.7 | 61.7 | 49.7 | 80.1 | 74.2 |
16
+
17
+ **Usage**
18
+
19
+ ```bash
20
+ pip install transformers einops
21
+ ```
22
+
23
+ ```python
24
+ from transformers import AutoModelForCausalLM, AutoTokenizer
25
+ from PIL import Image
26
+
27
+ model_id = "vikhyatk/moondream2"
28
+ revision = "2024-04-02"
29
+ model = AutoModelForCausalLM.from_pretrained(
30
+ model_id, trust_remote_code=True, revision=revision
31
+ )
32
+ tokenizer = AutoTokenizer.from_pretrained(model_id, revision=revision)
33
+
34
+ image = Image.open('<IMAGE_PATH>')
35
+ enc_image = model.encode_image(image)
36
+ print(model.answer_question(enc_image, "Describe this image.", tokenizer))
37
+ ```
38
+
39
+ The model is updated regularly, so we recommend pinning the model version to a
40
+ specific release as shown above.
added_tokens.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "\t\t": 50294,
3
+ "\t\t\t": 50293,
4
+ "\t\t\t\t": 50292,
5
+ "\t\t\t\t\t": 50291,
6
+ "\t\t\t\t\t\t": 50290,
7
+ "\t\t\t\t\t\t\t": 50289,
8
+ "\t\t\t\t\t\t\t\t": 50288,
9
+ "\t\t\t\t\t\t\t\t\t": 50287,
10
+ " ": 50286,
11
+ " ": 50285,
12
+ " ": 50284,
13
+ " ": 50283,
14
+ " ": 50282,
15
+ " ": 50281,
16
+ " ": 50280,
17
+ " ": 50279,
18
+ " ": 50278,
19
+ " ": 50277,
20
+ " ": 50276,
21
+ " ": 50275,
22
+ " ": 50274,
23
+ " ": 50273,
24
+ " ": 50272,
25
+ " ": 50271,
26
+ " ": 50270,
27
+ " ": 50269,
28
+ " ": 50268,
29
+ " ": 50267,
30
+ " ": 50266,
31
+ " ": 50265,
32
+ " ": 50264,
33
+ " ": 50263,
34
+ " ": 50262,
35
+ " ": 50261,
36
+ " ": 50260,
37
+ " ": 50259,
38
+ " ": 50258,
39
+ " ": 50257
40
+ }
config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "vikhyatk/moondream2",
3
+ "architectures": [
4
+ "Moondream"
5
+ ],
6
+ "auto_map": {
7
+ "AutoConfig": "vikhyatk/moondream2--configuration_moondream.MoondreamConfig",
8
+ "AutoModelForCausalLM": "vikhyatk/moondream2--moondream.Moondream"
9
+ },
10
+ "model_type": "moondream1",
11
+ "phi_config": {
12
+ "model_type": "phi"
13
+ },
14
+ "torch_dtype": "float16",
15
+ "transformers_version": "4.40.2"
16
+ }
configuration_moondream.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import PretrainedConfig
2
+
3
+
4
+ class PhiConfig(PretrainedConfig):
5
+ model_type = "phi"
6
+ keys_to_ignore_at_inference = ["past_key_values"]
7
+
8
+ def __init__(
9
+ self,
10
+ vocab_size=51200,
11
+ hidden_size=2048,
12
+ intermediate_size=8192,
13
+ num_hidden_layers=24,
14
+ num_attention_heads=32,
15
+ num_key_value_heads=None,
16
+ resid_pdrop=0.0,
17
+ embd_pdrop=0.0,
18
+ attention_dropout=0.0,
19
+ hidden_act="gelu_new",
20
+ max_position_embeddings=2048,
21
+ initializer_range=0.02,
22
+ layer_norm_eps=1e-5,
23
+ use_cache=True,
24
+ tie_word_embeddings=False,
25
+ rope_theta=10000.0,
26
+ rope_scaling=None,
27
+ partial_rotary_factor=0.5,
28
+ qk_layernorm=False,
29
+ bos_token_id=1,
30
+ eos_token_id=2,
31
+ **kwargs,
32
+ ):
33
+ self.vocab_size = vocab_size
34
+ self.hidden_size = hidden_size
35
+ self.intermediate_size = intermediate_size
36
+ self.num_hidden_layers = num_hidden_layers
37
+ self.num_attention_heads = num_attention_heads
38
+
39
+ if num_key_value_heads is None:
40
+ num_key_value_heads = num_attention_heads
41
+
42
+ self.num_key_value_heads = num_key_value_heads
43
+ self.resid_pdrop = resid_pdrop
44
+ self.embd_pdrop = embd_pdrop
45
+ self.attention_dropout = attention_dropout
46
+ self.hidden_act = hidden_act
47
+ self.max_position_embeddings = max_position_embeddings
48
+ self.initializer_range = initializer_range
49
+ self.layer_norm_eps = layer_norm_eps
50
+ self.use_cache = use_cache
51
+ self.rope_theta = rope_theta
52
+ self.rope_scaling = rope_scaling
53
+ self.partial_rotary_factor = partial_rotary_factor
54
+ self.qk_layernorm = qk_layernorm
55
+ self._rope_scaling_validation()
56
+
57
+ super().__init__(
58
+ bos_token_id=bos_token_id,
59
+ eos_token_id=eos_token_id,
60
+ tie_word_embeddings=tie_word_embeddings,
61
+ **kwargs,
62
+ )
63
+
64
+ # Copied from transformers.models.llama.configuration_llama.LlamaConfig._rope_scaling_validation
65
+ def _rope_scaling_validation(self):
66
+ """
67
+ Validate the `rope_scaling` configuration.
68
+ """
69
+ if self.rope_scaling is None:
70
+ return
71
+
72
+ if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) != 2:
73
+ raise ValueError(
74
+ "`rope_scaling` must be a dictionary with with two fields, `type` and `factor`, "
75
+ f"got {self.rope_scaling}"
76
+ )
77
+ rope_scaling_type = self.rope_scaling.get("type", None)
78
+ rope_scaling_factor = self.rope_scaling.get("factor", None)
79
+ if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]:
80
+ raise ValueError(
81
+ f"`rope_scaling`'s type field must be one of ['linear', 'dynamic'], got {rope_scaling_type}"
82
+ )
83
+ if (
84
+ rope_scaling_factor is None
85
+ or not isinstance(rope_scaling_factor, float)
86
+ or rope_scaling_factor <= 1.0
87
+ ):
88
+ raise ValueError(
89
+ f"`rope_scaling`'s factor field must be a float > 1, got {rope_scaling_factor}"
90
+ )
91
+
92
+
93
+ class MoondreamConfig(PretrainedConfig):
94
+ model_type = "moondream1"
95
+
96
+ def __init__(self, **kwargs):
97
+ self.text_config = PhiConfig(**kwargs.pop("text_config", {}))
98
+ super().__init__(**kwargs)
generation_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "transformers_version": "4.40.2"
4
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98c79df84163a54e57a428d9af22b8c878c35fd5db5ffe60fe86a81c6c38a61d
3
+ size 3715037856
modeling_phi.py ADDED
@@ -0,0 +1,1190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2023 Microsoft and the HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ """ PyTorch Phi model."""
17
+
18
+
19
+ import math
20
+ from typing import List, Optional, Tuple, Union
21
+
22
+ import torch
23
+ import torch.nn.functional as F
24
+ import torch.utils.checkpoint
25
+ from torch import nn
26
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
27
+
28
+ from transformers.activations import ACT2FN
29
+ from transformers.cache_utils import Cache, DynamicCache
30
+ from transformers.modeling_attn_mask_utils import _prepare_4d_causal_attention_mask
31
+ from transformers.modeling_outputs import (
32
+ BaseModelOutputWithPast,
33
+ CausalLMOutputWithPast,
34
+ SequenceClassifierOutputWithPast,
35
+ )
36
+ from transformers.modeling_utils import PreTrainedModel
37
+ from transformers.utils import (
38
+ is_flash_attn_2_available,
39
+ is_flash_attn_greater_or_equal_2_10,
40
+ logging,
41
+ )
42
+ from .configuration_moondream import PhiConfig
43
+
44
+
45
+ try: # noqa: SIM105
46
+ if is_flash_attn_2_available():
47
+ from flash_attn import flash_attn_func, flash_attn_varlen_func
48
+ from flash_attn.bert_padding import index_first_axis, pad_input, unpad_input
49
+ except ImportError:
50
+ # Workaround for https://github.com/huggingface/transformers/issues/28459,
51
+ # don't move to contextlib.suppress(ImportError)
52
+ pass
53
+
54
+
55
+ logger = logging.get_logger(__name__)
56
+
57
+
58
+ # Copied from transformers.models.llama.modeling_llama._get_unpad_data
59
+ def _get_unpad_data(attention_mask):
60
+ seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
61
+ indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()
62
+ max_seqlen_in_batch = seqlens_in_batch.max().item()
63
+ cu_seqlens = F.pad(
64
+ torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.torch.int32), (1, 0)
65
+ )
66
+ return (
67
+ indices,
68
+ cu_seqlens,
69
+ max_seqlen_in_batch,
70
+ )
71
+
72
+
73
+ # Copied from transformers.models.llama.modeling_llama.LlamaRotaryEmbedding with Llama->Phi
74
+ class PhiRotaryEmbedding(nn.Module):
75
+ def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None):
76
+ super().__init__()
77
+
78
+ self.dim = dim
79
+ self.max_position_embeddings = max_position_embeddings
80
+ self.base = base
81
+ inv_freq = 1.0 / (
82
+ self.base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
83
+ )
84
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
85
+
86
+ # Build here to make `torch.jit.trace` work.
87
+ self._set_cos_sin_cache(
88
+ seq_len=max_position_embeddings,
89
+ device=self.inv_freq.device,
90
+ dtype=torch.get_default_dtype(),
91
+ )
92
+
93
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
94
+ self.max_seq_len_cached = seq_len
95
+ t = torch.arange(
96
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
97
+ )
98
+
99
+ freqs = torch.outer(t, self.inv_freq)
100
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
101
+ emb = torch.cat((freqs, freqs), dim=-1)
102
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
103
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
104
+
105
+ def forward(self, x, seq_len=None):
106
+ # x: [bs, num_attention_heads, seq_len, head_size]
107
+ if seq_len > self.max_seq_len_cached:
108
+ self._set_cos_sin_cache(seq_len=seq_len, device=x.device, dtype=x.dtype)
109
+
110
+ return (
111
+ self.cos_cached[:seq_len].to(dtype=x.dtype),
112
+ self.sin_cached[:seq_len].to(dtype=x.dtype),
113
+ )
114
+
115
+
116
+ # Copied from transformers.models.llama.modeling_llama.LlamaLinearScalingRotaryEmbedding with Llama->Phi
117
+ class PhiLinearScalingRotaryEmbedding(PhiRotaryEmbedding):
118
+ """PhiRotaryEmbedding extended with linear scaling. Credits to the Reddit user /u/kaiokendev"""
119
+
120
+ def __init__(
121
+ self,
122
+ dim,
123
+ max_position_embeddings=2048,
124
+ base=10000,
125
+ device=None,
126
+ scaling_factor=1.0,
127
+ ):
128
+ self.scaling_factor = scaling_factor
129
+ super().__init__(dim, max_position_embeddings, base, device)
130
+
131
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
132
+ self.max_seq_len_cached = seq_len
133
+ t = torch.arange(
134
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
135
+ )
136
+ t = t / self.scaling_factor
137
+
138
+ freqs = torch.outer(t, self.inv_freq)
139
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
140
+ emb = torch.cat((freqs, freqs), dim=-1)
141
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
142
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
143
+
144
+
145
+ # Copied from transformers.models.llama.modeling_llama.LlamaDynamicNTKScalingRotaryEmbedding with Llama->Phi
146
+ class PhiDynamicNTKScalingRotaryEmbedding(PhiRotaryEmbedding):
147
+ """PhiRotaryEmbedding extended with Dynamic NTK scaling. Credits to the Reddit users /u/bloc97 and /u/emozilla"""
148
+
149
+ def __init__(
150
+ self,
151
+ dim,
152
+ max_position_embeddings=2048,
153
+ base=10000,
154
+ device=None,
155
+ scaling_factor=1.0,
156
+ ):
157
+ self.scaling_factor = scaling_factor
158
+ super().__init__(dim, max_position_embeddings, base, device)
159
+
160
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
161
+ self.max_seq_len_cached = seq_len
162
+
163
+ if seq_len > self.max_position_embeddings:
164
+ base = self.base * (
165
+ (self.scaling_factor * seq_len / self.max_position_embeddings)
166
+ - (self.scaling_factor - 1)
167
+ ) ** (self.dim / (self.dim - 2))
168
+ inv_freq = 1.0 / (
169
+ base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
170
+ )
171
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
172
+
173
+ t = torch.arange(
174
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
175
+ )
176
+
177
+ freqs = torch.outer(t, self.inv_freq)
178
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
179
+ emb = torch.cat((freqs, freqs), dim=-1)
180
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
181
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
182
+
183
+
184
+ # Copied from transformers.models.llama.modeling_llama.rotate_half
185
+ def rotate_half(x):
186
+ """Rotates half the hidden dims of the input."""
187
+ x1 = x[..., : x.shape[-1] // 2]
188
+ x2 = x[..., x.shape[-1] // 2 :]
189
+ return torch.cat((-x2, x1), dim=-1)
190
+
191
+
192
+ # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb
193
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):
194
+ """Applies Rotary Position Embedding to the query and key tensors.
195
+
196
+ Args:
197
+ q (`torch.Tensor`): The query tensor.
198
+ k (`torch.Tensor`): The key tensor.
199
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
200
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
201
+ position_ids (`torch.Tensor`):
202
+ The position indices of the tokens corresponding to the query and key tensors. For example, this can be
203
+ used to pass offsetted position ids when working with a KV-cache.
204
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
205
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
206
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
207
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
208
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
209
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
210
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
211
+ Returns:
212
+ `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
213
+ """
214
+ cos = cos[position_ids].unsqueeze(unsqueeze_dim)
215
+ sin = sin[position_ids].unsqueeze(unsqueeze_dim)
216
+ q_embed = (q * cos) + (rotate_half(q) * sin)
217
+ k_embed = (k * cos) + (rotate_half(k) * sin)
218
+ return q_embed, k_embed
219
+
220
+
221
+ # Copied from transformers.models.clip.modeling_clip.CLIPMLP with CLIP->Phi
222
+ class PhiMLP(nn.Module):
223
+ def __init__(self, config):
224
+ super().__init__()
225
+ self.config = config
226
+ self.activation_fn = ACT2FN[config.hidden_act]
227
+ self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size)
228
+ self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size)
229
+
230
+ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
231
+ hidden_states = self.fc1(hidden_states)
232
+ hidden_states = self.activation_fn(hidden_states)
233
+ hidden_states = self.fc2(hidden_states)
234
+ return hidden_states
235
+
236
+
237
+ # Copied from transformers.models.llama.modeling_llama.repeat_kv with llama->phi
238
+ def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
239
+ """
240
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
241
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
242
+ """
243
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
244
+ if n_rep == 1:
245
+ return hidden_states
246
+ hidden_states = hidden_states[:, :, None, :, :].expand(
247
+ batch, num_key_value_heads, n_rep, slen, head_dim
248
+ )
249
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
250
+
251
+
252
+ class PhiAttention(nn.Module):
253
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
254
+
255
+ def __init__(self, config: PhiConfig, layer_idx: Optional[int] = None):
256
+ super().__init__()
257
+ self.config = config
258
+ self.layer_idx = layer_idx
259
+ if layer_idx is None:
260
+ logger.warning_once(
261
+ f"Instantiating {self.__class__.__name__} without passing `layer_idx` is not recommended and will "
262
+ "to errors during the forward call, if caching is used. Please make sure to provide a `layer_idx` "
263
+ "when creating this class."
264
+ )
265
+
266
+ self.attention_dropout = config.attention_dropout
267
+ self.hidden_size = config.hidden_size
268
+ self.num_heads = config.num_attention_heads
269
+ self.head_dim = self.hidden_size // self.num_heads
270
+ self.num_key_value_heads = config.num_key_value_heads
271
+ self.num_key_value_groups = self.num_heads // self.num_key_value_heads
272
+ self.max_position_embeddings = config.max_position_embeddings
273
+ self.rope_theta = config.rope_theta
274
+ self.partial_rotary_factor = config.partial_rotary_factor
275
+ self.is_causal = True
276
+
277
+ if (self.head_dim * self.num_heads) != self.hidden_size:
278
+ raise ValueError(
279
+ f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
280
+ f" and `num_heads`: {self.num_heads})."
281
+ )
282
+
283
+ self.Wqkv = nn.Linear(
284
+ self.hidden_size, 3 * self.num_heads * self.head_dim, bias=True
285
+ )
286
+ self.out_proj = nn.Linear(
287
+ self.num_heads * self.head_dim, self.hidden_size, bias=True
288
+ )
289
+
290
+ self.qk_layernorm = config.qk_layernorm
291
+ if self.qk_layernorm:
292
+ self.q_layernorm = nn.LayerNorm(
293
+ config.hidden_size // self.num_heads,
294
+ eps=config.layer_norm_eps,
295
+ elementwise_affine=True,
296
+ )
297
+ self.k_layernorm = nn.LayerNorm(
298
+ config.hidden_size // self.num_heads,
299
+ eps=config.layer_norm_eps,
300
+ elementwise_affine=True,
301
+ )
302
+
303
+ self._init_rope()
304
+
305
+ def _init_rope(self):
306
+ if self.config.rope_scaling is None:
307
+ self.rotary_emb = PhiRotaryEmbedding(
308
+ int(self.partial_rotary_factor * self.head_dim),
309
+ max_position_embeddings=self.max_position_embeddings,
310
+ base=self.rope_theta,
311
+ )
312
+ else:
313
+ scaling_type = self.config.rope_scaling["type"]
314
+ scaling_factor = self.config.rope_scaling["factor"]
315
+ if scaling_type == "linear":
316
+ self.rotary_emb = PhiLinearScalingRotaryEmbedding(
317
+ int(self.partial_rotary_factor * self.head_dim),
318
+ max_position_embeddings=self.max_position_embeddings,
319
+ scaling_factor=scaling_factor,
320
+ base=self.rope_theta,
321
+ )
322
+ elif scaling_type == "dynamic":
323
+ self.rotary_emb = PhiDynamicNTKScalingRotaryEmbedding(
324
+ int(self.partial_rotary_factor * self.head_dim),
325
+ max_position_embeddings=self.max_position_embeddings,
326
+ scaling_factor=scaling_factor,
327
+ base=self.rope_theta,
328
+ )
329
+ else:
330
+ raise ValueError(f"Unknown RoPE scaling type {scaling_type}")
331
+
332
+ def forward(
333
+ self,
334
+ hidden_states: torch.Tensor,
335
+ attention_mask: Optional[torch.Tensor] = None,
336
+ position_ids: Optional[torch.LongTensor] = None,
337
+ past_key_value: Optional[Cache] = None,
338
+ output_attentions: bool = False,
339
+ use_cache: bool = False,
340
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
341
+ bsz, q_len, _ = hidden_states.size()
342
+
343
+ query_states, key_states, value_states = self.Wqkv(hidden_states).chunk(
344
+ 3, dim=-1
345
+ )
346
+
347
+ if self.qk_layernorm:
348
+ query_states = self.q_layernorm(query_states)
349
+ key_states = self.k_layernorm(key_states)
350
+
351
+ query_states = query_states.view(
352
+ bsz, q_len, self.num_heads, self.head_dim
353
+ ).transpose(1, 2)
354
+ key_states = key_states.view(
355
+ bsz, q_len, self.num_key_value_heads, self.head_dim
356
+ ).transpose(1, 2)
357
+ value_states = value_states.view(
358
+ bsz, q_len, self.num_key_value_heads, self.head_dim
359
+ ).transpose(1, 2)
360
+
361
+ kv_seq_len = key_states.shape[-2]
362
+ if past_key_value is not None:
363
+ if self.layer_idx is None:
364
+ raise ValueError(
365
+ f"The cache structure has changed since version v4.36. If you are using {self.__class__.__name__} "
366
+ "for auto-regressive decoding with k/v caching, please make sure to initialize the attention class "
367
+ "with a layer index."
368
+ )
369
+ kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
370
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
371
+
372
+ # Partial rotary embedding
373
+ query_rot, query_pass = (
374
+ query_states[..., : self.rotary_emb.dim],
375
+ query_states[..., self.rotary_emb.dim :],
376
+ )
377
+ key_rot, key_pass = (
378
+ key_states[..., : self.rotary_emb.dim],
379
+ key_states[..., self.rotary_emb.dim :],
380
+ )
381
+ # [batch_size, seq_length, num_heads, head_dim // config.partial_rotary_factor]
382
+ query_rot, key_rot = apply_rotary_pos_emb(
383
+ query_rot, key_rot, cos, sin, position_ids
384
+ )
385
+
386
+ # [batch_size, seq_length, num_heads, head_dim]
387
+ query_states = torch.cat((query_rot, query_pass), dim=-1)
388
+ key_states = torch.cat((key_rot, key_pass), dim=-1)
389
+
390
+ if past_key_value is not None:
391
+ cache_kwargs = {
392
+ "sin": sin,
393
+ "cos": cos,
394
+ "partial_rotation_size": self.rotary_emb.dim,
395
+ }
396
+ key_states, value_states = past_key_value.update(
397
+ key_states, value_states, self.layer_idx, cache_kwargs
398
+ )
399
+
400
+ key_states = repeat_kv(key_states, self.num_key_value_groups)
401
+ value_states = repeat_kv(value_states, self.num_key_value_groups)
402
+
403
+ attn_output = torch.nn.functional.scaled_dot_product_attention(
404
+ query_states, key_states, value_states, attn_mask=attention_mask
405
+ )
406
+
407
+ attn_output = attn_output.transpose(1, 2).contiguous()
408
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
409
+
410
+ attn_output = self.out_proj(attn_output)
411
+
412
+ if not output_attentions:
413
+ attn_weights = None
414
+
415
+ return attn_output, attn_weights, past_key_value
416
+
417
+
418
+ class PhiFlashAttention2(PhiAttention):
419
+ """
420
+ Phi flash attention module. This module inherits from `PhiAttention` as the weights of the module stays
421
+ untouched. The only required change would be on the forward pass where it needs to correctly call the public API of
422
+ flash attention and deal with padding tokens in case the input contains any of them.
423
+ """
424
+
425
+ # Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2.__init__
426
+ def __init__(self, *args, **kwargs):
427
+ super().__init__(*args, **kwargs)
428
+
429
+ # TODO: Should be removed once Flash Attention for RoCm is bumped to 2.1.
430
+ # flash_attn<2.1 generates top-left aligned causal mask, while what is needed here is bottom-right alignement, that was made default for flash_attn>=2.1. This attribute is used to handle this difference. Reference: https://github.com/Dao-AILab/flash-attention/releases/tag/v2.1.0.
431
+ # Beware that with flash_attn<2.1, using q_seqlen != k_seqlen (except for the case q_seqlen == 1) produces a wrong mask (top-left).
432
+ self._flash_attn_uses_top_left_mask = not is_flash_attn_greater_or_equal_2_10()
433
+
434
+ def forward(
435
+ self,
436
+ hidden_states: torch.Tensor,
437
+ attention_mask: Optional[torch.LongTensor] = None,
438
+ position_ids: Optional[torch.LongTensor] = None,
439
+ past_key_value: Optional[Cache] = None,
440
+ output_attentions: bool = False,
441
+ use_cache: bool = False,
442
+ **kwargs,
443
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
444
+ # PhiFlashAttention2 attention does not support output_attentions
445
+
446
+ output_attentions = False
447
+
448
+ bsz, q_len, _ = hidden_states.size()
449
+
450
+ query_states, key_states, value_states = self.Wqkv(hidden_states).chunk(
451
+ 3, dim=-1
452
+ )
453
+
454
+ if self.qk_layernorm:
455
+ query_states = self.q_layernorm(query_states)
456
+ key_states = self.k_layernorm(key_states)
457
+
458
+ # Flash attention requires the input to have the shape
459
+ # batch_size x seq_length x head_dim x hidden_dim
460
+ # therefore we just need to keep the original shape
461
+ query_states = query_states.view(
462
+ bsz, q_len, self.num_heads, self.head_dim
463
+ ).transpose(1, 2)
464
+ key_states = key_states.view(
465
+ bsz, q_len, self.num_key_value_heads, self.head_dim
466
+ ).transpose(1, 2)
467
+ value_states = value_states.view(
468
+ bsz, q_len, self.num_key_value_heads, self.head_dim
469
+ ).transpose(1, 2)
470
+
471
+ kv_seq_len = key_states.shape[-2]
472
+ if past_key_value is not None:
473
+ kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
474
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
475
+
476
+ # Partial rotary embedding
477
+ query_rot, query_pass = (
478
+ query_states[..., : self.rotary_emb.dim],
479
+ query_states[..., self.rotary_emb.dim :],
480
+ )
481
+ key_rot, key_pass = (
482
+ key_states[..., : self.rotary_emb.dim],
483
+ key_states[..., self.rotary_emb.dim :],
484
+ )
485
+ # [batch_size, seq_length, num_heads, head_dim // config.partial_rotary_factor]
486
+ query_rot, key_rot = apply_rotary_pos_emb(
487
+ query_rot, key_rot, cos, sin, position_ids
488
+ )
489
+
490
+ # [batch_size, seq_length, num_heads, head_dim]
491
+ query_states = torch.cat((query_rot, query_pass), dim=-1)
492
+ key_states = torch.cat((key_rot, key_pass), dim=-1)
493
+
494
+ if past_key_value is not None:
495
+ cache_kwargs = {
496
+ "sin": sin,
497
+ "cos": cos,
498
+ "partial_rotation_size": self.rotary_emb.dim,
499
+ }
500
+ key_states, value_states = past_key_value.update(
501
+ key_states, value_states, self.layer_idx, cache_kwargs
502
+ )
503
+
504
+ # TODO: These transpose are quite inefficient but Flash Attention requires the layout [batch_size, sequence_length, num_heads, head_dim]. We would need to refactor the KV cache
505
+ # to be able to avoid many of these transpose/reshape/view.
506
+ query_states = query_states.transpose(1, 2)
507
+ key_states = key_states.transpose(1, 2)
508
+ value_states = value_states.transpose(1, 2)
509
+
510
+ attn_dropout = self.attention_dropout if self.training else 0.0
511
+
512
+ # In PEFT, usually we cast the layer norms in float32 for training stability reasons
513
+ # therefore the input hidden states gets silently casted in float32. Hence, we need
514
+ # cast them back in the correct dtype just to be sure everything works as expected.
515
+ # This might slowdown training & inference so it is recommended to not cast the LayerNorms
516
+ # in fp32.
517
+
518
+ if query_states.dtype == torch.float32:
519
+ if torch.is_autocast_enabled():
520
+ target_dtype = torch.get_autocast_gpu_dtype()
521
+ # Handle the case where the model is quantized
522
+ elif hasattr(self.config, "_pre_quantization_dtype"):
523
+ target_dtype = self.config._pre_quantization_dtype
524
+ else:
525
+ target_dtype = self.q_proj.weight.dtype
526
+
527
+ logger.warning_once(
528
+ f"The input hidden states seems to be silently casted in float32, this might be related to"
529
+ f" the fact you have upcasted embedding or layer norm layers in float32. We will cast back the input in"
530
+ f" {target_dtype}."
531
+ )
532
+
533
+ query_states = query_states.to(target_dtype)
534
+ key_states = key_states.to(target_dtype)
535
+ value_states = value_states.to(target_dtype)
536
+
537
+ attn_output = self._flash_attention_forward(
538
+ query_states,
539
+ key_states,
540
+ value_states,
541
+ attention_mask,
542
+ q_len,
543
+ dropout=attn_dropout,
544
+ softmax_scale=None,
545
+ )
546
+
547
+ attn_output = attn_output.reshape(bsz, q_len, self.hidden_size).contiguous()
548
+ attn_output = self.out_proj(attn_output)
549
+
550
+ if not output_attentions:
551
+ attn_weights = None
552
+
553
+ return attn_output, attn_weights, past_key_value
554
+
555
+ # Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2._flash_attention_forward
556
+ def _flash_attention_forward(
557
+ self,
558
+ query_states,
559
+ key_states,
560
+ value_states,
561
+ attention_mask,
562
+ query_length,
563
+ dropout=0.0,
564
+ softmax_scale=None,
565
+ ):
566
+ """
567
+ Calls the forward method of Flash Attention - if the input hidden states contain at least one padding token
568
+ first unpad the input, then computes the attention scores and pad the final attention scores.
569
+
570
+ Args:
571
+ query_states (`torch.Tensor`):
572
+ Input query states to be passed to Flash Attention API
573
+ key_states (`torch.Tensor`):
574
+ Input key states to be passed to Flash Attention API
575
+ value_states (`torch.Tensor`):
576
+ Input value states to be passed to Flash Attention API
577
+ attention_mask (`torch.Tensor`):
578
+ The padding mask - corresponds to a tensor of size `(batch_size, seq_len)` where 0 stands for the
579
+ position of padding tokens and 1 for the position of non-padding tokens.
580
+ dropout (`int`, *optional*):
581
+ Attention dropout
582
+ softmax_scale (`float`, *optional*):
583
+ The scaling of QK^T before applying softmax. Default to 1 / sqrt(head_dim)
584
+ """
585
+ if not self._flash_attn_uses_top_left_mask:
586
+ causal = self.is_causal
587
+ else:
588
+ # TODO: Remove the `query_length != 1` check once Flash Attention for RoCm is bumped to 2.1. For details, please see the comment in LlamaFlashAttention2 __init__.
589
+ causal = self.is_causal and query_length != 1
590
+
591
+ # Contains at least one padding token in the sequence
592
+ if attention_mask is not None:
593
+ batch_size = query_states.shape[0]
594
+ (
595
+ query_states,
596
+ key_states,
597
+ value_states,
598
+ indices_q,
599
+ cu_seq_lens,
600
+ max_seq_lens,
601
+ ) = self._upad_input(
602
+ query_states, key_states, value_states, attention_mask, query_length
603
+ )
604
+
605
+ cu_seqlens_q, cu_seqlens_k = cu_seq_lens
606
+ max_seqlen_in_batch_q, max_seqlen_in_batch_k = max_seq_lens
607
+
608
+ attn_output_unpad = flash_attn_varlen_func(
609
+ query_states,
610
+ key_states,
611
+ value_states,
612
+ cu_seqlens_q=cu_seqlens_q,
613
+ cu_seqlens_k=cu_seqlens_k,
614
+ max_seqlen_q=max_seqlen_in_batch_q,
615
+ max_seqlen_k=max_seqlen_in_batch_k,
616
+ dropout_p=dropout,
617
+ softmax_scale=softmax_scale,
618
+ causal=causal,
619
+ )
620
+
621
+ attn_output = pad_input(
622
+ attn_output_unpad, indices_q, batch_size, query_length
623
+ )
624
+ else:
625
+ attn_output = flash_attn_func(
626
+ query_states,
627
+ key_states,
628
+ value_states,
629
+ dropout,
630
+ softmax_scale=softmax_scale,
631
+ causal=causal,
632
+ )
633
+
634
+ return attn_output
635
+
636
+ # Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2._upad_input
637
+ def _upad_input(
638
+ self, query_layer, key_layer, value_layer, attention_mask, query_length
639
+ ):
640
+ indices_k, cu_seqlens_k, max_seqlen_in_batch_k = _get_unpad_data(attention_mask)
641
+ batch_size, kv_seq_len, num_key_value_heads, head_dim = key_layer.shape
642
+
643
+ key_layer = index_first_axis(
644
+ key_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim),
645
+ indices_k,
646
+ )
647
+ value_layer = index_first_axis(
648
+ value_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim),
649
+ indices_k,
650
+ )
651
+ if query_length == kv_seq_len:
652
+ query_layer = index_first_axis(
653
+ query_layer.reshape(batch_size * kv_seq_len, self.num_heads, head_dim),
654
+ indices_k,
655
+ )
656
+ cu_seqlens_q = cu_seqlens_k
657
+ max_seqlen_in_batch_q = max_seqlen_in_batch_k
658
+ indices_q = indices_k
659
+ elif query_length == 1:
660
+ max_seqlen_in_batch_q = 1
661
+ cu_seqlens_q = torch.arange(
662
+ batch_size + 1, dtype=torch.int32, device=query_layer.device
663
+ ) # There is a memcpy here, that is very bad.
664
+ indices_q = cu_seqlens_q[:-1]
665
+ query_layer = query_layer.squeeze(1)
666
+ else:
667
+ # The -q_len: slice assumes left padding.
668
+ attention_mask = attention_mask[:, -query_length:]
669
+ query_layer, indices_q, cu_seqlens_q, max_seqlen_in_batch_q = unpad_input(
670
+ query_layer, attention_mask
671
+ )
672
+
673
+ return (
674
+ query_layer,
675
+ key_layer,
676
+ value_layer,
677
+ indices_q,
678
+ (cu_seqlens_q, cu_seqlens_k),
679
+ (max_seqlen_in_batch_q, max_seqlen_in_batch_k),
680
+ )
681
+
682
+
683
+ PHI_ATTENTION_CLASSES = {
684
+ "eager": PhiAttention,
685
+ "flash_attention_2": PhiFlashAttention2,
686
+ }
687
+
688
+
689
+ class PhiDecoderLayer(nn.Module):
690
+ def __init__(self, config: PhiConfig, layer_idx: int):
691
+ super().__init__()
692
+ self.mixer = PHI_ATTENTION_CLASSES[config._attn_implementation](
693
+ config, layer_idx=layer_idx
694
+ )
695
+ self.mlp = PhiMLP(config)
696
+ self.ln = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
697
+ self.resid_dropout = nn.Dropout(config.resid_pdrop)
698
+
699
+ def forward(
700
+ self,
701
+ hidden_states: torch.Tensor,
702
+ attention_mask: Optional[torch.Tensor] = None,
703
+ position_ids: Optional[torch.LongTensor] = None,
704
+ output_attentions: Optional[bool] = False,
705
+ use_cache: Optional[bool] = False,
706
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
707
+ ) -> Tuple[
708
+ torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]
709
+ ]:
710
+ """
711
+ Args:
712
+ hidden_states (`torch.FloatTensor`):
713
+ input to the layer of shape `(batch, seq_len, embed_dim)`
714
+ attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
715
+ `(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
716
+ position_ids (`torch.LongTensor` of shape `({0})`, *optional*):
717
+ Indices of positions of each input sequence tokens in the position embeddings. Selected in the range
718
+ `[0, config.n_positions - 1]`. [What are position IDs?](../glossary#position-ids)
719
+ output_attentions (`bool`, *optional*):
720
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under
721
+ returned tensors for more detail.
722
+ use_cache (`bool`, *optional*):
723
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
724
+ (see `past_key_values`).
725
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
726
+ """
727
+
728
+ residual = hidden_states
729
+
730
+ hidden_states = self.ln(hidden_states)
731
+
732
+ # Self Attention
733
+ attn_outputs, self_attn_weights, present_key_value = self.mixer(
734
+ hidden_states=hidden_states,
735
+ attention_mask=attention_mask,
736
+ position_ids=position_ids,
737
+ past_key_value=past_key_value,
738
+ output_attentions=output_attentions,
739
+ use_cache=use_cache,
740
+ )
741
+ attn_outputs = self.resid_dropout(attn_outputs)
742
+
743
+ feed_forward_hidden_states = self.resid_dropout(self.mlp(hidden_states))
744
+ hidden_states = attn_outputs + feed_forward_hidden_states + residual
745
+ outputs = (hidden_states,)
746
+
747
+ if output_attentions:
748
+ outputs += (self_attn_weights,)
749
+
750
+ if use_cache:
751
+ outputs += (present_key_value,)
752
+
753
+ return outputs
754
+
755
+
756
+ class PhiPreTrainedModel(PreTrainedModel):
757
+ config_class = PhiConfig
758
+ base_model_prefix = "model"
759
+ supports_gradient_checkpointing = True
760
+ _no_split_modules = ["PhiDecoderLayer"]
761
+ _skip_keys_device_placement = "past_key_values"
762
+ _supports_flash_attn_2 = True
763
+ _supports_cache_class = True
764
+
765
+ def _init_weights(self, module):
766
+ std = self.config.initializer_range
767
+ if isinstance(module, nn.Linear):
768
+ module.weight.data.normal_(mean=0.0, std=std)
769
+ if module.bias is not None:
770
+ module.bias.data.zero_()
771
+ elif isinstance(module, nn.Embedding):
772
+ module.weight.data.normal_(mean=0.0, std=std)
773
+ if module.padding_idx is not None:
774
+ module.weight.data[module.padding_idx].zero_()
775
+
776
+
777
+ class Embedding(nn.Module):
778
+ def __init__(self, config: PhiConfig):
779
+ super().__init__()
780
+ self.wte = nn.Embedding(
781
+ config.vocab_size, config.hidden_size, padding_idx=config.pad_token_id
782
+ )
783
+
784
+ def forward(self, input_ids: torch.LongTensor) -> torch.FloatTensor:
785
+ return self.wte(input_ids)
786
+
787
+
788
+ class PhiModel(PhiPreTrainedModel):
789
+ """
790
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`PhiDecoderLayer`]
791
+
792
+ Args:
793
+ config: PhiConfig
794
+ """
795
+
796
+ def __init__(self, config: PhiConfig):
797
+ super().__init__(config)
798
+ self.padding_idx = config.pad_token_id
799
+ self.vocab_size = config.vocab_size
800
+
801
+ self.embd = Embedding(config)
802
+ self.embed_dropout = nn.Dropout(config.embd_pdrop)
803
+ self.h = nn.ModuleList(
804
+ [
805
+ PhiDecoderLayer(config, layer_idx)
806
+ for layer_idx in range(config.num_hidden_layers)
807
+ ]
808
+ )
809
+ self._use_flash_attention_2 = config._attn_implementation == "flash_attention_2"
810
+
811
+ self.gradient_checkpointing = False
812
+ # Initialize weights and apply final processing
813
+ self.post_init()
814
+
815
+ def get_input_embeddings(self):
816
+ return self.embd.wte
817
+
818
+ def set_input_embeddings(self, value):
819
+ self.embd.wte = value
820
+
821
+ def forward(
822
+ self,
823
+ input_ids: torch.LongTensor = None,
824
+ attention_mask: Optional[torch.Tensor] = None,
825
+ position_ids: Optional[torch.LongTensor] = None,
826
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
827
+ inputs_embeds: Optional[torch.FloatTensor] = None,
828
+ use_cache: Optional[bool] = None,
829
+ output_attentions: Optional[bool] = None,
830
+ output_hidden_states: Optional[bool] = None,
831
+ return_dict: Optional[bool] = None,
832
+ ) -> Union[Tuple, BaseModelOutputWithPast]:
833
+ output_attentions = (
834
+ output_attentions
835
+ if output_attentions is not None
836
+ else self.config.output_attentions
837
+ )
838
+ output_hidden_states = (
839
+ output_hidden_states
840
+ if output_hidden_states is not None
841
+ else self.config.output_hidden_states
842
+ )
843
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
844
+
845
+ return_dict = (
846
+ return_dict if return_dict is not None else self.config.use_return_dict
847
+ )
848
+
849
+ # retrieve input_ids and inputs_embeds
850
+ if input_ids is not None and inputs_embeds is not None:
851
+ raise ValueError(
852
+ "You cannot specify both input_ids and inputs_embeds at the same time"
853
+ )
854
+ elif input_ids is not None:
855
+ batch_size, seq_length = input_ids.shape[:2]
856
+ elif inputs_embeds is not None:
857
+ batch_size, seq_length = inputs_embeds.shape[:2]
858
+ else:
859
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
860
+
861
+ past_key_values_length = 0
862
+
863
+ if self.gradient_checkpointing and self.training:
864
+ if use_cache:
865
+ logger.warning_once(
866
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
867
+ )
868
+ use_cache = False
869
+
870
+ if use_cache:
871
+ use_legacy_cache = not isinstance(past_key_values, Cache)
872
+ if use_legacy_cache:
873
+ past_key_values = DynamicCache.from_legacy_cache(past_key_values)
874
+ past_key_values_length = past_key_values.get_usable_length(seq_length)
875
+
876
+ if position_ids is None:
877
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
878
+ position_ids = torch.arange(
879
+ past_key_values_length,
880
+ seq_length + past_key_values_length,
881
+ dtype=torch.long,
882
+ device=device,
883
+ )
884
+ position_ids = position_ids.unsqueeze(0)
885
+
886
+ if inputs_embeds is None:
887
+ inputs_embeds = self.embd(input_ids)
888
+
889
+ inputs_embeds = self.embed_dropout(inputs_embeds)
890
+
891
+ # Attention mask.
892
+ if self._use_flash_attention_2:
893
+ # 2d mask is passed through the layers
894
+ attention_mask = (
895
+ attention_mask
896
+ if (attention_mask is not None and 0 in attention_mask)
897
+ else None
898
+ )
899
+ else:
900
+ # 4d mask is passed through the layers
901
+ attention_mask = _prepare_4d_causal_attention_mask(
902
+ attention_mask,
903
+ (batch_size, seq_length),
904
+ inputs_embeds,
905
+ past_key_values_length,
906
+ )
907
+
908
+ hidden_states = inputs_embeds
909
+
910
+ # decoder layers
911
+ all_hidden_states = () if output_hidden_states else None
912
+ all_self_attns = () if output_attentions else None
913
+ next_decoder_cache = None
914
+
915
+ for decoder_layer in self.h:
916
+ if output_hidden_states:
917
+ all_hidden_states += (hidden_states,)
918
+
919
+ if self.gradient_checkpointing and self.training:
920
+ layer_outputs = self._gradient_checkpointing_func(
921
+ decoder_layer.__call__,
922
+ hidden_states,
923
+ attention_mask,
924
+ position_ids,
925
+ past_key_values,
926
+ output_attentions,
927
+ )
928
+ else:
929
+ layer_outputs = decoder_layer(
930
+ hidden_states,
931
+ attention_mask=attention_mask,
932
+ position_ids=position_ids,
933
+ past_key_value=past_key_values,
934
+ output_attentions=output_attentions,
935
+ use_cache=use_cache,
936
+ )
937
+
938
+ hidden_states = layer_outputs[0]
939
+
940
+ if use_cache:
941
+ next_decoder_cache = layer_outputs[2 if output_attentions else 1]
942
+
943
+ if output_attentions:
944
+ all_self_attns += (layer_outputs[1],)
945
+
946
+ # add hidden states from the last decoder layer
947
+ if output_hidden_states:
948
+ all_hidden_states += (hidden_states,)
949
+
950
+ next_cache = None
951
+ if use_cache:
952
+ next_cache = (
953
+ next_decoder_cache.to_legacy_cache()
954
+ if use_legacy_cache
955
+ else next_decoder_cache
956
+ )
957
+ if not return_dict:
958
+ return tuple(
959
+ v
960
+ for v in [hidden_states, next_cache, all_hidden_states, all_self_attns]
961
+ if v is not None
962
+ )
963
+ return BaseModelOutputWithPast(
964
+ last_hidden_state=hidden_states,
965
+ past_key_values=next_cache,
966
+ hidden_states=all_hidden_states,
967
+ attentions=all_self_attns,
968
+ )
969
+
970
+
971
+ class CausalLMHead(nn.Module):
972
+ """Causal Language Modeling head. Simplified version."""
973
+
974
+ def __init__(self, config):
975
+ super().__init__()
976
+ self.ln = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
977
+ self.linear = nn.Linear(config.hidden_size, config.vocab_size)
978
+
979
+ def forward(self, hidden_states):
980
+ return self.linear(self.ln(hidden_states))
981
+
982
+
983
+ class PhiForCausalLM(PhiPreTrainedModel):
984
+ _tied_weights_keys = ["lm_head.linear.weight"]
985
+
986
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.__init__ with Llama->Phi,bias=False->bias=True
987
+ def __init__(self, config):
988
+ super().__init__(config)
989
+ self.transformer = PhiModel(config)
990
+ self.vocab_size = config.vocab_size
991
+ self.lm_head = CausalLMHead(config)
992
+
993
+ # Initialize weights and apply final processing
994
+ self.post_init()
995
+
996
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_input_embeddings
997
+ def get_input_embeddings(self):
998
+ return self.transformer.embd.wte
999
+
1000
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_input_embeddings
1001
+ def set_input_embeddings(self, value):
1002
+ self.model.embd.wte = value
1003
+
1004
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_output_embeddings
1005
+ def get_output_embeddings(self):
1006
+ return self.lm_head.linear
1007
+
1008
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_output_embeddings
1009
+ def set_output_embeddings(self, new_embeddings):
1010
+ self.lm_head.linear = new_embeddings
1011
+
1012
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_decoder
1013
+ def set_decoder(self, decoder):
1014
+ self.model = decoder
1015
+
1016
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_decoder
1017
+ def get_decoder(self):
1018
+ return self.model
1019
+
1020
+ def forward(
1021
+ self,
1022
+ input_ids: torch.LongTensor = None,
1023
+ attention_mask: Optional[torch.Tensor] = None,
1024
+ position_ids: Optional[torch.LongTensor] = None,
1025
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1026
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1027
+ labels: Optional[torch.LongTensor] = None,
1028
+ use_cache: Optional[bool] = None,
1029
+ output_attentions: Optional[bool] = None,
1030
+ output_hidden_states: Optional[bool] = None,
1031
+ return_dict: Optional[bool] = None,
1032
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
1033
+ r"""
1034
+ Args:
1035
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1036
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
1037
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
1038
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
1039
+
1040
+ Returns:
1041
+
1042
+ Example:
1043
+
1044
+ ```python
1045
+ >>> from transformers import AutoTokenizer, PhiForCausalLM
1046
+
1047
+ >>> model = PhiForCausalLM.from_pretrained("microsoft/phi-1")
1048
+ >>> tokenizer = AutoTokenizer.from_pretrained("microsoft/phi-1")
1049
+
1050
+ >>> prompt = "This is an example script ."
1051
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
1052
+
1053
+ >>> # Generate
1054
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
1055
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
1056
+ 'This is an example script .\n\n\n\nfrom typing import List\n\ndef find_most_common_letter(words: List[str'
1057
+ ```"""
1058
+
1059
+ output_attentions = (
1060
+ output_attentions
1061
+ if output_attentions is not None
1062
+ else self.config.output_attentions
1063
+ )
1064
+ output_hidden_states = (
1065
+ output_hidden_states
1066
+ if output_hidden_states is not None
1067
+ else self.config.output_hidden_states
1068
+ )
1069
+ return_dict = (
1070
+ return_dict if return_dict is not None else self.config.use_return_dict
1071
+ )
1072
+
1073
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
1074
+ outputs = self.transformer(
1075
+ input_ids=input_ids,
1076
+ attention_mask=attention_mask,
1077
+ position_ids=position_ids,
1078
+ past_key_values=past_key_values,
1079
+ inputs_embeds=inputs_embeds,
1080
+ use_cache=use_cache,
1081
+ output_attentions=output_attentions,
1082
+ output_hidden_states=output_hidden_states,
1083
+ return_dict=return_dict,
1084
+ )
1085
+
1086
+ hidden_states = outputs[0]
1087
+ logits = self.lm_head(hidden_states)
1088
+
1089
+ loss = None
1090
+ if labels is not None:
1091
+ # Shift so that tokens < n predict n
1092
+ shift_logits = logits[..., :-1, :].contiguous()
1093
+ shift_labels = labels[..., 1:].contiguous()
1094
+ # Flatten the tokens
1095
+ loss_fct = CrossEntropyLoss()
1096
+ shift_logits = shift_logits.view(-1, self.config.vocab_size)
1097
+ shift_labels = shift_labels.view(-1)
1098
+ # Enable model parallelism
1099
+ shift_labels = shift_labels.to(shift_logits.device)
1100
+ loss = loss_fct(shift_logits, shift_labels)
1101
+
1102
+ if not return_dict:
1103
+ output = (logits,) + outputs[1:]
1104
+ return (loss,) + output if loss is not None else output
1105
+
1106
+ return CausalLMOutputWithPast(
1107
+ loss=loss,
1108
+ logits=logits,
1109
+ past_key_values=outputs.past_key_values,
1110
+ hidden_states=outputs.hidden_states,
1111
+ attentions=outputs.attentions,
1112
+ )
1113
+
1114
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.prepare_inputs_for_generation
1115
+ def prepare_inputs_for_generation(
1116
+ self,
1117
+ input_ids,
1118
+ past_key_values=None,
1119
+ attention_mask=None,
1120
+ inputs_embeds=None,
1121
+ **kwargs,
1122
+ ):
1123
+ if past_key_values is not None:
1124
+ if isinstance(past_key_values, Cache):
1125
+ cache_length = past_key_values.get_seq_length()
1126
+ past_length = past_key_values.seen_tokens
1127
+ max_cache_length = past_key_values.get_max_length()
1128
+ else:
1129
+ cache_length = past_length = past_key_values[0][0].shape[2]
1130
+ max_cache_length = None
1131
+
1132
+ # Keep only the unprocessed tokens:
1133
+ # 1 - If the length of the attention_mask exceeds the length of input_ids, then we are in a setting where
1134
+ # some of the inputs are exclusively passed as part of the cache (e.g. when passing input_embeds as
1135
+ # input)
1136
+ if (
1137
+ attention_mask is not None
1138
+ and attention_mask.shape[1] > input_ids.shape[1]
1139
+ ):
1140
+ input_ids = input_ids[:, -(attention_mask.shape[1] - past_length) :]
1141
+ # 2 - If the past_length is smaller than input_ids', then input_ids holds all input tokens. We can discard
1142
+ # input_ids based on the past_length.
1143
+ elif past_length < input_ids.shape[1]:
1144
+ input_ids = input_ids[:, past_length:]
1145
+ # 3 - Otherwise (past_length >= input_ids.shape[1]), let's assume input_ids only has unprocessed tokens.
1146
+
1147
+ # If we are about to go beyond the maximum cache length, we need to crop the input attention mask.
1148
+ if (
1149
+ max_cache_length is not None
1150
+ and attention_mask is not None
1151
+ and cache_length + input_ids.shape[1] > max_cache_length
1152
+ ):
1153
+ attention_mask = attention_mask[:, -max_cache_length:]
1154
+
1155
+ position_ids = kwargs.get("position_ids", None)
1156
+ if attention_mask is not None and position_ids is None:
1157
+ # create position_ids on the fly for batch generation
1158
+ position_ids = attention_mask.long().cumsum(-1) - 1
1159
+ position_ids.masked_fill_(attention_mask == 0, 1)
1160
+ if past_key_values:
1161
+ position_ids = position_ids[:, -input_ids.shape[1] :]
1162
+
1163
+ # if `inputs_embeds` are passed, we only want to use them in the 1st generation step
1164
+ if inputs_embeds is not None and past_key_values is None:
1165
+ model_inputs = {"inputs_embeds": inputs_embeds}
1166
+ else:
1167
+ model_inputs = {"input_ids": input_ids}
1168
+
1169
+ model_inputs.update(
1170
+ {
1171
+ "position_ids": position_ids,
1172
+ "past_key_values": past_key_values,
1173
+ "use_cache": kwargs.get("use_cache"),
1174
+ "attention_mask": attention_mask,
1175
+ }
1176
+ )
1177
+ return model_inputs
1178
+
1179
+ @staticmethod
1180
+ # Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM._reorder_cache
1181
+ def _reorder_cache(past_key_values, beam_idx):
1182
+ reordered_past = ()
1183
+ for layer_past in past_key_values:
1184
+ reordered_past += (
1185
+ tuple(
1186
+ past_state.index_select(0, beam_idx.to(past_state.device))
1187
+ for past_state in layer_past
1188
+ ),
1189
+ )
1190
+ return reordered_past
moondream.py ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from .vision_encoder import VisionEncoder
3
+ from .configuration_moondream import MoondreamConfig
4
+ from transformers import PreTrainedModel
5
+
6
+ from .modeling_phi import PhiForCausalLM
7
+ from .configuration_moondream import PhiConfig
8
+
9
+ class Moondream(PreTrainedModel):
10
+ config_class = MoondreamConfig
11
+ _supports_flash_attn_2 = True
12
+
13
+ def __init__(self, config):
14
+ super().__init__(config)
15
+ self.vision_encoder = VisionEncoder(
16
+ use_flash_attn=config._attn_implementation == "flash_attention_2"
17
+ )
18
+
19
+ if type(config.text_config) == dict:
20
+ phi_config = PhiConfig(
21
+ **config.text_config, attn_implementation=config._attn_implementation
22
+ )
23
+ else:
24
+ phi_config = config.text_config
25
+ self.text_model = PhiForCausalLM(phi_config)
26
+
27
+ @property
28
+ def device(self):
29
+ return self.text_model.device
30
+
31
+ def encode_image(self, image):
32
+ return self.vision_encoder(image)
33
+
34
+ def input_embeds(self, prompt, image_embeds, tokenizer):
35
+ def _tokenize(txt):
36
+ return tokenizer(
37
+ txt, return_tensors="pt", add_special_tokens=False
38
+ ).input_ids.to(self.device)
39
+
40
+ text_emb = self.text_model.get_input_embeddings()
41
+
42
+ # Add BOS token
43
+ embeds = []
44
+ embeds.append(
45
+ text_emb((torch.tensor([[tokenizer.bos_token_id]], device=self.device)))
46
+ )
47
+
48
+ if "<image>" not in prompt:
49
+ embeds.append(text_emb(_tokenize(prompt)))
50
+ else:
51
+ assert prompt.count("<image>") == 1
52
+ before, after = prompt.split("<image>")
53
+ if len(before) > 0:
54
+ embeds.append(text_emb(_tokenize(before)))
55
+ embeds.append(image_embeds.to(self.device))
56
+ if len(after) > 0:
57
+ embeds.append(text_emb(_tokenize(after)))
58
+
59
+ return torch.cat(embeds, dim=1)
60
+
61
+ def generate(
62
+ self,
63
+ image_embeds,
64
+ prompt,
65
+ tokenizer,
66
+ max_new_tokens=128,
67
+ **kwargs,
68
+ ):
69
+ generate_config = {
70
+ "eos_token_id": tokenizer.eos_token_id,
71
+ "bos_token_id": tokenizer.bos_token_id,
72
+ "pad_token_id": tokenizer.bos_token_id,
73
+ "max_new_tokens": max_new_tokens,
74
+ **kwargs,
75
+ }
76
+
77
+ with torch.no_grad():
78
+ inputs_embeds = self.input_embeds(prompt, image_embeds, tokenizer)
79
+ output_ids = self.text_model.generate(
80
+ inputs_embeds=inputs_embeds, **generate_config
81
+ )
82
+
83
+ return tokenizer.batch_decode(output_ids, skip_special_tokens=True)
84
+
85
+ def answer_question(
86
+ self,
87
+ image_embeds,
88
+ question,
89
+ tokenizer,
90
+ chat_history="",
91
+ result_queue=None,
92
+ **kwargs,
93
+ ):
94
+ prompt = f"<image>\n\n{chat_history}Question: {question}\n\nAnswer:"
95
+ answer = self.generate(
96
+ image_embeds,
97
+ prompt,
98
+ tokenizer=tokenizer,
99
+ max_new_tokens=512,
100
+ **kwargs,
101
+ )[0]
102
+ cleaned_answer = answer.strip()
103
+
104
+ # Use the result_queue to pass the result if it is provided
105
+ if result_queue:
106
+ result_queue.put(cleaned_answer)
107
+ else:
108
+ return cleaned_answer
109
+
110
+ def batch_answer(
111
+ self,
112
+ images,
113
+ prompts,
114
+ tokenizer,
115
+ **kwargs,
116
+ ):
117
+ image_embeds = self.encode_image(images)
118
+
119
+ templated_prompts = [
120
+ f"<image>\n\nQuestion: {prompt}\n\nAnswer:" for prompt in prompts
121
+ ]
122
+ prompt_embs = [
123
+ self.input_embeds(prompt, image_embed.unsqueeze(0), tokenizer)[0]
124
+ for prompt, image_embed in zip(templated_prompts, image_embeds)
125
+ ]
126
+
127
+ bos_emb = prompt_embs[0][0]
128
+ max_len = max([p.shape[0] for p in prompt_embs])
129
+
130
+ inputs_embeds = torch.cat(
131
+ [
132
+ torch.cat([bos_emb.repeat(max_len - p.shape[0], 1), p]).unsqueeze(0)
133
+ for p in prompt_embs
134
+ ],
135
+ dim=0,
136
+ )
137
+ attention_mask = torch.cat(
138
+ [
139
+ torch.cat(
140
+ [
141
+ torch.zeros(
142
+ 1,
143
+ max_len - p.shape[0],
144
+ device=self.device,
145
+ dtype=torch.long,
146
+ ),
147
+ torch.ones(1, p.shape[0], device=self.device, dtype=torch.long),
148
+ ],
149
+ dim=1,
150
+ )
151
+ for p in prompt_embs
152
+ ],
153
+ dim=0,
154
+ )
155
+
156
+ generate_config = {
157
+ "eos_token_id": tokenizer.eos_token_id,
158
+ "bos_token_id": tokenizer.bos_token_id,
159
+ "pad_token_id": tokenizer.bos_token_id,
160
+ "max_new_tokens": 512,
161
+ **kwargs,
162
+ }
163
+
164
+ with torch.no_grad():
165
+ output_ids = self.text_model.generate(
166
+ inputs_embeds=inputs_embeds,
167
+ attention_mask=attention_mask,
168
+ **generate_config,
169
+ )
170
+
171
+ return [
172
+ x.strip()
173
+ for x in tokenizer.batch_decode(output_ids, skip_special_tokens=True)
174
+ ]
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|endoftext|>",
3
+ "eos_token": "<|endoftext|>",
4
+ "unk_token": "<|endoftext|>"
5
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,323 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "50256": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "50257": {
13
+ "content": " ",
14
+ "lstrip": false,
15
+ "normalized": true,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": false
19
+ },
20
+ "50258": {
21
+ "content": " ",
22
+ "lstrip": false,
23
+ "normalized": true,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": false
27
+ },
28
+ "50259": {
29
+ "content": " ",
30
+ "lstrip": false,
31
+ "normalized": true,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": false
35
+ },
36
+ "50260": {
37
+ "content": " ",
38
+ "lstrip": false,
39
+ "normalized": true,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": false
43
+ },
44
+ "50261": {
45
+ "content": " ",
46
+ "lstrip": false,
47
+ "normalized": true,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": false
51
+ },
52
+ "50262": {
53
+ "content": " ",
54
+ "lstrip": false,
55
+ "normalized": true,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": false
59
+ },
60
+ "50263": {
61
+ "content": " ",
62
+ "lstrip": false,
63
+ "normalized": true,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": false
67
+ },
68
+ "50264": {
69
+ "content": " ",
70
+ "lstrip": false,
71
+ "normalized": true,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": false
75
+ },
76
+ "50265": {
77
+ "content": " ",
78
+ "lstrip": false,
79
+ "normalized": true,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": false
83
+ },
84
+ "50266": {
85
+ "content": " ",
86
+ "lstrip": false,
87
+ "normalized": true,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": false
91
+ },
92
+ "50267": {
93
+ "content": " ",
94
+ "lstrip": false,
95
+ "normalized": true,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": false
99
+ },
100
+ "50268": {
101
+ "content": " ",
102
+ "lstrip": false,
103
+ "normalized": true,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": false
107
+ },
108
+ "50269": {
109
+ "content": " ",
110
+ "lstrip": false,
111
+ "normalized": true,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": false
115
+ },
116
+ "50270": {
117
+ "content": " ",
118
+ "lstrip": false,
119
+ "normalized": true,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": false
123
+ },
124
+ "50271": {
125
+ "content": " ",
126
+ "lstrip": false,
127
+ "normalized": true,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": false
131
+ },
132
+ "50272": {
133
+ "content": " ",
134
+ "lstrip": false,
135
+ "normalized": true,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": false
139
+ },
140
+ "50273": {
141
+ "content": " ",
142
+ "lstrip": false,
143
+ "normalized": true,
144
+ "rstrip": false,
145
+ "single_word": false,
146
+ "special": false
147
+ },
148
+ "50274": {
149
+ "content": " ",
150
+ "lstrip": false,
151
+ "normalized": true,
152
+ "rstrip": false,
153
+ "single_word": false,
154
+ "special": false
155
+ },
156
+ "50275": {
157
+ "content": " ",
158
+ "lstrip": false,
159
+ "normalized": true,
160
+ "rstrip": false,
161
+ "single_word": false,
162
+ "special": false
163
+ },
164
+ "50276": {
165
+ "content": " ",
166
+ "lstrip": false,
167
+ "normalized": true,
168
+ "rstrip": false,
169
+ "single_word": false,
170
+ "special": false
171
+ },
172
+ "50277": {
173
+ "content": " ",
174
+ "lstrip": false,
175
+ "normalized": true,
176
+ "rstrip": false,
177
+ "single_word": false,
178
+ "special": false
179
+ },
180
+ "50278": {
181
+ "content": " ",
182
+ "lstrip": false,
183
+ "normalized": true,
184
+ "rstrip": false,
185
+ "single_word": false,
186
+ "special": false
187
+ },
188
+ "50279": {
189
+ "content": " ",
190
+ "lstrip": false,
191
+ "normalized": true,
192
+ "rstrip": false,
193
+ "single_word": false,
194
+ "special": false
195
+ },
196
+ "50280": {
197
+ "content": " ",
198
+ "lstrip": false,
199
+ "normalized": true,
200
+ "rstrip": false,
201
+ "single_word": false,
202
+ "special": false
203
+ },
204
+ "50281": {
205
+ "content": " ",
206
+ "lstrip": false,
207
+ "normalized": true,
208
+ "rstrip": false,
209
+ "single_word": false,
210
+ "special": false
211
+ },
212
+ "50282": {
213
+ "content": " ",
214
+ "lstrip": false,
215
+ "normalized": true,
216
+ "rstrip": false,
217
+ "single_word": false,
218
+ "special": false
219
+ },
220
+ "50283": {
221
+ "content": " ",
222
+ "lstrip": false,
223
+ "normalized": true,
224
+ "rstrip": false,
225
+ "single_word": false,
226
+ "special": false
227
+ },
228
+ "50284": {
229
+ "content": " ",
230
+ "lstrip": false,
231
+ "normalized": true,
232
+ "rstrip": false,
233
+ "single_word": false,
234
+ "special": false
235
+ },
236
+ "50285": {
237
+ "content": " ",
238
+ "lstrip": false,
239
+ "normalized": true,
240
+ "rstrip": false,
241
+ "single_word": false,
242
+ "special": false
243
+ },
244
+ "50286": {
245
+ "content": " ",
246
+ "lstrip": false,
247
+ "normalized": true,
248
+ "rstrip": false,
249
+ "single_word": false,
250
+ "special": false
251
+ },
252
+ "50287": {
253
+ "content": "\t\t\t\t\t\t\t\t\t",
254
+ "lstrip": false,
255
+ "normalized": true,
256
+ "rstrip": false,
257
+ "single_word": false,
258
+ "special": false
259
+ },
260
+ "50288": {
261
+ "content": "\t\t\t\t\t\t\t\t",
262
+ "lstrip": false,
263
+ "normalized": true,
264
+ "rstrip": false,
265
+ "single_word": false,
266
+ "special": false
267
+ },
268
+ "50289": {
269
+ "content": "\t\t\t\t\t\t\t",
270
+ "lstrip": false,
271
+ "normalized": true,
272
+ "rstrip": false,
273
+ "single_word": false,
274
+ "special": false
275
+ },
276
+ "50290": {
277
+ "content": "\t\t\t\t\t\t",
278
+ "lstrip": false,
279
+ "normalized": true,
280
+ "rstrip": false,
281
+ "single_word": false,
282
+ "special": false
283
+ },
284
+ "50291": {
285
+ "content": "\t\t\t\t\t",
286
+ "lstrip": false,
287
+ "normalized": true,
288
+ "rstrip": false,
289
+ "single_word": false,
290
+ "special": false
291
+ },
292
+ "50292": {
293
+ "content": "\t\t\t\t",
294
+ "lstrip": false,
295
+ "normalized": true,
296
+ "rstrip": false,
297
+ "single_word": false,
298
+ "special": false
299
+ },
300
+ "50293": {
301
+ "content": "\t\t\t",
302
+ "lstrip": false,
303
+ "normalized": true,
304
+ "rstrip": false,
305
+ "single_word": false,
306
+ "special": false
307
+ },
308
+ "50294": {
309
+ "content": "\t\t",
310
+ "lstrip": false,
311
+ "normalized": true,
312
+ "rstrip": false,
313
+ "single_word": false,
314
+ "special": false
315
+ }
316
+ },
317
+ "bos_token": "<|endoftext|>",
318
+ "clean_up_tokenization_spaces": true,
319
+ "eos_token": "<|endoftext|>",
320
+ "model_max_length": 2048,
321
+ "tokenizer_class": "CodeGenTokenizer",
322
+ "unk_token": "<|endoftext|>"
323
+ }
versions.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ 2024-03-04
2
+ 2024-03-06
3
+ 2024-03-13
4
+ 2024-04-02
vision_encoder.py ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import torch.nn.functional as F
3
+ from torch import nn
4
+ from einops import rearrange
5
+ from torchvision.transforms.v2 import (
6
+ Compose,
7
+ Resize,
8
+ InterpolationMode,
9
+ ToImage,
10
+ ToDtype,
11
+ Normalize,
12
+ )
13
+ from transformers.utils import is_flash_attn_2_available
14
+
15
+ try:
16
+ if is_flash_attn_2_available():
17
+ from flash_attn.modules.mha import FlashSelfAttention
18
+ else:
19
+ FlashSelfAttention = None
20
+ except ImportError:
21
+ FlashSelfAttention = None
22
+
23
+
24
+ class Attention(nn.Module):
25
+
26
+ def __init__(self, dim, num_heads=16, use_flash_attn=False):
27
+ super().__init__()
28
+ assert dim % num_heads == 0, "dim should be divisible by num_heads"
29
+
30
+ self.num_heads = num_heads
31
+ self.head_dim = dim // num_heads
32
+
33
+ self.qkv = nn.Linear(dim, dim * 3)
34
+ self.proj = nn.Linear(dim, dim)
35
+
36
+ if use_flash_attn and FlashSelfAttention is not None:
37
+ self.flash_attn = FlashSelfAttention()
38
+ else:
39
+ self.flash_attn = None
40
+
41
+ torch.nn.init.kaiming_normal_(
42
+ self.qkv.weight, mode="fan_in", nonlinearity="relu"
43
+ )
44
+ torch.nn.init.kaiming_normal_(
45
+ self.proj.weight, mode="fan_in", nonlinearity="relu"
46
+ )
47
+
48
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
49
+ if self.flash_attn is not None:
50
+ qkv = self.qkv(x)
51
+ qkv = rearrange(
52
+ qkv, "... (three h d) -> ... three h d", three=3, h=self.num_heads
53
+ )
54
+ attn_output = self.flash_attn(qkv)
55
+ output = rearrange(attn_output, "... h d -> ... (h d)")
56
+ output = self.proj(output)
57
+ return output
58
+ else:
59
+ B, N, C = x.shape
60
+ qkv = (
61
+ self.qkv(x)
62
+ .reshape(B, N, 3, self.num_heads, self.head_dim)
63
+ .permute(2, 0, 3, 1, 4)
64
+ )
65
+ q, k, v = qkv.unbind(0)
66
+
67
+ x = F.scaled_dot_product_attention(q, k, v)
68
+
69
+ x = x.transpose(1, 2).reshape(B, N, C)
70
+ x = self.proj(x)
71
+ return x
72
+
73
+
74
+ class VitBlock(nn.Module):
75
+
76
+ def __init__(self, embed_dim, use_flash_attn=False):
77
+ super().__init__()
78
+ self.attn = Attention(embed_dim, use_flash_attn=use_flash_attn)
79
+ self.mlp = MLP(embed_dim, 4304)
80
+ self.norm1 = nn.LayerNorm(embed_dim)
81
+ self.norm2 = nn.LayerNorm(embed_dim)
82
+
83
+ def forward(self, x):
84
+ x = x + self.attn(self.norm1(x))
85
+ x = x + self.mlp(self.norm2(x))
86
+ return x
87
+
88
+
89
+ class VisionTransformer(nn.Module):
90
+
91
+ def __init__(self, use_flash_attn=False):
92
+ super().__init__()
93
+
94
+ embed_len = 729
95
+ embed_dim = 1152
96
+
97
+ self.patch_embed = LinearPatchEmbedding()
98
+ self.pos_embed = nn.Parameter(torch.randn(1, embed_len, embed_dim) * 0.02)
99
+ self.blocks = nn.Sequential(
100
+ *[VitBlock(embed_dim, use_flash_attn=use_flash_attn) for _ in range(27)]
101
+ )
102
+ self.norm = nn.LayerNorm(embed_dim)
103
+
104
+ def forward(self, x):
105
+ x = self.patch_embed(x)
106
+ x = x + self.pos_embed
107
+ for block in self.blocks:
108
+ x = block(x)
109
+ return self.norm(x)
110
+
111
+
112
+ class EncoderWrapper(nn.Module):
113
+
114
+ def __init__(self, use_flash_attn=False):
115
+ super().__init__()
116
+ self.model = nn.ModuleDict({"visual": VisionTransformer(use_flash_attn)})
117
+
118
+ def forward(self, x):
119
+ return self.model["visual"](x)
120
+
121
+
122
+ class LinearPatchEmbedding(nn.Module):
123
+
124
+ def __init__(self):
125
+ super().__init__()
126
+ self.linear = nn.Linear(588, 1152)
127
+
128
+ def forward(self, x):
129
+ b, c, hp1, wp2 = x.shape
130
+ p1, p2 = 14, 14
131
+ h, w = hp1 // p1, wp2 // p2
132
+ x = x.reshape(b, c, h, p1, w, p2)
133
+ x = x.permute(0, 2, 4, 1, 3, 5)
134
+ x = x.reshape(b, h * w, c * p1 * p2)
135
+
136
+ return self.linear(x)
137
+
138
+
139
+ class MLP(nn.Module):
140
+ def __init__(
141
+ self,
142
+ in_features: int,
143
+ hidden_features: int = None,
144
+ out_features: int = None,
145
+ ) -> None:
146
+ super().__init__()
147
+ out_features = out_features or in_features
148
+ hidden_features = hidden_features or in_features
149
+ self.fc1 = nn.Linear(in_features, hidden_features)
150
+ self.act = nn.GELU(approximate="tanh")
151
+ self.fc2 = nn.Linear(hidden_features, out_features)
152
+
153
+ torch.nn.init.kaiming_normal_(
154
+ self.fc1.weight, mode="fan_in", nonlinearity="relu"
155
+ )
156
+ torch.nn.init.kaiming_normal_(
157
+ self.fc2.weight, mode="fan_in", nonlinearity="relu"
158
+ )
159
+
160
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
161
+ x = self.fc1(x)
162
+ x = self.act(x)
163
+ x = self.fc2(x)
164
+ return x
165
+
166
+
167
+ class VisionProjection(nn.Module):
168
+ def __init__(self):
169
+ super().__init__()
170
+
171
+ image_embedding_dim = 1152
172
+ model_dim = 2048
173
+ hidden_dim = model_dim * 4
174
+
175
+ self.mlp = MLP(image_embedding_dim, hidden_dim, model_dim)
176
+
177
+ @property
178
+ def device(self):
179
+ return self.mlp.fc1.weight.device
180
+
181
+ def forward(self, x):
182
+ return self.mlp(x)
183
+
184
+
185
+ class VisionEncoder(nn.Module):
186
+
187
+ def __init__(self, use_flash_attn=False):
188
+ super().__init__()
189
+
190
+ self.encoder = EncoderWrapper(use_flash_attn)
191
+ self.projection = VisionProjection()
192
+
193
+ self.preprocess = Compose(
194
+ [
195
+ Resize(size=(378, 378), interpolation=InterpolationMode.BICUBIC),
196
+ ToImage(),
197
+ ToDtype(torch.float32, scale=True),
198
+ Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]),
199
+ ]
200
+ )
201
+
202
+ @property
203
+ def device(self):
204
+ return self.projection.mlp.fc1.weight.device
205
+
206
+ @property
207
+ def dtype(self):
208
+ return self.projection.mlp.fc1.weight.dtype
209
+
210
+ def __call__(self, images) -> torch.Tensor:
211
+ if not isinstance(images, list) and not isinstance(images, torch.Tensor):
212
+ images = [images]
213
+
214
+ with torch.no_grad():
215
+ # Skip preprocess if images are already tensors
216
+ if not isinstance(images, torch.Tensor) and not isinstance(
217
+ images[0], torch.Tensor
218
+ ):
219
+ images = [self.preprocess(image.convert("RGB")) for image in images]
220
+
221
+ if isinstance(images, list):
222
+ images = torch.stack(images)
223
+
224
+ x = images.to(self.device, dtype=self.dtype)
225
+ x = self.encoder(x)
226
+ x = self.projection(x)
227
+
228
+ return x
vocab.json ADDED
The diff for this file is too large to render. See raw diff