audio_language.py 6.08 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
3
"""
This example shows how to use vLLM for running offline inference 
4
with the correct prompt format on audio language models.
5
6
7
8
9
10
11
12
13
14

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.audio import AudioAsset
from vllm.utils import FlexibleArgumentParser

15
audio_assets = [AudioAsset("mary_had_lamb"), AudioAsset("winning_call")]
16
17
18
19
20
question_per_audio_count = {
    0: "What is 1+1?",
    1: "What is recited in the audio?",
    2: "What sport and what nursery rhyme are referenced?"
}
21

22
23
24
25
# 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.

26

27
28
29
30
31
32
33
34
35
36
# MiniCPM-O
def run_minicpmo(question: str, audio_count: int):
    model_name = "openbmb/MiniCPM-o-2_6"
    tokenizer = AutoTokenizer.from_pretrained(model_name,
                                              trust_remote_code=True)
    llm = LLM(model=model_name,
              trust_remote_code=True,
              max_model_len=4096,
              max_num_seqs=5,
              limit_mm_per_prompt={"audio": audio_count})
37

38
39
40
41
42
    stop_tokens = ['<|im_end|>', '<|endoftext|>']
    stop_token_ids = [tokenizer.convert_tokens_to_ids(i) for i in stop_tokens]

    audio_placeholder = "(<audio>./</audio>)" * audio_count
    audio_chat_template = "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n<|spk_bos|><|spk|><|spk_eos|><|tts_bos|>' }}{% endif %}"  # noqa: E501
43
    messages = [{
44
        'role': 'user',
45
        'content': f'{audio_placeholder}\n{question}'
46
47
48
    }]
    prompt = tokenizer.apply_chat_template(messages,
                                           tokenize=False,
49
50
                                           add_generation_prompt=True,
                                           chat_template=audio_chat_template)
51
52
53
    return llm, prompt, stop_token_ids


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Qwen2-Audio
def run_qwen2_audio(question: str, audio_count: int):
    model_name = "Qwen/Qwen2-Audio-7B-Instruct"

    llm = LLM(model=model_name,
              max_model_len=4096,
              max_num_seqs=5,
              limit_mm_per_prompt={"audio": audio_count})

    audio_in_prompt = "".join([
        f"Audio {idx+1}: "
        f"<|audio_bos|><|AUDIO|><|audio_eos|>\n" for idx in range(audio_count)
    ])

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


76
77
78
# Ultravox 0.5-1B
def run_ultravox(question: str, audio_count: int):
    model_name = "fixie-ai/ultravox-v0_5-llama-3_2-1b"
79

80
    tokenizer = AutoTokenizer.from_pretrained(model_name)
81
82
    messages = [{
        'role': 'user',
83
        'content': "<|audio|>\n" * audio_count + question
84
85
86
    }]
    prompt = tokenizer.apply_chat_template(messages,
                                           tokenize=False,
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
                                           add_generation_prompt=True)

    llm = LLM(model=model_name,
              max_model_len=4096,
              max_num_seqs=5,
              trust_remote_code=True,
              limit_mm_per_prompt={"audio": audio_count})
    stop_token_ids = None
    return llm, prompt, stop_token_ids


# Whisper
def run_whisper(question: str, audio_count: int):
    assert audio_count == 1, (
        "Whisper only support single audio input per prompt")
    model_name = "openai/whisper-large-v3-turbo"

    prompt = "<|startoftranscript|>"

    llm = LLM(model=model_name,
              max_model_len=448,
              max_num_seqs=5,
              limit_mm_per_prompt={"audio": audio_count})
    stop_token_ids = None
111
112
113
114
    return llm, prompt, stop_token_ids


model_example_map = {
115
    "minicpmo": run_minicpmo,
116
    "qwen2_audio": run_qwen2_audio,
117
118
    "ultravox": run_ultravox,
    "whisper": run_whisper,
119
}
120
121
122
123
124
125
126


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

127
128
    audio_count = args.num_audios
    llm, prompt, stop_token_ids = model_example_map[model](
129
        question_per_audio_count[audio_count], audio_count)
130
131
132
133
134
135
136

    # We set temperature to 0.2 so that outputs can be different
    # even when all prompts are identical when running batch inference.
    sampling_params = SamplingParams(temperature=0.2,
                                     max_tokens=64,
                                     stop_token_ids=stop_token_ids)

137
138
139
    mm_data = {}
    if audio_count > 0:
        mm_data = {
140
141
142
143
            "audio": [
                asset.audio_and_sample_rate
                for asset in audio_assets[:audio_count]
            ]
144
145
146
147
        }

    assert args.num_prompts > 0
    inputs = {"prompt": prompt, "multi_modal_data": mm_data}
148
    if args.num_prompts > 1:
149
        # Batch inference
150
        inputs = [inputs] * args.num_prompts
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172

    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 '
        'audio language models')
    parser.add_argument('--model-type',
                        '-m',
                        type=str,
                        default="ultravox",
                        choices=model_example_map.keys(),
                        help='Huggingface "model_type".')
    parser.add_argument('--num-prompts',
                        type=int,
                        default=1,
                        help='Number of prompts to run.')
173
174
175
    parser.add_argument("--num-audios",
                        type=int,
                        default=1,
176
                        choices=[0, 1, 2],
177
                        help="Number of audio items per prompt.")
178
179
180

    args = parser.parse_args()
    main(args)