| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- # Copyright 2023 HuggingFace Inc. team. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """PyTorch Fuyu model."""
- import torch
- from torch import nn
- from ...cache_utils import Cache
- from ...generation import GenerationMixin
- from ...modeling_outputs import BaseModelOutputWithPooling, CausalLMOutputWithPast
- from ...modeling_utils import PreTrainedModel
- from ...models.auto.modeling_auto import AutoModel
- from ...processing_utils import Unpack
- from ...utils import TransformersKwargs, auto_docstring, can_return_tuple, logging, torch_compilable_check
- from .configuration_fuyu import FuyuConfig
- logger = logging.get_logger(__name__)
- @auto_docstring
- class FuyuPreTrainedModel(PreTrainedModel):
- config: FuyuConfig
- base_model_prefix = "model"
- input_modalities = ("image", "text")
- supports_gradient_checkpointing = True
- _supports_attention_backend = True
- _supports_flash_attn = True
- _supports_sdpa = True
- _supports_flex_attn = True
- _no_split_modules = []
- _skip_keys_device_placement = "past_key_values"
- @auto_docstring(
- custom_intro="""
- The Fuyu model which consists of a vision backbone and a language model, without a language modeling head.
- """
- )
- class FuyuModel(FuyuPreTrainedModel):
- def __init__(self, config: FuyuConfig):
- super().__init__(config)
- self.padding_idx = config.pad_token_id
- self.vocab_size = config.text_config.vocab_size
- self.language_model = AutoModel.from_config(config.text_config)
- self.vision_embed_tokens = nn.Linear(
- config.patch_size * config.patch_size * config.num_channels, config.hidden_size
- )
- self.gradient_checkpointing = False
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.language_model.get_input_embeddings()
- def set_input_embeddings(self, value):
- self.language_model.set_input_embeddings(value)
- def gather_continuous_embeddings(
- self,
- word_embeddings: torch.Tensor,
- continuous_embeddings: list[torch.Tensor],
- image_patch_input_indices: torch.Tensor,
- ) -> torch.Tensor:
- """This function places the continuous_embeddings into the word_embeddings at the locations
- indicated by image_patch_input_indices. Different batch elements can have different numbers of continuous
- embeddings.
- Args:
- word_embeddings (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`):
- Tensor of word embeddings.
- continuous_embeddings (`torch.FloatTensor` of shape `(batch_size, num_patches, hidden_size)`):
- Tensor of continuous embeddings. The length of the list is the batch size. Each entry is shape
- [num_image_embeddings, hidden], and num_image_embeddings needs to match the number of non-negative
- indices in image_patch_input_indices for that batch element.
- image_patch_input_indices (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
- Tensor of indices of the image patches in the input_ids tensor.
- """
- if not (word_embeddings.shape[0] == len(continuous_embeddings)):
- raise ValueError(
- f"Batch sizes must match! Got {len(continuous_embeddings)=} and {word_embeddings.shape[0]=}"
- )
- output_embeddings = word_embeddings.clone()
- for batch_idx in range(word_embeddings.shape[0]):
- # First, find the positions of all the non-negative values in image_patch_input_indices, those are the
- # positions in word_embeddings that we want to replace with content from continuous_embeddings.
- dst_indices = torch.nonzero(image_patch_input_indices[batch_idx] >= 0, as_tuple=True)[0]
- # Next look up those indices in image_patch_input_indices to find the indices in continuous_embeddings that we
- # want to use to replace the values in word_embeddings.
- src_indices = image_patch_input_indices[batch_idx][dst_indices]
- # Check if we have more indices than embeddings. Note that we could have fewer indices if images got truncated.
- if src_indices.shape[0] > continuous_embeddings[batch_idx].shape[0]:
- raise ValueError(
- f"Number of continuous embeddings {continuous_embeddings[batch_idx].shape=} does not match "
- f"number of continuous token ids {src_indices.shape=} in batch element {batch_idx}."
- )
- output_embeddings[batch_idx, dst_indices] = continuous_embeddings[batch_idx][src_indices].to(
- output_embeddings.device
- )
- return output_embeddings
- @can_return_tuple
- @auto_docstring
- def get_image_features(
- self, pixel_values: torch.FloatTensor, **kwargs: Unpack[TransformersKwargs]
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, image_size, image_size)`):
- The tensors corresponding to the input images.
- """
- patch_embeddings = self.vision_embed_tokens(pixel_values)
- return BaseModelOutputWithPooling(last_hidden_state=patch_embeddings)
- def get_placeholder_mask(
- self, input_ids: torch.LongTensor, inputs_embeds: torch.FloatTensor, image_features: torch.FloatTensor
- ):
- """
- Obtains multimodal placeholder mask from `input_ids` or `inputs_embeds`, and checks that the placeholder token count is
- equal to the length of multimodal features. If the lengths are different, an error is raised.
- """
- if input_ids is None:
- special_image_mask = inputs_embeds == self.get_input_embeddings()(
- torch.tensor(self.config.image_token_id, dtype=torch.long, device=inputs_embeds.device)
- )
- special_image_mask = special_image_mask.all(-1)
- else:
- special_image_mask = input_ids == self.config.image_token_id
- n_image_tokens = special_image_mask.sum()
- n_image_features = image_features.shape[0] * image_features.shape[1]
- special_image_mask = special_image_mask.unsqueeze(-1).expand_as(inputs_embeds).to(inputs_embeds.device)
- torch_compilable_check(
- inputs_embeds[special_image_mask].numel() == image_features.numel(),
- f"Image features and image tokens do not match, tokens: {n_image_tokens}, features: {n_image_features}",
- )
- return special_image_mask
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- # [batch_size, num_total_patches, patch_size_ x patch_size x num_channels ]
- image_patches: torch.Tensor | None = None,
- image_patches_indices: torch.Tensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- past_key_values: Cache | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- use_cache: bool | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | CausalLMOutputWithPast:
- r"""
- image_patches (`torch.FloatTensor` of shape `(batch_size, num_total_patches, patch_size_ x patch_size x num_channels)`, *optional*):
- Image patches to be used as continuous embeddings. The patches are flattened and then projected to the
- hidden size of the model.
- image_patches_indices (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
- Tensor of indices of the image patches in the input_ids tensor.
- """
- if (input_ids is None) ^ (inputs_embeds is not None):
- raise ValueError("You must specify exactly one of input_ids or inputs_embeds")
- if inputs_embeds is None:
- inputs_embeds = self.language_model.get_input_embeddings()(input_ids)
- seq_len = inputs_embeds.shape[1]
- if position_ids is None:
- device = input_ids.device if input_ids is not None else inputs_embeds.device
- past_key_values_length = past_key_values.get_seq_length() if past_key_values is not None else 0
- position_ids = torch.arange(
- past_key_values_length, seq_len + past_key_values_length, dtype=torch.long, device=device
- )
- position_ids = position_ids.unsqueeze(0)
- if image_patches is not None:
- patch_embeddings = self.get_image_features(image_patches, return_dict=True).last_hidden_state
- patch_embeddings = patch_embeddings.to(inputs_embeds.device, inputs_embeds.dtype)
- special_image_mask = self.get_placeholder_mask(
- input_ids, inputs_embeds=inputs_embeds, image_features=patch_embeddings
- )
- inputs_embeds = inputs_embeds.masked_scatter(special_image_mask, patch_embeddings)
- outputs = self.language_model(
- inputs_embeds=inputs_embeds,
- attention_mask=attention_mask,
- position_ids=position_ids,
- past_key_values=past_key_values,
- use_cache=use_cache,
- **kwargs,
- )
- return outputs
- @auto_docstring(
- custom_intro="""
- Fuyu Model with a language modeling head on top for causal language model conditioned on image patches and text.
- """
- )
- class FuyuForCausalLM(FuyuPreTrainedModel, GenerationMixin):
- _tied_weights_keys = {"lm_head.weight": "model.language_model.embed_tokens.weight"}
- def __init__(self, config: FuyuConfig):
- super().__init__(config)
- self.model = FuyuModel(config)
- self.lm_head = nn.Linear(config.text_config.hidden_size, config.text_config.vocab_size, bias=False)
- self.post_init()
- def get_input_embeddings(self):
- return self.model.get_input_embeddings()
- def set_input_embeddings(self, value):
- self.model.set_input_embeddings(value)
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- # [batch_size, num_total_patches, patch_size_ x patch_size x num_channels ]
- image_patches: torch.Tensor | None = None,
- image_patches_indices: torch.Tensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- past_key_values: Cache | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- use_cache: bool | None = None,
- labels: torch.Tensor | None = None,
- logits_to_keep: int | None = 0,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | CausalLMOutputWithPast:
- r"""
- image_patches (`torch.FloatTensor` of shape `(batch_size, num_total_patches, patch_size_ x patch_size x num_channels)`, *optional*):
- Image patches to be used as continuous embeddings. The patches are flattened and then projected to the
- hidden size of the model.
- image_patches_indices (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
- Tensor of indices of the image patches in the input_ids tensor.
- labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
- Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
- config.text_config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
- (masked), the loss is only computed for the tokens with labels in `[0, ..., config.text_config.vocab_size]`.
- Examples:
- ```python
- >>> from transformers import FuyuProcessor, FuyuForCausalLM
- >>> from PIL import Image
- >>> import httpx
- >>> from io import BytesIO
- >>> processor = FuyuProcessor.from_pretrained("adept/fuyu-8b")
- >>> model = FuyuForCausalLM.from_pretrained("adept/fuyu-8b")
- >>> url = "https://huggingface.co/datasets/hf-internal-testing/fixtures-captioning/resolve/main/bus.png"
- >>> with httpx.stream("GET", url) as response:
- ... image = Image.open(BytesIO(response.read()))
- >>> prompt = "Generate a coco-style caption.\n"
- >>> inputs = processor(images=image, text=prompt, return_tensors="pt")
- >>> outputs = model(**inputs)
- >>> generated_ids = model.generate(**inputs, max_new_tokens=7)
- >>> generation_text = processor.batch_decode(generated_ids[:, -7:], skip_special_tokens=True)
- >>> print(generation_text[0])
- A blue bus parked on the side of a road.
- ```"""
- outputs = self.model(
- input_ids=input_ids,
- image_patches=image_patches,
- image_patches_indices=image_patches_indices,
- inputs_embeds=inputs_embeds,
- attention_mask=attention_mask,
- position_ids=position_ids,
- past_key_values=past_key_values,
- use_cache=use_cache,
- **kwargs,
- )
- hidden_states = outputs[0]
- # Only compute necessary logits, and do not upcast them to float if we are not computing the loss
- slice_indices = slice(-logits_to_keep, None) if isinstance(logits_to_keep, int) else logits_to_keep
- logits = self.lm_head(hidden_states[:, slice_indices, :])
- loss = None
- if labels is not None:
- loss = self.loss_function(
- logits=logits, labels=labels, vocab_size=self.config.text_config.vocab_size, **kwargs
- )
- return CausalLMOutputWithPast(
- loss=loss,
- logits=logits,
- past_key_values=outputs.past_key_values,
- hidden_states=outputs.hidden_states,
- attentions=outputs.attentions,
- )
- def prepare_inputs_for_generation(
- self,
- input_ids,
- past_key_values=None,
- attention_mask=None,
- inputs_embeds=None,
- image_patches=None,
- image_patches_indices=None,
- is_first_iteration=False,
- **kwargs,
- ):
- # Overwritten -- in specific circumstances we don't want to forward image inputs to the model
- model_inputs = super().prepare_inputs_for_generation(
- input_ids,
- past_key_values=past_key_values,
- attention_mask=attention_mask,
- inputs_embeds=inputs_embeds,
- image_patches=image_patches,
- image_patches_indices=image_patches_indices,
- is_first_iteration=is_first_iteration,
- **kwargs,
- )
- if not is_first_iteration and kwargs.get("use_cache", True):
- # set image_patches and image_patches_indices to `None` for decoding stage
- model_inputs["image_patches_indices"] = None
- model_inputs["image_patches"] = None
- return model_inputs
- __all__ = ["FuyuForCausalLM", "FuyuPreTrainedModel", "FuyuModel"]
|