"docker/Dockerfile.rocm" did not exist on "ecf67814f1a9e31e9802d93e8bd8b11a1c2810e7"
llava.py 30.4 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
from abc import abstractmethod
4
from functools import cached_property
5
from typing import (Final, Iterable, List, Literal, Mapping, Optional,
6
                    Protocol, Set, Tuple, TypedDict, TypeVar, Union)
7
8

import torch
9
import torch.nn as nn
10
from packaging.version import Version
11
12
from transformers import (BatchFeature, CLIPVisionConfig, LlavaConfig,
                          PixtralVisionConfig, PretrainedConfig,
13
                          SiglipVisionConfig)
14
from transformers import __version__ as TRANSFORMERS_VERSION
15
from transformers.models.llava import LlavaProcessor
16
from transformers.models.pixtral import PixtralProcessor
17
18

from vllm.attention import AttentionMetadata
19
from vllm.config import VllmConfig
20
from vllm.inputs import InputProcessingContext
21
from vllm.model_executor.layers.activation import get_act_fn
22
23
from vllm.model_executor.layers.linear import (ColumnParallelLinear,
                                               RowParallelLinear)
24
from vllm.model_executor.layers.quantization import QuantizationConfig
Joe Runde's avatar
Joe Runde committed
25
from vllm.model_executor.layers.sampler import SamplerOutput, get_sampler
26
from vllm.model_executor.sampling_metadata import SamplingMetadata
27
from vllm.multimodal import MULTIMODAL_REGISTRY
28
from vllm.multimodal.inputs import (MultiModalDataDict, MultiModalFieldConfig,
29
                                    MultiModalInputs, MultiModalKwargs,
30
                                    NestedTensors)
31
from vllm.multimodal.parse import (ImageEmbeddingItems, ImageProcessorItems,
32
                                   ImageSize, MultiModalDataItems)
33
from vllm.multimodal.processing import (BaseMultiModalProcessor,
34
35
36
                                        BaseProcessingInfo, ProcessingCache,
                                        PromptReplacement)
from vllm.multimodal.profiling import BaseDummyInputsBuilder, ProcessorInputs
37
from vllm.sequence import IntermediateTensors
38

39
from .clip import CLIPVisionModel
40
from .interfaces import SupportsMultiModal, SupportsPP
41
42
43
from .pixtral import (PixtralHFVisionModel,
                      get_pixtral_hf_image_feature_grid_size)
from .siglip import SiglipVisionModel
44
from .utils import (AutoWeightsLoader, flatten_bn, init_vllm_registered_model,
45
                    maybe_prefix, merge_multimodal_embeddings)
46
from .vision import get_vision_encoder_info
47
48


49
50
class LlavaImagePixelInputs(TypedDict):
    type: Literal["pixel_values"]
51
52
53
54
55
56
57
    data: Union[torch.Tensor, List[torch.Tensor]]
    """
    Shape: `(batch_size * num_images, num_channels, height, width)`

    Note that `height` or `width` may be different per batch and image,
    in which case the data is passed as a list instead of a batched tensor.
    """
58
59
60
61
62


class LlavaImageEmbeddingInputs(TypedDict):
    type: Literal["image_embeds"]
    data: torch.Tensor
63
    """Shape: `(batch_size * num_images, image_feature_size, hidden_size)`
64
65
66
67
68
69
70
71

    `hidden_size` must match the hidden size of language model backbone.
    """


LlavaImageInputs = Union[LlavaImagePixelInputs, LlavaImageEmbeddingInputs]


72
73
class LlavaMultiModalProjector(nn.Module):

74
75
76
77
    def __init__(self,
                 vision_hidden_size: int,
                 text_hidden_size: int,
                 projector_hidden_act: str,
78
                 multimodal_projector_bias: bool,
79
80
                 quant_config: Optional[QuantizationConfig] = None,
                 prefix: str = ""):
81
82
        super().__init__()

83
84
        self.linear_1 = ColumnParallelLinear(vision_hidden_size,
                                             text_hidden_size,
85
                                             bias=multimodal_projector_bias,
86
87
                                             quant_config=quant_config,
                                             prefix=f"{prefix}.linear_1")
88
        self.act = get_act_fn(projector_hidden_act)
89
90
        self.linear_2 = RowParallelLinear(text_hidden_size,
                                          text_hidden_size,
91
                                          bias=multimodal_projector_bias,
92
93
                                          quant_config=quant_config,
                                          prefix=f"{prefix}.linear_2")
94

95
    def forward(self, image_features: torch.Tensor) -> torch.Tensor:
96
        hidden_states, _ = self.linear_1(image_features)
97
        hidden_states = self.act(hidden_states)
98
        hidden_states, _ = self.linear_2(hidden_states)
99
100
101
        return hidden_states


102
103
class LlavaLikeConfig(Protocol):
    vision_config: Final[PretrainedConfig]
104
    image_token_index: Final[int]
105
    vision_feature_select_strategy: Final[str]
106
    vision_feature_layer: Final[Union[int, list[int]]]
107

108

109
110
111
112
class LlavaLikeProcessor(Protocol):
    image_token: Final[str]


113
class BaseLlavaProcessingInfo(BaseProcessingInfo):
114

115
    def get_hf_config(self) -> LlavaLikeConfig:
116
        return self.ctx.get_hf_config(LlavaConfig)
117

118
119
    def get_vision_encoder_info(self):
        return get_vision_encoder_info(self.get_hf_config())
120

121
    @abstractmethod
122
    def get_hf_processor(self) -> LlavaLikeProcessor:
123
        raise NotImplementedError
124

125
126
    def get_supported_mm_limits(self) -> Mapping[str, Optional[int]]:
        return {"image": None}
127

128
129
130
131
132
    def get_mm_max_tokens_per_item(
        self,
        seq_len: int,
        mm_counts: Mapping[str, int],
    ) -> Mapping[str, int]:
133
        return {"image": self.get_max_image_tokens()}
134

135
136
137
138
139
140
141
142
143
144
145
146
147
    def _apply_feature_select_strategy(
        self,
        strategy: str,
        encoder_num_image_tokens: int,
    ) -> int:
        if strategy == "default":
            return encoder_num_image_tokens - 1
        if strategy == "full":
            return encoder_num_image_tokens

        msg = f"Unexpected feature select strategy: {strategy!r}"
        raise NotImplementedError(msg)

148
149
150
151
152
153
154
155
    def get_num_image_tokens(
        self,
        *,
        image_width: int,
        image_height: int,
    ) -> int:
        hf_config = self.get_hf_config()
        vision_encoder_info = self.get_vision_encoder_info()
156

157
158
159
160
161
162
163
        return self._apply_feature_select_strategy(
            hf_config.vision_feature_select_strategy,
            vision_encoder_info.get_num_image_tokens(
                image_width=image_width,
                image_height=image_height,
            ),
        )
164

165
166
    def get_image_size_with_most_features(self) -> ImageSize:
        vision_encoder_info = self.get_vision_encoder_info()
167
168
        width = height = vision_encoder_info.get_image_size()
        return ImageSize(width=width, height=height)
169

170
171
    def get_max_image_tokens(self) -> int:
        target_width, target_height = self.get_image_size_with_most_features()
172

173
        return self.get_num_image_tokens(
174
175
176
177
            image_width=target_width,
            image_height=target_height,
        )

178
179
180
181
182
183

_I = TypeVar("_I", bound=BaseLlavaProcessingInfo)


class LlavaDummyInputsBuilder(BaseDummyInputsBuilder[_I]):

184
    def get_dummy_processor_inputs(
185
        self,
186
        seq_len: int,
187
188
189
190
        mm_counts: Mapping[str, int],
    ) -> ProcessorInputs:
        num_images = mm_counts.get("image", 0)

191
        processor = self.info.get_hf_processor()
192
        image_token = processor.image_token
193
194
        target_width, target_height = \
            self.info.get_image_size_with_most_features()
195
196
197
198
199
200
201
202
203
204
205
206
207
208

        mm_data = {
            "image":
            self._get_dummy_images(width=target_width,
                                   height=target_height,
                                   num_images=num_images)
        }

        return ProcessorInputs(
            prompt_text=image_token * num_images,
            mm_data=mm_data,
        )


209
class LlavaProcessingInfo(BaseLlavaProcessingInfo):
210

211
    def get_hf_processor(self):
212
213
214
        return self.ctx.get_hf_processor(LlavaProcessor)


215
class BaseLlavaMultiModalProcessor(BaseMultiModalProcessor[_I]):
216
217
218
219
220
221
222
223
224

    # Copied from BaseMultiModalProcessor
    @abstractmethod
    def _get_mm_fields_config(
        self,
        hf_inputs: BatchFeature,
        hf_processor_mm_kwargs: Mapping[str, object],
    ) -> Mapping[str, MultiModalFieldConfig]:
        raise NotImplementedError
225
226
227
228
229
230
231

    def _get_prompt_replacements(
        self,
        mm_items: MultiModalDataItems,
        hf_processor_mm_kwargs: Mapping[str, object],
        out_mm_kwargs: MultiModalKwargs,
    ) -> list[PromptReplacement]:
232
        hf_config = self.info.get_hf_config()
233
234
235
236
237
238
239
240
241
242
        image_token_id = hf_config.image_token_index

        def get_replacement(item_idx: int):
            images = mm_items.get_items(
                "image", (ImageEmbeddingItems, ImageProcessorItems))

            if isinstance(images, ImageEmbeddingItems):
                num_image_tokens = images.get_feature_size(item_idx)
            else:
                image_size = images.get_image_size(item_idx)
243
                num_image_tokens = self.info.get_num_image_tokens(
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
                    image_width=image_size.width,
                    image_height=image_size.height,
                )

            return [image_token_id] * num_image_tokens

        return [
            PromptReplacement(
                modality="image",
                target=[image_token_id],
                replacement=get_replacement,
            ),
        ]


259
260
class LlavaMultiModalProcessor(
        BaseLlavaMultiModalProcessor[LlavaProcessingInfo]):
261

262
263
264
265
266
267
268
269
270
271
272
    def _get_mm_fields_config(
        self,
        hf_inputs: BatchFeature,
        hf_processor_mm_kwargs: Mapping[str, object],
    ) -> Mapping[str, MultiModalFieldConfig]:
        return dict(
            pixel_values=MultiModalFieldConfig.batched("image"),
            image_embeds=MultiModalFieldConfig.batched("image"),
        )


273
class PixtralHFProcessingInfo(BaseLlavaProcessingInfo):
274

275
    def get_hf_processor(self):
276
277
        return self.ctx.get_hf_processor(PixtralProcessor)

278

279
280
class PixtralHFMultiModalProcessor(
        BaseMultiModalProcessor[PixtralHFProcessingInfo]):
281

282
283
284
285
286
287
288
289
290
291
292
    def _call_hf_processor(
        self,
        prompt: str,
        mm_data: Mapping[str, object],
        mm_kwargs: Mapping[str, object],
    ) -> BatchFeature:
        processed_outputs = super()._call_hf_processor(
            prompt=prompt,
            mm_data=mm_data,
            mm_kwargs=mm_kwargs,
        )
293

294
295
        pixel_values = processed_outputs.get("pixel_values")
        if pixel_values is not None:
296
            # Before/after https://github.com/huggingface/transformers/pull/35122
297
            if Version(TRANSFORMERS_VERSION) <= Version("4.48.3"):
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
                images = mm_data["images"]
                assert isinstance(images, list)

                # Original output: (1, num_images, C, H, W)
                # New output: (num_images, C, H, W)
                assert (isinstance(pixel_values, list)
                        and len(pixel_values) == 1)
                assert (isinstance(pixel_values[0], list)
                        and len(pixel_values[0]) == len(images))

                processed_outputs["pixel_values"] = pixel_values[0]
            else:
                # Avoid padding since we need the output for each image to be
                # independent of other images for the cache to work correctly
                image_sizes = processed_outputs["image_sizes"]
                assert len(pixel_values) == len(image_sizes)

                processed_outputs["pixel_values"] = [
                    p[:, :h, :w]
                    for p, (h, w) in zip(pixel_values, image_sizes)
                ]
319

320
        return processed_outputs
321

322
323
324
325
326
327
328
329
330
331
    def _get_mm_fields_config(
        self,
        hf_inputs: BatchFeature,
        hf_processor_mm_kwargs: Mapping[str, object],
    ) -> Mapping[str, MultiModalFieldConfig]:
        return dict(
            pixel_values=MultiModalFieldConfig.batched("image"),
            image_embeds=MultiModalFieldConfig.batched("image"),
        )

332
333
334
    def _get_prompt_replacements(
        self,
        mm_items: MultiModalDataItems,
335
336
        hf_processor_mm_kwargs: Mapping[str, object],
        out_mm_kwargs: MultiModalKwargs,
337
    ) -> list[PromptReplacement]:
338
        processor = self.info.get_hf_processor(**hf_processor_mm_kwargs)
339
        hf_config = self.info.get_hf_config()
340
341
        tokenizer = self.info.get_tokenizer()
        vocab = tokenizer.get_vocab()
342

343
344
345
        image_break_id = vocab[processor.image_break_token]
        image_token_id = hf_config.image_token_index
        image_end_id = vocab[processor.image_end_token]
346

347
348
        vision_config = hf_config.vision_config
        assert isinstance(vision_config, PixtralVisionConfig)
349

350
351
352
        def get_replacement(item_idx: int):
            images = mm_items.get_items("image", ImageProcessorItems)
            image_size = images.get_image_size(item_idx)
353

354
355
356
357
358
            ncols, nrows = get_pixtral_hf_image_feature_grid_size(
                vision_config,
                image_width=image_size.width,
                image_height=image_size.height,
            )
359

360
361
            tokens = ([image_token_id] * ncols + [image_break_id]) * nrows
            tokens[-1] = image_end_id
362

363
            return tokens
364
365
366
367
368

        return [
            PromptReplacement(
                modality="image",
                target=[image_token_id],
369
370
                replacement=get_replacement,
            ),
371
372
        ]

373

374
375
376
377
378
379
380
381
382
383
def _build_llava_or_pixtral_hf_info(
    ctx: InputProcessingContext, ) -> BaseLlavaProcessingInfo:
    hf_config = ctx.get_hf_config(LlavaConfig)

    if isinstance(hf_config.vision_config, PixtralVisionConfig):
        return PixtralHFProcessingInfo(ctx)

    return LlavaProcessingInfo(ctx)


384
def _build_llava_or_pixtral_hf_processor(
385
386
    info: _I,
    dummy_inputs: BaseDummyInputsBuilder[_I],
387
388
389
    *,
    cache: Optional[ProcessingCache] = None,
    enable_sanity_checks: bool = True,
390
) -> BaseMultiModalProcessor:
391
    if isinstance(info, PixtralHFProcessingInfo):
392
        return PixtralHFMultiModalProcessor(
393
394
395
396
397
398
399
400
401
402
            info,
            dummy_inputs,  # type: ignore
            cache=cache,
            enable_sanity_checks=enable_sanity_checks,
        )

    if isinstance(info, LlavaProcessingInfo):
        return LlavaMultiModalProcessor(
            info,
            dummy_inputs,  # type: ignore
403
404
            cache=cache,
            enable_sanity_checks=enable_sanity_checks,
405
        )
406

407
    raise NotImplementedError(type(info))
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430


def _get_num_hidden_layers(hf_config: LlavaLikeConfig) -> int:
    """Determine the number of hidden layers to initialize up to in the
    visual encoder.
    
    Args:
        hf_config: Model config with vision feature layer(s).
    """
    feature_layers = hf_config.vision_feature_layer
    num_hidden_layers = hf_config.vision_config.num_hidden_layers
    # If we have one feature layer, initialize up to that layer
    if isinstance(feature_layers, int):
        return _get_layer_index(feature_layers, num_hidden_layers)
    # If we have multiple feature layers, initialize up to the deepest one
    elif isinstance(feature_layers, (list, tuple)):
        return max(
            _get_layer_index(idx, num_hidden_layers) for idx in feature_layers)
    raise TypeError(f"vision_layer_feature type: {type(feature_layers)}"
                    " is not supported")


def _get_layer_index(feature_layer_index: int, num_hidden_layers: int) -> int:
431
    """Given a signed vision feature layer, get the number of hidden layers
432
433
434
435
436
437
438
439
440
    needed to leverage it.

    Args:
        feature_layer_index: Index of a required layer in the visual encoder.
        num_hidden_layers: The total number of hidden layers in the visual
            encoder.
    """
    if feature_layer_index < 0:
        return num_hidden_layers + feature_layer_index + 1
441
    return feature_layer_index
442
443
444
445
446
447
448


def init_vision_tower_for_llava(
    hf_config: LlavaLikeConfig,
    quant_config: Optional[QuantizationConfig],
    *,
    require_post_norm: Optional[bool] = None,
449
    prefix: str = "",
450
):
451
452
    vision_config = hf_config.vision_config

453
454
    # Initialize the vision tower only up to the deepest required feature layer
    num_hidden_layers = _get_num_hidden_layers(hf_config)
455
456
457
458

    if isinstance(vision_config, CLIPVisionConfig):
        return CLIPVisionModel(
            vision_config,
459
            quant_config=quant_config,
460
            num_hidden_layers_override=num_hidden_layers,
461
            require_post_norm=require_post_norm,
462
            prefix=prefix,
463
464
465
466
        )
    elif isinstance(vision_config, SiglipVisionConfig):
        return SiglipVisionModel(
            vision_config,
467
            quant_config=quant_config,
468
            num_hidden_layers_override=num_hidden_layers,
469
            require_post_norm=require_post_norm,
470
            prefix=prefix,
471
        )
472
    elif isinstance(vision_config, PixtralVisionConfig):
473
474
        return PixtralHFVisionModel(
            vision_config,
475
            quant_config=quant_config,
476
477
            num_hidden_layers_override=num_hidden_layers,
            require_post_norm=require_post_norm,
478
            prefix=prefix,
479
        )
480
481
482
483
484

    msg = f"Unsupported vision config: {type(vision_config)}"
    raise NotImplementedError(msg)


485
486
487
@MULTIMODAL_REGISTRY.register_processor(_build_llava_or_pixtral_hf_processor,
                                        info=_build_llava_or_pixtral_hf_info,
                                        dummy_inputs=LlavaDummyInputsBuilder)
488
class LlavaForConditionalGeneration(nn.Module, SupportsMultiModal, SupportsPP):
489
490
491
492

    packed_modules_mapping = {
        "qkv_proj": ["q_proj", "k_proj", "v_proj"],
        "gate_up_proj": ["gate_proj", "up_proj"]
493
    }
494

495
    def __init__(self, *, vllm_config: VllmConfig, prefix: str = "") -> None:
496
        super().__init__()
497

498
499
500
501
        config = vllm_config.model_config.hf_config
        quant_config = vllm_config.quant_config
        multimodal_config = vllm_config.model_config.multimodal_config

502
        self.config = config
503
        self.multimodal_config = multimodal_config
504

505
506
507
508
509
510
511
512
513
        # NOTE: These are special cases for Pixtral-12B in the HF-format
        # https://huggingface.co/mistral-community/pixtral-12b/blob/main/config.json  # noqa
        if (config.text_config.architectures is None
                and config.text_config.model_type == "mistral"):
            config.text_config.architectures = ["MistralForCausalLM"]
        if (config.projector_hidden_act is None
                and config.vision_config.hidden_act == "gelu"):
            config.projector_hidden_act = "gelu"

514
        # TODO: Optionally initializes this for supporting embeddings.
515
        self.vision_tower = init_vision_tower_for_llava(
516
517
518
            config,
            quant_config,
            require_post_norm=False,
519
            prefix=maybe_prefix(prefix, "vision_tower"))
520
521
522
        self.multi_modal_projector = LlavaMultiModalProjector(
            vision_hidden_size=config.vision_config.hidden_size,
            text_hidden_size=config.text_config.hidden_size,
523
            projector_hidden_act=config.projector_hidden_act,
524
            multimodal_projector_bias=config.multimodal_projector_bias,
525
526
            quant_config=quant_config,
            prefix=maybe_prefix(prefix, "multi_modal_projector"))
527

528
        self.language_model = init_vllm_registered_model(
529
            vllm_config=vllm_config,
530
531
532
            hf_config=config.text_config,
            prefix=maybe_prefix(prefix, "language_model"),
        )
533

534
535
536
537
538
539
540
541
        self.make_empty_intermediate_tensors = (
            self.language_model.make_empty_intermediate_tensors)

    @cached_property
    def sampler(self):
        if hasattr(self.language_model, "sampler"):
            return self.language_model.sampler

Joe Runde's avatar
Joe Runde committed
542
        return get_sampler()
543

544
545
546
547
548
549
550
    def _validate_pixel_values(self, data: torch.Tensor) -> torch.Tensor:
        h = w = self.config.vision_config.image_size
        expected_dims = (3, h, w)
        actual_dims = tuple(data.shape[1:])

        if actual_dims != expected_dims:
            expected_expr = ("batch_size", *map(str, expected_dims))
551
            raise ValueError(
552
553
                f"The expected shape of pixel values is {expected_expr}. "
                f"You supplied {tuple(data.shape)}.")
554
555
556
557

        return data

    def _parse_and_validate_image_input(
558
559
            self, **kwargs: object) -> Optional[LlavaImageInputs]:
        pixel_values = kwargs.pop("pixel_values", None)
560
        image_embeds = kwargs.pop("image_embeds", None)
561

562
        if pixel_values is None and image_embeds is None:
563
            return None
564

565
        if pixel_values is not None:
566
            if not isinstance(pixel_values, (torch.Tensor, list)):
567
568
                raise ValueError("Incorrect type of pixel values. "
                                 f"Got type: {type(pixel_values)}")
569

570
571
572
573
574
575
            if self.config.vision_config.model_type == "pixtral":
                return LlavaImagePixelInputs(
                    type="pixel_values",
                    data=flatten_bn(pixel_values),
                )

576
577
            return LlavaImagePixelInputs(
                type="pixel_values",
578
579
                data=self._validate_pixel_values(
                    flatten_bn(pixel_values, concat=True)),
580
581
582
            )

        if image_embeds is not None:
583
            if not isinstance(image_embeds, (torch.Tensor, list)):
584
585
                raise ValueError("Incorrect type of image embeddings. "
                                 f"Got type: {type(image_embeds)}")
586

587
588
            return LlavaImageEmbeddingInputs(
                type="image_embeds",
589
                data=flatten_bn(image_embeds, concat=True),
590
591
592
            )

        raise AssertionError("This line should be unreachable.")
593
594
595
596
597
598
599
600
601
602
603

    def _select_image_features(self, image_features: torch.Tensor, *,
                               strategy: str) -> torch.Tensor:
        # Copied from https://github.com/huggingface/transformers/blob/39c3c0a72af6fbda5614dde02ff236069bb79827/src/transformers/models/llava/modeling_llava.py#L421  # noqa
        if strategy == "default":
            return image_features[:, 1:]
        elif strategy == "full":
            return image_features

        raise ValueError(f"Unexpected select feature strategy: {strategy}")

604
605
    def _image_pixels_to_features(
        self,
606
607
        vision_tower: Union[CLIPVisionModel, SiglipVisionModel,
                            PixtralHFVisionModel],
608
609
        pixel_values: torch.Tensor,
    ) -> torch.Tensor:
610

611
612
        # NOTE: we skip the step to select the vision feature layer since
        # this is already done inside the vision tower
613
        image_features = vision_tower(pixel_values)
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629

        return self._select_image_features(
            image_features,
            strategy=self.config.vision_feature_select_strategy,
        )

    def _process_image_pixels(self,
                              inputs: LlavaImagePixelInputs) -> torch.Tensor:
        assert self.vision_tower is not None

        pixel_values = inputs["data"]

        return self._image_pixels_to_features(self.vision_tower, pixel_values)

    def _process_image_input(self,
                             image_input: LlavaImageInputs) -> torch.Tensor:
630
631
632
633

        if image_input["type"] == "image_embeds":
            return image_input["data"]

634
635
        assert self.vision_tower is not None
        image_features = self._process_image_pixels(image_input)
636
637
        return self.multi_modal_projector(image_features)

638
    def get_multimodal_embeddings(self, **kwargs) -> Optional[NestedTensors]:
639
640
641
642
643
644
645
646
647
        image_input = self._parse_and_validate_image_input(**kwargs)
        if image_input is None:
            return None
        vision_embeddings = self._process_image_input(image_input)
        return vision_embeddings

    def get_input_embeddings(
        self,
        input_ids: torch.Tensor,
648
        multimodal_embeddings: Optional[NestedTensors] = None,
649
650
    ) -> torch.Tensor:
        inputs_embeds = self.language_model.get_input_embeddings(input_ids)
651
        if multimodal_embeddings is not None:
652
            inputs_embeds = merge_multimodal_embeddings(
653
                input_ids, inputs_embeds, multimodal_embeddings,
654
655
656
                self.config.image_token_index)
        return inputs_embeds

657
658
659
660
661
662
    def forward(
        self,
        input_ids: torch.Tensor,
        positions: torch.Tensor,
        kv_caches: List[torch.Tensor],
        attn_metadata: AttentionMetadata,
663
        intermediate_tensors: Optional[IntermediateTensors] = None,
664
        inputs_embeds: Optional[torch.Tensor] = None,
665
        **kwargs: object,
666
    ) -> Union[torch.Tensor, IntermediateTensors]:
Cyrus Leung's avatar
Cyrus Leung committed
667
        """Run forward pass for LLaVA-1.5.
668
669
670

        One key thing to understand is the `input_ids` already accounts for the
        positions of the to-be-inserted image embeddings.
671

672
        Concretely, consider a text prompt:
673
674
        `"USER: <image>\\nWhat's the content of the image?\\nASSISTANT:"`.

675
        Tokenizer outputs:
676
677
678
679
        `[1, 3148, 1001, 29901, 29871, 32000, 29871, 13, 5618, 29915, 29879,
        278, 2793, 310, 278, 1967, 29973, 13, 22933, 9047, 13566, 29901]`.

        To reserve space in KV cache, we have to insert placeholder tokens
680
        before they are inputted to the model, so the input processor prepends
681
682
683
684
685
686
687
688
689
        additional image tokens (denoted as `32000`), resulting in:
        `[1, 3148, 1001, 29901, 29871, 32000, ..., 32000, 29871, 13, 5618,
        29915, 29879, 278, 2793, 310, 278, 1967, 29973, 13, 22933, 9047, 13566,
        29901]`.

        We insert 575 tokens so that including the original image token in the
        input, there are a total of 576 (24 * 24) image tokens, which
        corresponds to the number of image tokens inputted to the language
        model, i.e. the number of image tokens outputted by the visual encoder.
690
691
692
693
694
695
696

        This way, the `positions` and `attn_metadata` are consistent
        with the `input_ids`.

        Args:
            input_ids: Flattened (concatenated) input_ids corresponding to a
                batch.
Cyrus Leung's avatar
Cyrus Leung committed
697
            pixel_values: The pixels in each input image.
698

699
700
        See also:
            :class:`LlavaImageInputs`
701
        """
702
703
        if intermediate_tensors is not None:
            inputs_embeds = None
704
705
706

        # NOTE: In v1, inputs_embeds is always generated at model runner, this
        # condition is for v0 compatibility.
707
        elif inputs_embeds is None:
708
            vision_embeddings = self.get_multimodal_embeddings(**kwargs)
709
710
711
            inputs_embeds = self.get_input_embeddings(input_ids,
                                                      vision_embeddings)
            input_ids = None
712

713
714
715
716
        hidden_states = self.language_model.model(input_ids,
                                                  positions,
                                                  kv_caches,
                                                  attn_metadata,
717
                                                  intermediate_tensors,
718
                                                  inputs_embeds=inputs_embeds)
719
720
721

        return hidden_states

722
723
724
725
726
    def compute_logits(
        self,
        hidden_states: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> Optional[torch.Tensor]:
727
728
        return self.language_model.compute_logits(hidden_states,
                                                  sampling_metadata)
729
730
731
732
733
734

    def sample(
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> Optional[SamplerOutput]:
735
        return self.language_model.sample(logits, sampling_metadata)
736

737
738
    def load_weights(self, weights: Iterable[Tuple[str,
                                                   torch.Tensor]]) -> Set[str]:
739
        loader = AutoWeightsLoader(self)
740
        return loader.load_weights(weights)
741
742


743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
class MantisProcessingInfo(LlavaProcessingInfo):

    def get_hf_processor(self):
        hf_config = self.get_hf_config()
        vision_info = self.get_vision_encoder_info()

        if Version(TRANSFORMERS_VERSION) < Version("4.48"):
            # BUG: num_additional_image_tokens = 0 but treated as 1,
            # so we set vision_feature_select_strategy to None to offset this
            vision_feature_select_strategy = None
        else:
            # FIXED: https://github.com/huggingface/transformers/pull/33424/files#diff-6a37acc21efcadaae622b079b2712a131131448ff64262bd219aa346aeec38faL150
            vision_feature_select_strategy = hf_config.vision_feature_select_strategy  # noqa: E501

        return self.ctx.get_hf_processor(
            LlavaProcessor,
            patch_size=vision_info.get_patch_size(),
            vision_feature_select_strategy=vision_feature_select_strategy,
        )


764
class MantisMultiModalProcessor(LlavaMultiModalProcessor):
765

766
767
    def apply(
        self,
768
        prompt: Union[str, list[int]],
769
770
        mm_data: MultiModalDataDict,
        hf_processor_mm_kwargs: Mapping[str, object],
771
    ) -> MultiModalInputs:
772
        hf_config = self.info.get_hf_config()
773
        image_token_id = hf_config.image_token_index
774
775

        # Assume that it doesn't depend on the image size
776
        num_image_tokens = self.info.get_num_image_tokens(
777
778
779
            image_width=-1,
            image_height=-1,
        )
780

781
        result = super().apply(prompt, mm_data, hf_processor_mm_kwargs)
782

783
784
        mm_items = self._to_mm_items(mm_data)
        mm_item_counts = mm_items.get_all_counts()
785
786
787
788
789
790
791
        mm_kwargs = result["mm_kwargs"]

        # We reimplement the functionality of MLlavaProcessor from
        # https://github.com/TIGER-AI-Lab/Mantis.git
        def get_replacement_mantis(item_idx: int):
            return "".join([
                f"(image {item_idx+1}: <Image>",  # 7 tokens
792
                "<image>" * num_image_tokens,
793
794
795
                "</Image>)",  # 3 tokens
            ])

796
        mantis_mm_repls = self._bind_and_group_repls([
797
798
            PromptReplacement(
                modality="image",
799
                target=[image_token_id] * num_image_tokens,
800
801
802
803
                replacement=get_replacement_mantis,
            )
        ])

804
        prompt_ids, prompt, _ = self._apply_prompt_replacements(
805
            result["prompt_token_ids"],
806
            mantis_mm_repls,
807
808
809
810
811
812
813
814
            mm_item_counts,
        )

        unbound_orig_repls = self._get_prompt_replacements(
            mm_items,
            hf_processor_mm_kwargs,
            mm_kwargs,
        )
815
816
817
818
819
820
821
822
        orig_repls = self._bind_and_group_repls(unbound_orig_repls)

        mm_placeholders = self._find_mm_placeholders(
            orig_repls,
            prompt_ids,
            mm_item_counts,
        )
        self._validate_mm_placeholders(mm_placeholders, mm_item_counts)
823

824
825
826
        mm_placeholder_ranges = {
            modality: [item.to_range() for item in placeholders]
            for modality, placeholders in mm_placeholders.items()
827
828
        }

829
        return MultiModalInputs(
830
            type="multimodal",
831
            prompt=prompt,
832
833
            prompt_token_ids=prompt_ids,
            mm_kwargs=mm_kwargs,
834
            mm_placeholders=mm_placeholder_ranges,
835
        )
836
837
838
839


# To use this model, please use
# `--hf_overrides '{"architectures": ["MantisForConditionalGeneration"]}'`
840
@MULTIMODAL_REGISTRY.register_processor(MantisMultiModalProcessor,
841
                                        info=MantisProcessingInfo,
842
                                        dummy_inputs=LlavaDummyInputsBuilder)
843
844
class MantisForConditionalGeneration(LlavaForConditionalGeneration):
    pass