| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- # Copyright 2024 The HuggingFace Inc. team.
- #
- # 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.
- """
- Processor class for Idefics3.
- """
- import re
- from itertools import accumulate
- from typing import TYPE_CHECKING, Union
- import numpy as np
- from ...feature_extraction_utils import BatchFeature
- from ...image_utils import ImageInput, is_valid_image, load_image
- from ...processing_utils import MultiModalData, ProcessingKwargs, ProcessorMixin, Unpack
- from ...tokenization_utils_base import AddedToken, BatchEncoding, TextInput
- from ...utils import auto_docstring, logging
- if TYPE_CHECKING:
- from ...tokenization_utils_base import PreTokenizedInput
- logger = logging.get_logger(__name__)
- def is_url(val) -> bool:
- return isinstance(val, str) and val.startswith("http")
- def is_image_or_image_url(elem):
- return is_url(elem) or is_valid_image(elem)
- def _prompt_split_image(image_seq_len, image_rows, image_cols, fake_token_around_image, image_token, global_img_token):
- """Prompt with expanded image tokens for when the image is split into patches."""
- text_split_images = ""
- for n_h in range(image_rows):
- for n_w in range(image_cols):
- text_split_images += (
- f"{fake_token_around_image}" + f"<row_{n_h + 1}_col_{n_w + 1}>" + f"{image_token}" * image_seq_len
- )
- text_split_images += "\n"
- text_split_images += (
- f"\n{fake_token_around_image}"
- + f"{global_img_token}"
- + f"{image_token}" * image_seq_len
- + f"{fake_token_around_image}"
- )
- return text_split_images
- def _prompt_single_image(image_seq_len, fake_token_around_image, image_token, global_img_token):
- """Prompt with expanded image tokens for a single image."""
- return (
- f"{fake_token_around_image}"
- + f"{global_img_token}"
- + f"{image_token}" * image_seq_len
- + f"{fake_token_around_image}"
- )
- def get_image_prompt_string(
- image_rows, image_cols, image_seq_len, fake_token_around_image, image_token, global_img_token
- ):
- if image_rows == 0 and image_cols == 0:
- return _prompt_single_image(
- image_seq_len,
- fake_token_around_image=fake_token_around_image,
- image_token=image_token,
- global_img_token=global_img_token,
- )
- return _prompt_split_image(
- image_seq_len, image_rows, image_cols, fake_token_around_image, image_token, global_img_token
- )
- class Idefics3ProcessorKwargs(ProcessingKwargs, total=False):
- _defaults = {
- "text_kwargs": {
- "add_special_tokens": True,
- "padding": False,
- "is_split_into_words": False,
- "return_mm_token_type_ids": False,
- },
- "images_kwargs": {
- "return_row_col_info": True,
- },
- }
- @auto_docstring
- class Idefics3Processor(ProcessorMixin):
- def __init__(
- self, image_processor, tokenizer=None, image_seq_len: int = 169, chat_template: str | None = None, **kwargs
- ):
- r"""
- image_seq_len (`int`, *optional*, defaults to 169):
- The length of the image sequence i.e. the number of <image> tokens per image in the input.
- This parameter is used to build the string from the input prompt and image tokens and should match the
- value the model used. It is computed as: image_seq_len = int(((image_size // patch_size) ** 2) / (scale_factor**2))
- """
- self.fake_image_token = AddedToken("<fake_token_around_image>", normalized=False, special=True).content
- self.image_token = AddedToken("<image>", normalized=False, special=True).content
- self.end_of_utterance_token = AddedToken("<end_of_utterance>", normalized=False, special=True).content
- self.global_image_tag = "<global-img>" # https://github.com/huggingface/transformers/pull/32473/files/8063e5e17362571b693f1db95167f5443a3be1b2#r1734825341
- self.image_seq_len = image_seq_len
- self.image_token_id = tokenizer.convert_tokens_to_ids(self.image_token)
- self.fake_image_token_id = tokenizer.convert_tokens_to_ids(self.fake_image_token)
- self.global_image_token_id = tokenizer.convert_tokens_to_ids(self.global_image_tag)
- self.row_col_ids = [
- tokenizer.convert_tokens_to_ids(f"<row_{i + 1}_col_{j + 1}>") for i in range(6) for j in range(6)
- ]
- # This regex matches one or more occurrences of <global-img> tags (optionally surrounded by newline characters)
- # or <row_x_col_y> tags (where x and y are digits, also optionally surrounded by newline characters).
- self._regex_to_remove_extra_special_tokens = re.compile(r"(\n?<global-img>\n?|<row_\d+_col_\d+>\n?)+")
- tokens_to_add = {
- "additional_special_tokens": [
- self.fake_image_token,
- self.image_token,
- self.end_of_utterance_token,
- ]
- }
- tokenizer.add_special_tokens(tokens_to_add)
- self.image_token_id = tokenizer.convert_tokens_to_ids(self.image_token)
- super().__init__(image_processor, tokenizer, chat_template=chat_template, **kwargs)
- def _extract_images_from_prompts(self, prompts):
- prompt_images = []
- for prompt in prompts:
- images = []
- for elem in prompt:
- if is_valid_image(elem):
- images.append(elem)
- elif is_url(elem):
- images.append(load_image(elem))
- prompt_images.append(images)
- return prompt_images
- @auto_docstring
- def __call__(
- self,
- images: ImageInput | list[ImageInput] | list[list[ImageInput]] = None,
- text: Union[TextInput, "PreTokenizedInput", list[TextInput], list["PreTokenizedInput"]] = None,
- image_seq_len: int | None = None,
- **kwargs: Unpack[Idefics3ProcessorKwargs],
- ) -> BatchEncoding:
- r"""
- image_seq_len (`int`, *optional*):
- The length of the image sequence. If not provided, the default value of self.image_seq_len is used.
- image_seq_len should be equal to int(((image_size // patch_size) ** 2) / (scale_factor**2))
- """
- if text is None and images is None:
- raise ValueError("You must provide either `text` or `images`.")
- output_kwargs = self._merge_kwargs(
- Idefics3ProcessorKwargs,
- tokenizer_init_kwargs=self.tokenizer.init_kwargs,
- **kwargs,
- )
- image_seq_len = image_seq_len if image_seq_len is not None else self.image_seq_len
- return_mm_token_type_ids = output_kwargs["text_kwargs"].pop("return_mm_token_type_ids", False)
- return_tensors = output_kwargs["text_kwargs"].pop("return_tensors", None)
- n_images_in_text = []
- n_images_in_images = []
- inputs = {}
- if text is not None:
- if isinstance(text, str):
- text = [text]
- elif not isinstance(text, list) and not isinstance(text[0], str):
- raise ValueError("Invalid input text. Please provide a string, or a list of strings")
- n_images_in_text = [sample.count(self.image_token) for sample in text]
- if images is not None:
- if is_image_or_image_url(images):
- images = [[images]]
- elif isinstance(images, (list, tuple)) and is_image_or_image_url(images[0]):
- if text is not None:
- if sum(n_images_in_text) != len(images):
- raise ValueError(
- f"The total number of {self.image_token} tokens in the prompts should be the same as the number of images passed."
- f" Found {sum(n_images_in_text)} {self.image_token} tokens and {len(images)} images."
- )
- # Reorganize the images to match the prompts
- cumsum_images_in_text = [0] + list(accumulate(n_images_in_text))
- images = [
- images[cumsum_images_in_text[i] : cumsum_images_in_text[i + 1]]
- for i in range(len(n_images_in_text))
- ]
- else:
- images = [images]
- elif (
- not isinstance(images, (list, tuple))
- and not isinstance(images[0], (list, tuple))
- and not is_image_or_image_url(images[0][0])
- ):
- raise ValueError(
- "Invalid input images. Please provide a single image or a list of images or a list of list of images."
- )
- n_images_in_images = [len(sample) for sample in images]
- # Load images if they are URLs
- images = [[load_image(im) if is_url(im) else im for im in sample] for sample in images]
- image_inputs = self.image_processor(images, **output_kwargs["images_kwargs"])
- inputs.update(image_inputs)
- if text is not None:
- if n_images_in_images != n_images_in_text:
- raise ValueError(
- f"The number of images in the text {n_images_in_text} and images {n_images_in_images} should be the same."
- )
- image_rows = inputs.pop("rows", [[0] * n_images for n_images in n_images_in_text])
- image_cols = inputs.pop("cols", [[0] * n_images for n_images in n_images_in_text])
- fake_image_token = self.fake_image_token
- image_token = self.image_token
- global_img_token = self.global_image_tag
- prompt_strings = []
- batch_image_seq_lengths = []
- for sample, sample_rows, sample_cols in zip(text, image_rows, image_cols):
- # Replace the image token with fake tokens around the expanded image token sequence of length `image_seq_len`
- image_prompt_strings = []
- image_seq_lengths = []
- for n_rows, n_cols in zip(sample_rows, sample_cols):
- image_prompt_string = get_image_prompt_string(
- n_rows,
- n_cols,
- image_seq_len,
- image_token=image_token,
- fake_token_around_image=fake_image_token,
- global_img_token=global_img_token,
- )
- # Add +2 and +3 for special BOI/EOI/fake_image_wrapper tokens
- row_length = (self.image_seq_len + 2) * n_cols + 1
- image_seq_lengths.append((self.image_seq_len + 3) + row_length * n_rows)
- image_prompt_strings.append(image_prompt_string)
- batch_image_seq_lengths.append(image_seq_lengths)
- split_sample = sample.split(image_token)
- if len(split_sample) == 0:
- raise ValueError("The image token should be present in the text.")
- # Place in the image prompt strings where the image tokens are
- sample = split_sample[0]
- for i, image_prompt_string in enumerate(image_prompt_strings):
- sample += image_prompt_string + split_sample[i + 1]
- prompt_strings.append(sample)
- text_inputs = self.tokenizer(prompt_strings, **output_kwargs["text_kwargs"])
- self._check_special_mm_tokens(prompt_strings, text_inputs, modalities=["image"])
- inputs.update(text_inputs)
- elif text is not None:
- if any(n_images_in_text):
- raise ValueError(
- f"Found {sum(n_images_in_text)} {self.image_token} tokens in the text but no images were passed."
- )
- text_inputs = self.tokenizer(text=text, **output_kwargs["text_kwargs"])
- inputs.update(text_inputs)
- if return_mm_token_type_ids:
- inputs["mm_token_type_ids"] = self.create_mm_token_type_ids(inputs["input_ids"], batch_image_seq_lengths)
- return BatchFeature(data=inputs, tensor_type=return_tensors)
- def create_mm_token_type_ids(self, input_ids: list, batch_image_seq_lengths: list[int]) -> list[list[int]]:
- # We have to iterate for each list separately because inputs
- # might be non-padded lists and we can't cast numpy on that!
- # Then cast numpy as each input for faster indexing
- mm_token_type_ids = []
- for i, seq_lengths in enumerate(batch_image_seq_lengths):
- array_ids = np.array(input_ids[i])
- mm_token_types = np.zeros_like(array_ids)
- image_start_positions = np.where(array_ids == self.fake_image_token_id)[0]
- j = 0
- for seq_len in seq_lengths:
- if j >= len(image_start_positions):
- break
- start = image_start_positions[j]
- end = start + seq_len
- mm_token_types[start:end] = 1
- j = np.searchsorted(image_start_positions, end)
- mm_token_type_ids.append(mm_token_types.tolist())
- return mm_token_type_ids
- def _get_num_multimodal_tokens(self, image_sizes=None, **kwargs):
- """
- Computes the number of placeholder tokens needed for multimodal inputs with the given sizes.
- Args:
- image_sizes (`list[list[int]]`, *optional*):
- The input sizes formatted as (height, width) per each image.
- Returns:
- `MultiModalData`: A `MultiModalData` object holding number of tokens per each of the provided
- input modalities, along with other useful data.
- """
- vision_data = {}
- if image_sizes is not None:
- images_kwargs = Idefics3ProcessorKwargs._defaults.get("images_kwargs", {})
- images_kwargs.update(kwargs)
- num_image_row_cols = [
- self.image_processor.get_number_of_image_patches(*image_size, images_kwargs)
- for image_size in image_sizes
- ]
- base_image_length = self.image_seq_len + 3
- col_length = self.image_seq_len + 2
- num_image_tokens = []
- num_image_patches = []
- for num_patches, num_rows, num_cols in num_image_row_cols:
- row_length = col_length * num_cols + 1
- num_image_tokens.append(base_image_length + (row_length * num_rows))
- num_image_patches.append(num_patches)
- vision_data.update({"num_image_tokens": num_image_tokens, "num_image_patches": num_image_patches})
- return MultiModalData(**vision_data)
- __all__ = ["Idefics3Processor"]
|