[Bugfix] Vendor MiniCPMV/MiniCPMO processors to unblock Transformers v5 (#44282)

Signed-off-by: guanwei-wu <b08901019@ntu.edu.tw>
Signed-off-by: wjinxu <1299461899@qq.com>
Co-authored-by: guanwei-wu <b08901019@ntu.edu.tw>
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
王金旭
2026-06-02 22:14:38 +08:00
committed by GitHub
parent 0cbc48c4f9
commit 0bdfd5eb84
7 changed files with 965 additions and 16 deletions
-11
View File
@@ -1,10 +1,7 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from importlib.metadata import version
import pytest
from packaging.version import Version
import vllm
from vllm.assets.image import ImageAsset
@@ -13,14 +10,6 @@ from vllm.platforms import current_platform
from ..utils import multi_gpu_test
pytestmark = pytest.mark.skipif(
Version("5.0") <= Version(version("transformers")),
reason=(
"MiniCPMV custom processor uses tokenizer.im_start_id which is not "
"available on TokenizersBackend in transformers v5.0+"
),
)
MODEL_PATH = "openbmb/MiniCPM-Llama3-V-2_5"
PROMPT_TEMPLATE = (
@@ -785,8 +785,6 @@ VLM_TEST_SETTINGS = {
get_stop_token_ids=lambda tok: [tok.eos_id, tok.eot_id],
hf_output_post_proc=model_utils.minicpmv_trunc_hf_output,
patch_hf_runner=model_utils.minicpmv_25_patch_hf_runner,
# FIXME: https://huggingface.co/openbmb/MiniCPM-V-2_6/discussions/55
marks=[pytest.mark.skip("HF import fails")],
),
"minicpmo_26": VLMTestInfo(
models=["openbmb/MiniCPM-o-2_6"],
@@ -800,8 +798,6 @@ VLM_TEST_SETTINGS = {
),
hf_output_post_proc=model_utils.minicpmv_trunc_hf_output,
patch_hf_runner=model_utils.minicpmo_26_patch_hf_runner,
# FIXME: https://huggingface.co/openbmb/MiniCPM-o-2_6/discussions/49
marks=[pytest.mark.skip("HF import fails")],
),
"minicpmv_26": VLMTestInfo(
models=["openbmb/MiniCPM-V-2_6"],
+36 -1
View File
@@ -26,7 +26,7 @@
import os
from collections.abc import Callable, Iterable, Mapping, Sequence
from typing import Annotated, Any, Literal, TypeAlias
from typing import TYPE_CHECKING, Annotated, Any, Literal, TypeAlias
import torch
from torch import nn
@@ -75,6 +75,9 @@ from .utils import AutoWeightsLoader, cast_overflow_tensors, maybe_prefix
CPU_DEVICE = torch.device("cpu")
if TYPE_CHECKING:
from vllm.transformers_utils.processors.minicpmo import MiniCPMOProcessor
if os.getenv("USE_FLAGOS") == "1":
import flag_gems
@@ -270,6 +273,38 @@ class MiniCPMOMultiModalDataParser(MiniCPMVMultiModalDataParser):
class MiniCPMOProcessingInfo(MiniCPMVProcessingInfo):
audio_pattern = "(<audio>./</audio>)"
def get_hf_processor(self, **kwargs: object) -> "MiniCPMOProcessor":
"""Get vendored MiniCPMOProcessor for multimodal (image+audio) inputs.
Creates a vendored processor that reuses the HF image processor,
feature extractor, and tokenizer; applies the correct audio pooling
configuration; and converts numpy arrays in the image processor to
lists for serialization compatibility. The returned processor is
compatible with Transformers v5.
"""
import numpy as np
hf_processor = self.ctx.get_hf_processor(**kwargs)
from vllm.transformers_utils.processors.minicpmo import MiniCPMOProcessor
# Create vendored processor with correct configuration
vendored_processor = MiniCPMOProcessor(
image_processor=hf_processor.image_processor,
feature_extractor=hf_processor.feature_extractor,
tokenizer=hf_processor.tokenizer,
pool_step=self.get_default_audio_pool_step(),
)
# Convert numpy arrays in image processor to lists for serialization
image_processor = vendored_processor.image_processor
for attr in ("mean", "std"):
val = getattr(image_processor, attr, None)
if val is not None and isinstance(val, np.ndarray):
setattr(image_processor, attr, val.tolist())
return vendored_processor
def get_data_parser(self):
return MiniCPMOMultiModalDataParser(
target_sr=self.get_default_audio_sampling_rate(),
+8
View File
@@ -545,6 +545,14 @@ class MiniCPMVProcessingInfo(BaseProcessingInfo):
def get_hf_processor(self, **kwargs: object):
hf_processor = self.ctx.get_hf_processor(**kwargs)
from vllm.transformers_utils.processors.minicpmv import MiniCPMVProcessor
vendored_processor = MiniCPMVProcessor(
image_processor=hf_processor.image_processor,
tokenizer=hf_processor.tokenizer,
)
hf_processor = vendored_processor
# NumPy arrays are considered as Iterable but not Sequence in
# https://github.com/huggingface/transformers/blob/main/src/transformers/image_transforms.py#L428
image_processor = hf_processor.image_processor # type: ignore
@@ -29,6 +29,8 @@ __all__ = [
"KimiAudioProcessor",
"KimiK25Processor",
"MiMoOmniProcessor",
"MiniCPMOProcessor",
"MiniCPMVProcessor",
"MistralCommonPixtralProcessor",
"MistralCommonVoxtralProcessor",
"NanoNemotronVLProcessor",
@@ -61,6 +63,8 @@ _CLASS_TO_MODULE: dict[str, str] = {
"KimiAudioProcessor": "vllm.transformers_utils.processors.kimi_audio",
"KimiK25Processor": "vllm.transformers_utils.processors.kimi_k25",
"MiMoOmniProcessor": "vllm.transformers_utils.processors.mimo_v2_omni",
"MiniCPMOProcessor": "vllm.transformers_utils.processors.minicpmo",
"MiniCPMVProcessor": "vllm.transformers_utils.processors.minicpmv",
"MistralCommonPixtralProcessor": "vllm.transformers_utils.processors.pixtral",
"MistralCommonVoxtralProcessor": "vllm.transformers_utils.processors.voxtral",
"Moondream3Processor": "vllm.transformers_utils.processors.moondream3",
@@ -0,0 +1,603 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# coding=utf-8
# Copyright 2025 The OpenBMB 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.
"""
Processor class for MiniCPMO.
"""
import math
from typing import Literal, TypeAlias
import numpy as np
import regex
import torch
import torchaudio
from transformers.image_processing_utils import BatchFeature
from transformers.image_utils import ImageInput
from transformers.processing_utils import ProcessorMixin
from transformers.tokenization_utils_base import PreTokenizedInput, TextInput
from transformers.utils import TensorType
MiniCPMOBatchFeature: TypeAlias = BatchFeature
class MiniCPMOProcessor(ProcessorMixin):
r"""
Constructs a MiniCPMV processor which wraps a MiniCPMV image
processor and a MiniCPMV tokenizer into a single processor.
[`MiniCPMVProcessor`] offers all the functionalities of
[`MiniCPMVImageProcessor`] and [`LlamaTokenizerWrapper`]. See the
[`~MiniCPMVProcessor.__call__`] and [`~MiniCPMVProcessor.decode`]
for more information.
Args:
image_processor ([`MiniCPMVImageProcessor`], *optional*):
The image processor is a required input.
tokenizer ([`LlamaTokenizerWrapper`], *optional*):
The tokenizer is a required input.
"""
attributes = ["image_processor", "feature_extractor", "tokenizer"]
feature_extractor_class = "WhisperFeatureExtractor"
image_processor_class = "AutoImageProcessor"
tokenizer_class = "AutoTokenizer"
def __init__(
self,
image_processor=None,
feature_extractor=None,
tokenizer=None,
pool_step=2,
):
super().__init__(image_processor, feature_extractor, tokenizer)
self.version = image_processor.version
self.pool_step = pool_step
def _safe_get_token_id(self, attr_name, default_token_str):
"""Get token ID safely, with fallback to default."""
val = getattr(self.tokenizer, attr_name, None)
if val is None:
val = self.tokenizer.convert_tokens_to_ids(default_token_str)
if val is None:
return -1
return val
def _safe_get_token_str(self, attr_name, default_token_str):
"""Get token string safely, with fallback to default."""
return getattr(self.tokenizer, attr_name, default_token_str)
def __call__(
self,
text: TextInput | PreTokenizedInput | list[TextInput] | list[PreTokenizedInput],
images: ImageInput = None,
audios: np.ndarray | list[np.ndarray] | list[list[np.ndarray]] = None,
audio_parts: list | None = None,
max_length: int | None = None,
do_pad: bool | None = True,
max_slice_nums: int | None = None,
use_image_id: bool = True,
chunk_input: bool = False,
return_tensors: str | TensorType | None = TensorType.PYTORCH,
sampling_rate: int | None = 16000,
**kwargs,
) -> MiniCPMOBatchFeature:
if images is not None:
image_inputs = self.image_processor(
images,
do_pad=do_pad,
max_slice_nums=max_slice_nums,
return_tensors=return_tensors,
)
else:
image_inputs = None
if audios is not None:
audio_features, audio_feature_lens, audio_phs = self.audio_feature_extract(
audios, audio_parts, chunk_input, sampling_rate
)
else:
audio_features, audio_feature_lens, audio_phs = [], [], []
model_inputs = self._convert_omni_to_inputs(
image_inputs,
audio_phs,
text,
max_slice_nums=max_slice_nums,
use_image_id=use_image_id,
max_length=max_length,
**kwargs,
)
model_inputs["audio_features"] = audio_features
model_inputs["audio_feature_lens"] = audio_feature_lens
return MiniCPMOBatchFeature(data={**model_inputs})
def get_audio_placeholder(self, audio_lens, chunk_input, chunk_length):
pool_step = self.pool_step
feature_lens = math.ceil(audio_lens / self.feature_extractor.hop_length)
feature_lens = (feature_lens - 1) // 2 + 1
output_lens = (feature_lens - pool_step) // pool_step + 1
audio_start = getattr(self.tokenizer, "audio_start", "<audio>")
audio_end = getattr(self.tokenizer, "audio_end", "</audio>")
if chunk_input:
fbank_feat_in_chunk = int(chunk_length * 100)
cnn_feat_in_chunk = (fbank_feat_in_chunk - 1) // 2 + 1
audio_embeds_in_chunk = (cnn_feat_in_chunk - pool_step) // pool_step + 1
num_audio_chunks = (
output_lens + audio_embeds_in_chunk - 1
) // audio_embeds_in_chunk
place_holders = ""
total_unk_len = 0
for _ in range(num_audio_chunks):
unk_len = min(audio_embeds_in_chunk, output_lens - total_unk_len)
place_holders += audio_start + "<unk>" * unk_len + audio_end
total_unk_len += unk_len
audio_placeholder = place_holders
else:
audio_placeholder = audio_start + "<unk>" * output_lens + audio_end
return audio_placeholder
def audio_feature_extract(
self,
audios: np.ndarray | list[np.ndarray] | list[list[np.ndarray]],
audio_parts: list | None = None,
chunk_input: bool | None = False,
sampling_rate: int | None = None,
chunk_length: int | None = 1,
**kwargs,
):
if isinstance(audios, np.ndarray):
audios_list = [[audios]]
elif isinstance(audios[0], np.ndarray):
audios_list = [audios]
else:
audios_list = audios
if audio_parts is not None:
assert len(audio_parts) == len(audios_list)
for parts, audios in zip(audio_parts, audios_list):
assert len(parts) == len(audios)
audio_feature_lens_list = []
audio_ph_list = []
audio_features_all = []
# audio placeholder not dependent on audio_parts
for audios in audios_list:
if audios:
audio_ph_list.append(
[
self.get_audio_placeholder(len(a), chunk_input, chunk_length)
for a in audios
]
)
else:
audio_ph_list.append([])
for idx, audios in enumerate(audios_list):
if audio_parts is not None:
# same audio part merge
audio_part = audio_parts[idx]
merge_audio = []
cur_audio = []
for aid, (part, audio) in enumerate(zip(audio_part, audios)):
if aid == 0 or audio_part[aid] == audio_part[aid - 1]:
cur_audio.append(audio)
else:
merge_audio.append(np.hstack(cur_audio))
cur_audio = [audio]
if cur_audio:
merge_audio.append(np.hstack(cur_audio))
else:
merge_audio = audios
audio_feature_lens = []
# If the audio exceeds 30 seconds, split it into chunks every 30 seconds.
final_merge_audio = []
max_audio_inp_len = 30 * (sampling_rate or 16000)
for audio in merge_audio:
if len(audio) <= max_audio_inp_len:
final_merge_audio.append(audio)
else:
for i in range(math.ceil(len(audio) / max_audio_inp_len)):
final_merge_audio.append(
audio[i * max_audio_inp_len : (i + 1) * max_audio_inp_len]
)
if audios:
audio_inputs = self.feature_extractor(
final_merge_audio,
sampling_rate=sampling_rate,
return_attention_mask=True,
padding="max_length",
return_tensors="pt",
**kwargs,
)
audio_feature = audio_inputs["input_features"]
actual_lens = audio_inputs["attention_mask"].sum(dim=1)
for feat, lens in zip(audio_feature, actual_lens):
audio_features_all.append(feat[:, :lens])
audio_feature_lens.append(lens)
audio_feature_lens = torch.hstack(audio_feature_lens)
audio_feature_lens_list.append(audio_feature_lens)
else:
audio_feature_lens_list.append([])
if audio_features_all:
audio_features = [i.permute(1, 0) for i in audio_features_all]
audio_features = torch.nn.utils.rnn.pad_sequence(
audio_features, batch_first=True, padding_value=0.0
).permute(0, 2, 1)
else:
audio_features = []
return audio_features, audio_feature_lens_list, audio_ph_list
# Copied from transformers.models.clip.processing_clip.CLIPProcessor.batch_decode
# with CLIP->Llama
def batch_decode(self, *args, **kwargs):
"""
This method forwards all its arguments to LlamaTokenizerFast's
[`~PreTrainedTokenizer.batch_decode`]. Please refer to the
docstring of this method for more information.
"""
output_ids = args[0]
result_text = []
for result in output_ids:
result = result[result != 0]
if len(result) > 0 and result[0] == self.tokenizer.bos_id:
result = result[1:]
if len(result) > 0 and result[-1] == self.tokenizer.eos_id:
result = result[:-1]
result_text.append(
self.tokenizer.decode(result, *args[1:], **kwargs).strip()
)
return result_text
# Copied from transformers.models.clip.processing_clip.CLIPProcessor.decode
# with CLIP->Llama
def decode(self, *args, **kwargs):
"""
This method forwards all its arguments to LlamaTokenizerFast's
[`~PreTrainedTokenizer.decode`]. Please refer to the docstring
of this method for more information.
"""
result = args[0]
result = result[result != 0]
if len(result) > 0 and result[0] == self.tokenizer.bos_id:
result = result[1:]
if len(result) > 0 and (
result[-1] == self.tokenizer.eos_id
or (
hasattr(self.tokenizer, "eot_id")
and result[-1] == self.tokenizer.eot_id
)
):
result = result[:-1]
return self.tokenizer.decode(result, *args[1:], **kwargs).strip()
def _convert(self, input_str, max_inp_length: int | None = None, **kwargs):
input_ids = self.tokenizer.encode(input_str, **kwargs)
if max_inp_length is not None:
input_ids = input_ids[:max_inp_length]
input_ids = torch.tensor(input_ids, dtype=torch.int32)
## image bound
start_cond = (input_ids == self.tokenizer.im_start_id) | (
input_ids == self.tokenizer.slice_start_id
)
end_cond = (input_ids == self.tokenizer.im_end_id) | (
input_ids == self.tokenizer.slice_end_id
)
image_start_idx = torch.where(start_cond)[0]
image_start_idx += 1
image_end_idx = torch.where(end_cond)[0]
assert len(image_start_idx) == len(image_end_idx), (
f"The number of image start tokens ({len(image_start_idx)}) "
f"and end tokens ({len(image_end_idx)}) must match."
)
image_bounds = torch.hstack(
[
image_start_idx.unsqueeze(-1),
image_end_idx.unsqueeze(-1),
]
)
## audio bound
audio_start_idx = torch.where(input_ids == self.tokenizer.audio_start_id)[0]
audio_end_idx = torch.where(input_ids == self.tokenizer.audio_end_id)[0]
assert len(audio_start_idx) == len(audio_end_idx)
audio_bounds = torch.hstack(
[(audio_start_idx + 1).unsqueeze(-1), audio_end_idx.unsqueeze(-1)]
)
spk_start_idx = torch.where(input_ids == self.tokenizer.spk_start_id)[0]
spk_end_idx = torch.where(input_ids == self.tokenizer.spk_end_id)[0]
assert len(spk_start_idx) == len(spk_end_idx)
spk_bounds = torch.hstack(
[(spk_start_idx + 1).unsqueeze(-1), spk_end_idx.unsqueeze(-1)]
)
return input_ids, image_bounds, audio_bounds, spk_bounds
def _convert_omni_to_inputs(
self,
images,
audio_phs,
texts: str | list[str],
truncation=None,
max_length=None,
max_slice_nums=None,
use_image_id=None,
return_tensors=None,
**kwargs,
):
if images is None and audio_phs is None:
model_inputs = self.tokenizer(
texts,
return_tensors=return_tensors,
truncation=truncation,
max_length=max_length,
**kwargs,
)
return MiniCPMOBatchFeature(data={**model_inputs})
image_tag = "(<image>./</image>)"
image_pattern = r"\(<image>./</image>\)"
audio_tag = "(<audio>./</audio>)"
audio_pattern = r"\(<audio>./</audio>\)"
split_pattern = rf"({image_pattern}|{audio_pattern})"
if isinstance(texts, str):
texts = [texts]
bs = len(texts)
if images is not None:
images, image_sizes, tgt_sizes = (
images["pixel_values"],
images["image_sizes"],
images["tgt_sizes"],
)
else:
images, image_sizes, tgt_sizes = [[]] * bs, [[]] * bs, [[]] * bs
input_ids_list = []
image_bounds_list = []
audio_bounds_list = []
spk_bounds_list = []
for index, text in enumerate(texts):
text_chunks = regex.split(split_pattern, text)
image_tags = regex.findall(image_pattern, text)
audio_tags = regex.findall(audio_pattern, text)
if image_tags:
assert images is not None
assert len(image_tags) == len(image_sizes[index])
if audio_tags:
assert audio_phs is not None
assert len(audio_tags) == len(audio_phs[index])
image_id = 0
audio_id = 0
for i, chunk in enumerate(text_chunks):
if chunk == image_tag:
image_placeholder = (
self.image_processor.get_slice_image_placeholder(
image_sizes[index][image_id],
image_id,
max_slice_nums,
use_image_id,
)
)
image_id += 1
text_chunks[i] = image_placeholder
elif chunk == audio_tag:
audio_placeholder = audio_phs[index][audio_id]
audio_id += 1
text_chunks[i] = audio_placeholder
final_text = "".join(text_chunks)
input_ids, image_bounds, audio_bounds, spk_bounds = self._convert(
final_text, max_length, **kwargs
)
input_ids_list.append(input_ids)
image_bounds_list.append(image_bounds)
audio_bounds_list.append(audio_bounds)
spk_bounds_list.append(spk_bounds)
padded_input_ids, padding_lengths = self.pad(
input_ids_list, padding_side="left"
)
attention_mask = torch.ones_like(padded_input_ids, dtype=torch.bool)
for i, length in enumerate(padding_lengths):
image_bounds_list[i] = image_bounds_list[i] + length
audio_bounds_list[i] = audio_bounds_list[i] + length
spk_bounds_list[i] = spk_bounds_list[i] + length
attention_mask[i, :length] = False
data = {
"input_ids": padded_input_ids,
"attention_mask": attention_mask,
"pixel_values": images,
"image_sizes": image_sizes,
"image_bound": image_bounds_list,
"tgt_sizes": tgt_sizes,
"audio_bounds": audio_bounds_list,
"spk_bounds": spk_bounds_list,
}
return data
@property
# Copied from
# transformers.models.clip.processing_clip.CLIPProcessor.model_input_names
def model_input_names(self):
tokenizer_input_names = self.tokenizer.model_input_names
image_processor_input_names = self.image_processor.model_input_names
feature_extractor_input_names = self.feature_extractor.model_input_names
return list(
dict.fromkeys(
tokenizer_input_names
+ image_processor_input_names
+ feature_extractor_input_names
)
)
def pad(
self,
inputs,
max_length=None,
padding_value=0,
padding_side="left",
):
if not inputs:
return torch.empty(0), []
items = []
if isinstance(inputs[0], list):
assert isinstance(inputs[0][0], torch.Tensor)
for it in inputs:
for tr in it:
items.append(tr)
else:
assert isinstance(inputs[0], torch.Tensor)
items = inputs
batch_size = len(items)
shape = items[0].shape
dim = len(shape)
assert dim <= 2
if max_length is None:
max_length = 0
max_length = max(max_length, max(item.shape[-1] for item in items))
min_length = min(item.shape[-1] for item in items)
dtype = items[0].dtype
if dim == 0:
return torch.stack([item for item in items], dim=0), [0]
elif dim == 1:
if max_length == min_length:
return (
torch.stack([item for item in items], dim=0),
[0] * batch_size,
)
tensor = torch.zeros((batch_size, max_length), dtype=dtype) + padding_value
else:
tensor = (
torch.zeros((batch_size, max_length, shape[-1]), dtype=dtype)
+ padding_value
)
padding_length = []
for i, item in enumerate(items):
if dim == 1:
if padding_side == "left":
tensor[i, -len(item) :] = item.clone()
else:
tensor[i, : len(item)] = item.clone()
elif dim == 2:
if padding_side == "left":
tensor[i, -len(item) :, :] = item.clone()
else:
tensor[i, : len(item), :] = item.clone()
padding_length.append(tensor.shape[-1] - len(item))
return tensor, padding_length
class MelSpectrogramFeatures(torch.nn.Module):
def __init__(
self,
sample_rate=24000,
n_fft=1024,
hop_length=256,
n_mels=100,
padding: Literal["center", "same"] = "center",
):
super().__init__()
if padding not in ["center", "same"]:
raise ValueError("Padding must be 'center' or 'same'.")
self.padding = padding
self.mel_spec = torchaudio.transforms.MelSpectrogram(
sample_rate=sample_rate,
n_fft=n_fft,
hop_length=hop_length,
n_mels=n_mels,
center=padding == "center",
power=1,
)
def __call__(self, audio: torch.Tensor) -> torch.Tensor:
"""
audio: Tensor([num_channels, num_samples])
"""
return super().__call__(audio)
def forward(self, audio: torch.Tensor) -> torch.Tensor:
"""
audio: Tensor([num_channels, num_samples])
"""
mel: torch.Tensor = self.mel_spec(audio)
features = torch.log(torch.clip(mel, min=1e-5))
return features
class ChatTTSProcessor:
def __init__(self, text_tokenizer):
self.audio_processor = MelSpectrogramFeatures()
self.text_tokenizer = text_tokenizer
def __call__(self, text_list, audio_list):
assert len(text_list) == len(audio_list)
input_ids_varlen = []
for text in text_list:
input_ids_ = self.text_tokenizer.encode(
text, return_tensors="pt", add_special_tokens=False
) # [1, seq_len]
input_ids_ = input_ids_.squeeze(0) # [seq_len]
input_ids_varlen.append(input_ids_)
audio_features_varlen = []
for audio in audio_list:
assert audio.shape.__len__() == 1 # [seq_len]
try:
mel = self.audio_processor(audio) # [100(num_mel_bins), seq_len_mel]
except Exception as e:
raise e
audio_features_varlen.append(mel)
return {
"tts_input_ids_varlen": input_ids_varlen, # return List[Tensor]
"tts_input_features_varlen": audio_features_varlen, # return List[Tensor]
}
@@ -0,0 +1,314 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# 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 MiniCPMV.
"""
from typing import TypeAlias
import regex
import torch
from transformers.image_processing_utils import BatchFeature
from transformers.image_utils import ImageInput
from transformers.processing_utils import ProcessorMixin
from transformers.tokenization_utils_base import (
PaddingStrategy,
PreTokenizedInput,
TextInput,
TruncationStrategy,
)
from transformers.utils import TensorType
MiniCPMVBatchFeature: TypeAlias = BatchFeature
class MiniCPMVProcessor(ProcessorMixin):
r"""
Constructs a MiniCPMV processor which wraps a MiniCPMV image
processor and a MiniCPMV tokenizer into a single processor.
[`MiniCPMVProcessor`] offers all the functionalities of
[`MiniCPMVImageProcessor`] and [`LlamaTokenizerWrapper`]. See the
[`~MiniCPMVProcessor.__call__`] and [`~MiniCPMVProcessor.decode`]
for more information.
Args:
image_processor ([`MiniCPMVImageProcessor`], *optional*):
The image processor is a required input.
tokenizer ([`LlamaTokenizerWrapper`], *optional*):
The tokenizer is a required input.
"""
attributes = ["image_processor", "tokenizer"]
image_processor_class = "AutoImageProcessor"
tokenizer_class = "AutoTokenizer"
def __init__(self, image_processor=None, tokenizer=None):
super().__init__(image_processor, tokenizer)
self.version = image_processor.version
def __call__(
self,
text: TextInput | PreTokenizedInput | list[TextInput] | list[PreTokenizedInput],
images: ImageInput = None,
padding: bool | str | PaddingStrategy = False,
truncation: bool | str | TruncationStrategy = None,
max_length: int | None = None,
do_pad: bool | None = True,
return_tensors: str | TensorType | None = TensorType.PYTORCH,
) -> MiniCPMVBatchFeature:
"""Run the vendored MiniCPMV processor on a (text, images) pair.
Only single-sample input is currently supported; batched input is
coming soon. ``images`` is forwarded to the underlying image
processor and ``text`` is tokenized with image placeholders
replaced by the appropriate slice tokens. Returns a
``MiniCPMVBatchFeature`` with at minimum ``input_ids`` and (when
images are provided) ``pixel_values``, ``image_sizes``,
``image_bound`` and ``tgt_sizes``.
"""
if images is not None:
image_inputs = self.image_processor(
images, do_pad=do_pad, return_tensors=return_tensors
)
else:
image_inputs = {}
return self._convert_images_texts_to_inputs(
image_inputs, text, max_length=max_length
)
# Copied from transformers.models.clip.processing_clip.CLIPProcessor
# .batch_decode with CLIP->Llama
def batch_decode(self, *args, **kwargs):
"""
This method forwards all its arguments to LlamaTokenizerFast's
[`~PreTrainedTokenizer.batch_decode`]. Please refer to the
docstring of this method for more information.
"""
output_ids = args[0]
result_text = []
bos_id = getattr(
self.tokenizer,
"bos_token_id",
getattr(self.tokenizer, "bos_id", 1),
)
eos_id = getattr(
self.tokenizer,
"eos_token_id",
getattr(self.tokenizer, "eos_id", 2),
)
for result in output_ids:
result = result[result != 0]
if len(result) > 0 and result[0] == bos_id:
result = result[1:]
if len(result) > 0 and result[-1] == eos_id:
result = result[:-1]
result_text.append(
self.tokenizer.decode(result, *args[1:], **kwargs).strip()
)
return result_text
# Copied from transformers.models.clip.processing_clip.CLIPProcessor
# .decode with CLIP->Llama
def decode(self, *args, **kwargs):
"""
This method forwards all its arguments to LlamaTokenizerFast's
[`~PreTrainedTokenizer.decode`]. Please refer to the docstring
of this method for more information.
"""
result = args[0]
result = result[result != 0]
bos_id = getattr(
self.tokenizer,
"bos_token_id",
getattr(self.tokenizer, "bos_id", 1),
)
eos_id = getattr(
self.tokenizer,
"eos_token_id",
getattr(self.tokenizer, "eos_id", 2),
)
eot_id = getattr(self.tokenizer, "eot_id", None)
if len(result) > 0 and result[0] == bos_id:
result = result[1:]
if len(result) > 0 and (
result[-1] == eos_id or (eot_id is not None and result[-1] == eot_id)
):
result = result[:-1]
return self.tokenizer.decode(result, *args[1:], **kwargs).strip()
def _convert(self, input_str, max_inp_length: int | None = None):
add_bos = getattr(self.tokenizer, "add_bos_token", False)
if self.version == 2.5 or add_bos:
input_ids = self.tokenizer.encode(input_str)
else:
bos_id = getattr(
self.tokenizer,
"bos_token_id",
getattr(self.tokenizer, "bos_id", 1),
)
input_ids = [bos_id] + self.tokenizer.encode(input_str)
if max_inp_length is not None:
input_ids = input_ids[:max_inp_length]
input_ids = torch.tensor(input_ids, dtype=torch.int32)
im_start_id = getattr(
self.tokenizer,
"im_start_id",
self.tokenizer.convert_tokens_to_ids("<im_start>"),
)
im_end_id = getattr(
self.tokenizer,
"im_end_id",
self.tokenizer.convert_tokens_to_ids("<im_end>"),
)
image_start_tokens = torch.where(input_ids == im_start_id)[0]
image_start_tokens += 1
image_end_tokens = torch.where(input_ids == im_end_id)[0]
assert len(image_start_tokens) == len(image_end_tokens), (
f"The number of image start tokens ({len(image_start_tokens)}) "
f"and end tokens ({len(image_end_tokens)}) must match."
)
image_bounds = torch.hstack(
[
image_start_tokens.unsqueeze(-1),
image_end_tokens.unsqueeze(-1),
]
)
return input_ids.unsqueeze(0), image_bounds
def _convert_images_texts_to_inputs(
self,
images,
texts,
do_pad=False,
truncation=None,
max_length=None,
return_tensors=None,
):
if not len(images):
model_inputs = self.tokenizer(
texts,
return_tensors=return_tensors,
padding=do_pad,
truncation=truncation,
max_length=max_length,
)
return MiniCPMVBatchFeature(data={**model_inputs})
pattern = "(<image>./</image>)"
images_val = images["pixel_values"]
image_sizes = images["image_sizes"]
tgt_sizes = images["tgt_sizes"]
image_tags = regex.findall(pattern, texts)
assert len(image_tags) == len(image_sizes[0])
text_chunks = texts.split(pattern)
final_texts = ""
for i in range(len(image_tags)):
placeholder = self.image_processor.get_slice_image_placeholder(
image_sizes[0][i]
)
final_texts = final_texts + text_chunks[i] + placeholder
final_texts += text_chunks[-1]
input_ids, image_bounds = self._convert(final_texts, max_length)
return MiniCPMVBatchFeature(
data={
"input_ids": input_ids,
"pixel_values": images_val,
"image_sizes": image_sizes,
"image_bound": [image_bounds],
"tgt_sizes": tgt_sizes,
}
)
@property
# Copied from
# transformers.models.clip.processing_clip.CLIPProcessor.model_input_names
def model_input_names(self):
tokenizer_input_names = self.tokenizer.model_input_names
image_processor_input_names = self.image_processor.model_input_names
return list(dict.fromkeys(tokenizer_input_names + image_processor_input_names))
def pad(
self,
orig_items,
key,
max_length=None,
padding_value=0,
padding_side="left",
):
if not orig_items:
return torch.empty(0)
items = []
if isinstance(orig_items[0][key], list):
assert isinstance(orig_items[0][key][0], torch.Tensor)
for it in orig_items:
for tr in it[key]:
items.append({key: tr})
else:
assert isinstance(orig_items[0][key], torch.Tensor)
items = orig_items
batch_size = len(items)
shape = items[0][key].shape
dim = len(shape)
assert dim <= 3
if max_length is None:
max_length = 0
max_length = max(max_length, max(item[key].shape[-1] for item in items))
min_length = min(item[key].shape[-1] for item in items)
dtype = items[0][key].dtype
if dim == 1:
return torch.cat([item[key] for item in items], dim=0)
elif dim == 2:
if max_length == min_length:
return torch.cat([item[key] for item in items], dim=0)
tensor = torch.zeros((batch_size, max_length), dtype=dtype) + padding_value
else:
tensor = (
torch.zeros((batch_size, max_length, shape[-1]), dtype=dtype)
+ padding_value
)
for i, item in enumerate(items):
tensor_to_pad = item[key]
if tensor_to_pad.shape[0] != 1:
raise ValueError(
f"Expected leading batch size of 1 for padding, "
f"but got shape {tensor_to_pad.shape}"
)
squeezed = tensor_to_pad.squeeze(0)
if dim == 2:
if padding_side == "left":
tensor[i, -squeezed.shape[0] :] = squeezed.clone()
else:
tensor[i, : squeezed.shape[0]] = squeezed.clone()
elif dim == 3:
if padding_side == "left":
tensor[i, -squeezed.shape[0] :, :] = squeezed.clone()
else:
tensor[i, : squeezed.shape[0], :] = squeezed.clone()
return tensor