offline_inference_vision_language.py 12.8 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
"""
This example shows how to use vLLM for running offline inference 
with the correct prompt format on vision language models.

For most models, the prompt format should follow corresponding examples
on HuggingFace model repository.
"""
from transformers import AutoTokenizer

from vllm import LLM, SamplingParams
from vllm.assets.image import ImageAsset
12
from vllm.assets.video import VideoAsset
13
14
from vllm.utils import FlexibleArgumentParser

15
16
17
18
# NOTE: The default `max_num_seqs` and `max_model_len` may result in OOM on
# lower-end GPUs.
# Unless specified, these settings have been tested to work on a single L4.

19
20

# LLaVA-1.5
21
def run_llava(question: str, modality: str):
22
    assert modality == "image"
23
24
25

    prompt = f"USER: <image>\n{question}\nASSISTANT:"

26
    llm = LLM(model="llava-hf/llava-1.5-7b-hf", max_model_len=4096)
27
28
    stop_token_ids = None
    return llm, prompt, stop_token_ids
29
30
31


# LLaVA-1.6/LLaVA-NeXT
32
def run_llava_next(question: str, modality: str):
33
    assert modality == "image"
34
35

    prompt = f"[INST] <image>\n{question} [/INST]"
36
37
38
39
40
41
42
    llm = LLM(model="llava-hf/llava-v1.6-mistral-7b-hf", max_model_len=8192)
    stop_token_ids = None
    return llm, prompt, stop_token_ids


# LlaVA-NeXT-Video
# Currently only support for video input
43
def run_llava_next_video(question: str, modality: str):
44
45
    assert modality == "video"

46
47
    prompt = f"USER: <video>\n{question} ASSISTANT:"
    llm = LLM(model="llava-hf/LLaVA-NeXT-Video-7B-hf", max_model_len=8192)
48
49
    stop_token_ids = None
    return llm, prompt, stop_token_ids
50
51


52
# LLaVA-OneVision
53
def run_llava_onevision(question: str, modality: str):
54
55
56
57
58
59
60
61
62
63

    if modality == "video":
        prompt = f"<|im_start|>user <video>\n{question}<|im_end|> \
        <|im_start|>assistant\n"

    elif modality == "image":
        prompt = f"<|im_start|>user <image>\n{question}<|im_end|> \
        <|im_start|>assistant\n"

    llm = LLM(model="llava-hf/llava-onevision-qwen2-7b-ov-hf",
64
              max_model_len=16384)
65
66
67
68
    stop_token_ids = None
    return llm, prompt, stop_token_ids


69
# Fuyu
70
def run_fuyu(question: str, modality: str):
71
    assert modality == "image"
72
73

    prompt = f"{question}\n"
74
    llm = LLM(model="adept/fuyu-8b", max_model_len=2048, max_num_seqs=2)
75
76
    stop_token_ids = None
    return llm, prompt, stop_token_ids
77
78
79


# Phi-3-Vision
80
def run_phi3v(question: str, modality: str):
81
    assert modality == "image"
82
83
84
85
86
87
88
89

    prompt = f"<|user|>\n<|image_1|>\n{question}<|end|>\n<|assistant|>\n"  # noqa: E501
    # Note: The default setting of max_num_seqs (256) and
    # max_model_len (128k) for this model may cause OOM.
    # You may lower either to run this example on lower-end GPUs.

    # In this example, we override max_num_seqs to 5 while
    # keeping the original context length of 128k.
90
91
92
93
94
95
96
97
98
99
100
101
102

    # num_crops is an override kwarg to the multimodal image processor;
    # For some models, e.g., Phi-3.5-vision-instruct, it is recommended
    # to use 16 for single frame scenarios, and 4 for multi-frame.
    #
    # Generally speaking, a larger value for num_crops results in more
    # tokens per image instance, because it may scale the image more in
    # the image preprocessing. Some references in the model docs and the
    # formula for image tokens after the preprocessing
    # transform can be found below.
    #
    # https://huggingface.co/microsoft/Phi-3.5-vision-instruct#loading-the-model-locally
    # https://huggingface.co/microsoft/Phi-3.5-vision-instruct/blob/main/processing_phi3_v.py#L194
103
104
105
    llm = LLM(
        model="microsoft/Phi-3-vision-128k-instruct",
        trust_remote_code=True,
106
107
        max_model_len=4096,
        max_num_seqs=2,
108
        mm_processor_kwargs={"num_crops": 16},
109
    )
110
111
    stop_token_ids = None
    return llm, prompt, stop_token_ids
112
113
114


# PaliGemma
115
def run_paligemma(question: str, modality: str):
116
    assert modality == "image"
117

118
119
    # PaliGemma has special prompt format for VQA
    prompt = "caption en"
120
    llm = LLM(model="google/paligemma-3b-mix-224")
121
122
    stop_token_ids = None
    return llm, prompt, stop_token_ids
123
124
125


# Chameleon
126
def run_chameleon(question: str, modality: str):
127
    assert modality == "image"
128
129

    prompt = f"{question}<image>"
130
    llm = LLM(model="facebook/chameleon-7b", max_model_len=4096)
131
132
    stop_token_ids = None
    return llm, prompt, stop_token_ids
133
134
135


# MiniCPM-V
136
def run_minicpmv(question: str, modality: str):
137
    assert modality == "image"
138
139
140
141
142
143
144

    # 2.0
    # The official repo doesn't work yet, so we need to use a fork for now
    # For more details, please see: See: https://github.com/vllm-project/vllm/pull/4087#issuecomment-2250397630 # noqa
    # model_name = "HwwwH/MiniCPM-V-2"

    # 2.5
145
146
147
148
    # model_name = "openbmb/MiniCPM-Llama3-V-2_5"

    #2.6
    model_name = "openbmb/MiniCPM-V-2_6"
149
150
151
152
    tokenizer = AutoTokenizer.from_pretrained(model_name,
                                              trust_remote_code=True)
    llm = LLM(
        model=model_name,
153
154
        max_model_len=4096,
        max_num_seqs=2,
155
156
        trust_remote_code=True,
    )
157
158
159
160
161
162
163
164
165
166
    # NOTE The stop_token_ids are different for various versions of MiniCPM-V
    # 2.0
    # stop_token_ids = [tokenizer.eos_id]

    # 2.5
    # stop_token_ids = [tokenizer.eos_id, tokenizer.eot_id]

    # 2.6
    stop_tokens = ['<|im_end|>', '<|endoftext|>']
    stop_token_ids = [tokenizer.convert_tokens_to_ids(i) for i in stop_tokens]
167
168
169
170
171
172
173
174

    messages = [{
        'role': 'user',
        'content': f'(<image>./</image>)\n{question}'
    }]
    prompt = tokenizer.apply_chat_template(messages,
                                           tokenize=False,
                                           add_generation_prompt=True)
175
    return llm, prompt, stop_token_ids
176
177


178
# InternVL
179
def run_internvl(question: str, modality: str):
180
181
    assert modality == "image"

182
183
    model_name = "OpenGVLab/InternVL2-2B"

184
    llm = LLM(
185
        model=model_name,
186
        trust_remote_code=True,
187
        max_model_len=4096,
188
    )
189
190
191
192
193
194
195
196
197
198
199
200
201
202

    tokenizer = AutoTokenizer.from_pretrained(model_name,
                                              trust_remote_code=True)
    messages = [{'role': 'user', 'content': f"<image>\n{question}"}]
    prompt = tokenizer.apply_chat_template(messages,
                                           tokenize=False,
                                           add_generation_prompt=True)

    # Stop tokens for InternVL
    # models variants may have different stop tokens
    # please refer to the model card for the correct "stop words":
    # https://huggingface.co/OpenGVLab/InternVL2-2B#service
    stop_tokens = ["<|endoftext|>", "<|im_start|>", "<|im_end|>", "<|end|>"]
    stop_token_ids = [tokenizer.convert_tokens_to_ids(i) for i in stop_tokens]
203
    return llm, prompt, stop_token_ids
204
205


206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# NVLM-D
def run_nvlm_d(question: str, modality: str):
    assert modality == "image"

    model_name = "nvidia/NVLM-D-72B"

    # Adjust this as necessary to fit in GPU
    llm = LLM(
        model=model_name,
        trust_remote_code=True,
        max_model_len=4096,
        tensor_parallel_size=4,
    )

    tokenizer = AutoTokenizer.from_pretrained(model_name,
                                              trust_remote_code=True)
    messages = [{'role': 'user', 'content': f"<image>\n{question}"}]
    prompt = tokenizer.apply_chat_template(messages,
                                           tokenize=False,
                                           add_generation_prompt=True)
    stop_token_ids = None
    return llm, prompt, stop_token_ids


230
# BLIP-2
231
def run_blip2(question: str, modality: str):
232
    assert modality == "image"
233
234
235
236
237

    # BLIP-2 prompt format is inaccurate on HuggingFace model repository.
    # See https://huggingface.co/Salesforce/blip2-opt-2.7b/discussions/15#64ff02f3f8cf9e4f5b038262 #noqa
    prompt = f"Question: {question} Answer:"
    llm = LLM(model="Salesforce/blip2-opt-2.7b")
238
239
    stop_token_ids = None
    return llm, prompt, stop_token_ids
240
241


242
# Qwen
243
def run_qwen_vl(question: str, modality: str):
244
    assert modality == "image"
245
246
247
248

    llm = LLM(
        model="Qwen/Qwen-VL",
        trust_remote_code=True,
249
250
        max_model_len=1024,
        max_num_seqs=2,
251
252
253
254
255
256
257
    )

    prompt = f"{question}Picture 1: <img></img>\n"
    stop_token_ids = None
    return llm, prompt, stop_token_ids


258
# Qwen2-VL
259
def run_qwen2_vl(question: str, modality: str):
260
261
    assert modality == "image"

262
263
    model_name = "Qwen/Qwen2-VL-7B-Instruct"

264
    # Tested on L40
265
266
    llm = LLM(
        model=model_name,
267
        max_model_len=8192,
268
269
270
271
272
273
274
275
276
277
278
        max_num_seqs=5,
    )

    prompt = ("<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n"
              "<|im_start|>user\n<|vision_start|><|image_pad|><|vision_end|>"
              f"{question}<|im_end|>\n"
              "<|im_start|>assistant\n")
    stop_token_ids = None
    return llm, prompt, stop_token_ids


279
280
# LLama 3.2
def run_mllama(question: str, modality: str):
281
282
283
284
285
286
287
288
    assert modality == "image"

    model_name = "meta-llama/Llama-3.2-11B-Vision-Instruct"

    # Note: The default setting of max_num_seqs (256) and
    # max_model_len (131072) for this model may cause OOM.
    # You may lower either to run this example on lower-end GPUs.

289
    # The configuration below has been confirmed to launch on a single L40 GPU.
290
291
    llm = LLM(
        model=model_name,
292
        max_model_len=4096,
293
294
295
296
297
298
299
300
301
        max_num_seqs=16,
        enforce_eager=True,
    )

    prompt = f"<|image|><|begin_of_text|>{question}"
    stop_token_ids = None
    return llm, prompt, stop_token_ids


302
303
304
model_example_map = {
    "llava": run_llava,
    "llava-next": run_llava_next,
305
    "llava-next-video": run_llava_next_video,
306
    "llava-onevision": run_llava_onevision,
307
308
309
310
311
    "fuyu": run_fuyu,
    "phi3_v": run_phi3v,
    "paligemma": run_paligemma,
    "chameleon": run_chameleon,
    "minicpmv": run_minicpmv,
312
    "blip-2": run_blip2,
313
    "internvl_chat": run_internvl,
314
    "NVLM_D": run_nvlm_d,
315
    "qwen_vl": run_qwen_vl,
316
    "qwen2_vl": run_qwen2_vl,
317
    "mllama": run_mllama,
318
319
320
}


321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
def get_multi_modal_input(args):
    """
    return {
        "data": image or video,
        "question": question,
    }
    """
    if args.modality == "image":
        # Input image and question
        image = ImageAsset("cherry_blossom") \
            .pil_image.convert("RGB")
        img_question = "What is the content of this image?"

        return {
            "data": image,
            "question": img_question,
        }

    if args.modality == "video":
        # Input video and question
        video = VideoAsset(name="sample_demo_1.mp4",
                           num_frames=args.num_frames).np_ndarrays
        vid_question = "Why is this video funny?"

        return {
            "data": video,
            "question": vid_question,
        }

    msg = f"Modality {args.modality} is not supported."
    raise ValueError(msg)


354
355
356
357
358
def main(args):
    model = args.model_type
    if model not in model_example_map:
        raise ValueError(f"Model type {model} is not supported.")

359
360
361
362
363
    modality = args.modality
    mm_input = get_multi_modal_input(args)
    data = mm_input["data"]
    question = mm_input["question"]

364
    llm, prompt, stop_token_ids = model_example_map[model](question, modality)
365
366
367

    # We set temperature to 0.2 so that outputs can be different
    # even when all prompts are identical when running batch inference.
368
369
370
    sampling_params = SamplingParams(temperature=0.2,
                                     max_tokens=64,
                                     stop_token_ids=stop_token_ids)
371
372
373
374
375
376
377

    assert args.num_prompts > 0
    if args.num_prompts == 1:
        # Single inference
        inputs = {
            "prompt": prompt,
            "multi_modal_data": {
378
                modality: data
379
380
381
382
383
384
385
386
            },
        }

    else:
        # Batch inference
        inputs = [{
            "prompt": prompt,
            "multi_modal_data": {
387
                modality: data
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
            },
        } for _ in range(args.num_prompts)]

    outputs = llm.generate(inputs, sampling_params=sampling_params)

    for o in outputs:
        generated_text = o.outputs[0].text
        print(generated_text)


if __name__ == "__main__":
    parser = FlexibleArgumentParser(
        description='Demo on using vLLM for offline inference with '
        'vision language models')
    parser.add_argument('--model-type',
                        '-m',
                        type=str,
                        default="llava",
                        choices=model_example_map.keys(),
                        help='Huggingface "model_type".')
    parser.add_argument('--num-prompts',
                        type=int,
410
                        default=4,
411
                        help='Number of prompts to run.')
412
413
414
    parser.add_argument('--modality',
                        type=str,
                        default="image",
415
                        choices=['image', 'video'],
416
417
418
419
420
                        help='Modality of the input.')
    parser.add_argument('--num-frames',
                        type=int,
                        default=16,
                        help='Number of frames to extract from the video.')
421
422
    args = parser.parse_args()
    main(args)