benchmark_dataset.py 46 KB
Newer Older
zhuwenwen's avatar
zhuwenwen committed
1
# SPDX-License-Identifier: Apache-2.0
zhuwenwen's avatar
zhuwenwen committed
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
zhuwenwen's avatar
zhuwenwen committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
This module defines a framework for sampling benchmark requests from various
datasets. Each dataset subclass of BenchmarkDataset must implement sample
generation. Supported dataset types include:
  - ShareGPT
  - Random (synthetic)
  - Sonnet
  - BurstGPT
  - HuggingFace
  - VisionArena
"""

import base64
import io
import json
import logging
import random
from abc import ABC, abstractmethod
from collections.abc import Mapping
zhuwenwen's avatar
zhuwenwen committed
22
from copy import deepcopy
zhuwenwen's avatar
zhuwenwen committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from dataclasses import dataclass
from functools import cache
from io import BytesIO
from typing import Any, Callable, Optional, Union

import numpy as np
import pandas as pd
from datasets import load_dataset
from PIL import Image
from transformers import PreTrainedTokenizerBase

from vllm.lora.request import LoRARequest
from vllm.lora.utils import get_adapter_absolute_path
from vllm.multimodal import MultiModalDataDict
zhuwenwen's avatar
zhuwenwen committed
37
from vllm.multimodal.image import convert_image_mode
zhuwenwen's avatar
zhuwenwen committed
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from vllm.transformers_utils.tokenizer import AnyTokenizer, get_lora_tokenizer

logger = logging.getLogger(__name__)

# -----------------------------------------------------------------------------
# Data Classes
# -----------------------------------------------------------------------------


@dataclass
class SampleRequest:
    """
    Represents a single inference request for benchmarking.
    """

    prompt: Union[str, Any]
    prompt_len: int
    expected_output_len: int
56
    multi_modal_data: Optional[Union[MultiModalDataDict, dict, list[dict]]] = None
zhuwenwen's avatar
zhuwenwen committed
57
    lora_request: Optional[LoRARequest] = None
zhuwenwen's avatar
zhuwenwen committed
58
    request_id: Optional[str] = None
zhuwenwen's avatar
zhuwenwen committed
59
60
61
62
63
64
65
66
67


# -----------------------------------------------------------------------------
# Benchmark Dataset Base Class
# -----------------------------------------------------------------------------


class BenchmarkDataset(ABC):
    DEFAULT_SEED = 0
zhuwenwen's avatar
zhuwenwen committed
68
    IS_MULTIMODAL = False
zhuwenwen's avatar
zhuwenwen committed
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85

    def __init__(
        self,
        dataset_path: Optional[str] = None,
        random_seed: int = DEFAULT_SEED,
    ) -> None:
        """
        Initialize the BenchmarkDataset with an optional dataset path and random
        seed.  Args:
            dataset_path (Optional[str]): Path to the dataset. If None, it
            indicates that a default or random dataset might be used.
            random_seed (int): Seed value for reproducible shuffling or
            sampling. Defaults to DEFAULT_SEED.
        """
        self.dataset_path = dataset_path
        # Set the random seed, ensuring that a None value is replaced with the
        # default seed.
zhuwenwen's avatar
zhuwenwen committed
86
        self.random_seed = random_seed if random_seed is not None else self.DEFAULT_SEED
zhuwenwen's avatar
zhuwenwen committed
87
88
89
        self.data = None

    def apply_multimodal_chat_transformation(
zhuwenwen's avatar
zhuwenwen committed
90
91
        self, prompt: str, mm_content: Optional[MultiModalDataDict] = None
    ) -> list[dict]:
zhuwenwen's avatar
zhuwenwen committed
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
        """
        Transform a prompt and optional multimodal content into a chat format.
        This method is used for chat models that expect a specific conversation
        format.
        """
        content = [{"text": prompt, "type": "text"}]
        if mm_content is not None:
            content.append(mm_content)
        return [{"role": "user", "content": content}]

    def load_data(self) -> None:
        """
        Load data from the dataset path into self.data.

        This method must be overridden by subclasses since the method to load
        data will vary depending on the dataset format and source.

        Raises:
            NotImplementedError: If a subclass does not implement this method.
        """
        # TODO (jenniferzhao): add support for downloading data
zhuwenwen's avatar
zhuwenwen committed
113
        raise NotImplementedError("load_data must be implemented in subclasses.")
zhuwenwen's avatar
zhuwenwen committed
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158

    def get_random_lora_request(
        self,
        tokenizer: PreTrainedTokenizerBase,
        max_loras: Optional[int] = None,
        lora_path: Optional[str] = None,
    ) -> tuple[Optional[LoRARequest], AnyTokenizer]:
        """
        Optionally select a random LoRA request and return its associated
        tokenizer.

        This method is used when LoRA parameters are provided.  It randomly
        selects a LoRA based on max_loras and retrieves a cached tokenizer for
        that LoRA if available. Otherwise, it returns the base tokenizer.

        Args:
            tokenizer (PreTrainedTokenizerBase): The base tokenizer to use if no
            LoRA is selected.  max_loras (Optional[int]): The maximum number of
            LoRAs available. If None, LoRA is not used.  lora_path
            (Optional[str]): Path to the LoRA parameters on disk. If None, LoRA
            is not used.

        Returns:
            tuple[Optional[LoRARequest], AnyTokenizer]: A tuple where the first
            element is a LoRARequest (or None if not applicable) and the second
            element is the tokenizer associated with the LoRA request (or the
            base tokenizer).
        """
        if max_loras is None or lora_path is None:
            return None, tokenizer

        # Generate a random LoRA ID in the range [1, max_loras].
        lora_id = random.randint(1, max_loras)
        lora_request = LoRARequest(
            lora_name=str(lora_id),
            lora_int_id=lora_id,
            lora_path=lora_path_on_disk(lora_path),
        )
        if lora_id not in lora_tokenizer_cache:
            lora_tokenizer_cache[lora_id] = get_lora_tokenizer(lora_request)
        # Return lora_request and the cached tokenizer if available; otherwise,
        # return the base tokenizer
        return lora_request, lora_tokenizer_cache[lora_id] or tokenizer

    @abstractmethod
zhuwenwen's avatar
zhuwenwen committed
159
    def sample(
zhuwenwen's avatar
zhuwenwen committed
160
161
162
163
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
164
    ) -> list[SampleRequest]:
zhuwenwen's avatar
zhuwenwen committed
165
166
167
168
169
170
171
172
173
174
        """
        Abstract method to generate sample requests from the dataset.

        Subclasses must override this method to implement dataset-specific logic
        for generating a list of SampleRequest objects.

        Args:
            tokenizer (PreTrainedTokenizerBase): The tokenizer to be used
             for processing the dataset's text.
            num_requests (int): The number of sample requests to generate.
zhuwenwen's avatar
zhuwenwen committed
175
            request_id_prefix (str) The prefix of request_id.
zhuwenwen's avatar
zhuwenwen committed
176
177
178
179
180
181
182

        Returns:
            list[SampleRequest]: A list of sample requests generated from the
            dataset.
        """
        raise NotImplementedError("sample must be implemented in subclasses.")

zhuwenwen's avatar
zhuwenwen committed
183
    def maybe_oversample_requests(
zhuwenwen's avatar
zhuwenwen committed
184
185
186
187
        self,
        requests: list[SampleRequest],
        num_requests: int,
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
188
    ) -> None:
zhuwenwen's avatar
zhuwenwen committed
189
190
191
192
193
194
        """
        Oversamples the list of requests if its size is less than the desired
        number.

        Args:
            requests (List[SampleRequest]): The current list of sampled
zhuwenwen's avatar
zhuwenwen committed
195
196
197
            requests.
            num_requests (int): The target number of requests.
            request_id_prefix (str) The prefix of the request ids.
zhuwenwen's avatar
zhuwenwen committed
198
199
200
        """
        if len(requests) < num_requests:
            random.seed(self.random_seed)
zhuwenwen's avatar
zhuwenwen committed
201
202
203
204
205
206
            additional = deepcopy(
                random.choices(requests, k=num_requests - len(requests))
            )
            for i in range(len(additional)):
                req = additional[i]
                req.request_id = request_id_prefix + str(len(requests) + i)
zhuwenwen's avatar
zhuwenwen committed
207
            requests.extend(additional)
zhuwenwen's avatar
zhuwenwen committed
208
            logger.info("Oversampled requests to reach %d total samples.", num_requests)
zhuwenwen's avatar
zhuwenwen committed
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232


# -----------------------------------------------------------------------------
# Utility Functions and Global Caches
# -----------------------------------------------------------------------------


def is_valid_sequence(
    prompt_len: int,
    output_len: int,
    min_len: int = 4,
    max_prompt_len: int = 1024,
    max_total_len: int = 2048,
    skip_min_output_len_check: bool = False,
) -> bool:
    """
    Validate a sequence based on prompt and output lengths.

    Default pruning criteria are copied from the original `sample_hf_requests`
    and `sample_sharegpt_requests` functions in benchmark_serving.py, as well as
    from `sample_requests` in benchmark_throughput.py.
    """
    # Check for invalid conditions
    prompt_too_short = prompt_len < min_len
zhuwenwen's avatar
zhuwenwen committed
233
    output_too_short = (not skip_min_output_len_check) and (output_len < min_len)
zhuwenwen's avatar
zhuwenwen committed
234
235
236
237
    prompt_too_long = prompt_len > max_prompt_len
    combined_too_long = (prompt_len + output_len) > max_total_len

    # Return True if none of the invalid conditions are met
zhuwenwen's avatar
zhuwenwen committed
238
239
240
    return not (
        prompt_too_short or output_too_short or prompt_too_long or combined_too_long
    )
zhuwenwen's avatar
zhuwenwen committed
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271


@cache
def lora_path_on_disk(lora_path: str) -> str:
    return get_adapter_absolute_path(lora_path)


# Global cache for LoRA tokenizers.
lora_tokenizer_cache: dict[int, AnyTokenizer] = {}


def process_image(image: Any) -> Mapping[str, Any]:
    """
    Process a single image input and return a multimedia content dictionary.

    Supports three input types:

    1. Dictionary with raw image bytes: - Expects a dict with a 'bytes' key
       containing raw image data.  - Loads the bytes as a PIL.Image.Image.

    2. PIL.Image.Image input: - Converts the image to RGB.  - Saves the image as
       a JPEG in memory.  - Encodes the JPEG data as a base64 string.  - Returns
       a dictionary with the image as a base64 data URL.

    3. String input: - Treats the string as a URL or local file path.  -
       Prepends "file://" if the string doesn't start with "http://" or
       "file://".  - Returns a dictionary with the image URL.

    Raises:
        ValueError: If the input is not a supported type.
    """
zhuwenwen's avatar
zhuwenwen committed
272
273
    if isinstance(image, dict) and "bytes" in image:
        image = Image.open(BytesIO(image["bytes"]))
zhuwenwen's avatar
zhuwenwen committed
274
    if isinstance(image, Image.Image):
zhuwenwen's avatar
zhuwenwen committed
275
        image = convert_image_mode(image, "RGB")
zhuwenwen's avatar
zhuwenwen committed
276
277
        with io.BytesIO() as image_data:
            image.save(image_data, format="JPEG")
zhuwenwen's avatar
zhuwenwen committed
278
            image_base64 = base64.b64encode(image_data.getvalue()).decode("utf-8")
zhuwenwen's avatar
zhuwenwen committed
279
280
        return {
            "type": "image_url",
zhuwenwen's avatar
zhuwenwen committed
281
            "image_url": {"url": f"data:image/jpeg;base64,{image_base64}"},
zhuwenwen's avatar
zhuwenwen committed
282
283
284
        }

    if isinstance(image, str):
zhuwenwen's avatar
zhuwenwen committed
285
286
287
        image_url = (
            image if image.startswith(("http://", "file://")) else f"file://{image}"
        )
zhuwenwen's avatar
zhuwenwen committed
288
289
        return {"type": "image_url", "image_url": {"url": image_url}}

zhuwenwen's avatar
zhuwenwen committed
290
291
292
293
    raise ValueError(
        f"Invalid image input {image}. Must be a PIL.Image.Image"
        " or str or dictionary with raw image bytes."
    )
zhuwenwen's avatar
zhuwenwen committed
294
295


zhuwenwen's avatar
zhuwenwen committed
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
def process_video(video: Any) -> Mapping[str, Any]:
    """
    Process a single video input and return a multimedia content dictionary.

    Supports the following input types:

    1. Dictionary with raw video bytes: - Expects a dict with a 'bytes' key
       containing raw video data.

    2. String input: - Treats the string as a URL or local file path.  -
       Prepends "file://" if the string doesn't start with "http://" or
       "file://".  - Returns a dictionary with the image URL.

    Raises:
        ValueError: If the input is not a supported type.
    """
    if isinstance(video, dict) and "bytes" in video:
        video_bytes = video["bytes"]
        video_base64 = base64.b64encode(video_bytes).decode("utf-8")
        return {
            "type": "video_url",
            "video_url": {"url": f"data:video/mp4;base64,{video_base64}"},
        }

    if isinstance(video, str):
        video_url = (
            video if video.startswith(("http://", "file://")) else f"file://{video}"
        )
        return {"type": "video_url", "video_url": {"url": video_url}}

    raise ValueError(
        f"Invalid video input {video}. Must be a string of local path/remote url, or a dictionary with raw video bytes in the form of `{{'bytes': raw_video_bytes}}`."  # noqa: E501
    )


zhuwenwen's avatar
zhuwenwen committed
331
332
333
334
335
336
337
338
# -----------------------------------------------------------------------------
# Random Dataset Implementation (Synthetic Data)
# -----------------------------------------------------------------------------


class RandomDataset(BenchmarkDataset):
    # Default values copied from benchmark_serving.py for the random dataset.
    DEFAULT_PREFIX_LEN = 0
zhuwenwen's avatar
zhuwenwen committed
339
    DEFAULT_RANGE_RATIO = 0.0
zhuwenwen's avatar
zhuwenwen committed
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
    DEFAULT_INPUT_LEN = 1024
    DEFAULT_OUTPUT_LEN = 128

    def __init__(
        self,
        **kwargs,
    ) -> None:
        super().__init__(**kwargs)

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        prefix_len: int = DEFAULT_PREFIX_LEN,
        range_ratio: float = DEFAULT_RANGE_RATIO,
        input_len: int = DEFAULT_INPUT_LEN,
        output_len: int = DEFAULT_OUTPUT_LEN,
zhuwenwen's avatar
zhuwenwen committed
357
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
358
359
        **kwargs,
    ) -> list[SampleRequest]:
zhuwenwen's avatar
zhuwenwen committed
360
361
362
363
364
        # Enforce range_ratio < 1
        assert range_ratio < 1.0, (
            "random_range_ratio must be < 1.0 to ensure a valid sampling range"
        )

zhuwenwen's avatar
zhuwenwen committed
365
        vocab_size = tokenizer.vocab_size
zhuwenwen's avatar
zhuwenwen committed
366
367
        num_special_tokens = tokenizer.num_special_tokens_to_add()
        real_input_len = input_len - num_special_tokens
zhuwenwen's avatar
zhuwenwen committed
368

zhuwenwen's avatar
zhuwenwen committed
369
370
371
372
373
374
375
376
377
378
        prefix_token_ids = (
            np.random.randint(0, vocab_size, size=prefix_len).tolist()
            if prefix_len > 0
            else []
        )

        # New sampling logic: [X * (1 - b), X * (1 + b)]
        input_low = int(real_input_len * (1 - range_ratio))
        input_high = int(real_input_len * (1 + range_ratio))
        output_low = int(output_len * (1 - range_ratio))
379
380
381
        # Ensure the lower bound for output length is at least 1 to prevent
        # sampling 0 tokens, which can cause request failures.
        output_low = max(output_low, 1)
zhuwenwen's avatar
zhuwenwen committed
382
        output_high = int(output_len * (1 + range_ratio))
zhuwenwen's avatar
zhuwenwen committed
383

zhuwenwen's avatar
zhuwenwen committed
384
385
386
        # Add logging for debugging
        logger.info("Sampling input_len from [%s, %s]", input_low, input_high)
        logger.info("Sampling output_len from [%s, %s]", output_low, output_high)
zhuwenwen's avatar
zhuwenwen committed
387

zhuwenwen's avatar
zhuwenwen committed
388
389
        input_lens = np.random.randint(input_low, input_high + 1, size=num_requests)
        output_lens = np.random.randint(output_low, output_high + 1, size=num_requests)
zhuwenwen's avatar
zhuwenwen committed
390
391
392
393
        offsets = np.random.randint(0, vocab_size, size=num_requests)

        requests = []
        for i in range(num_requests):
zhuwenwen's avatar
zhuwenwen committed
394
395
396
            inner_seq = (
                (offsets[i] + i + np.arange(input_lens[i])) % vocab_size
            ).tolist()
zhuwenwen's avatar
zhuwenwen committed
397
398
            token_sequence = prefix_token_ids + inner_seq
            prompt = tokenizer.decode(token_sequence)
zhuwenwen's avatar
zhuwenwen committed
399
400
401
402
403
404
405
406
            # After decoding the prompt we have to encode and decode it again.
            # This is done because in some cases N consecutive tokens
            # give a string tokenized into != N number of tokens.
            # For example for GPT2Tokenizer:
            # [6880, 6881] -> ['Ġcalls', 'here'] ->
            # [1650, 939, 486] -> ['Ġcall', 'sh', 'ere']
            # To avoid uncontrolled change of the prompt length,
            # the encoded sequence is truncated before being decode again.
zhuwenwen's avatar
zhuwenwen committed
407
            total_input_len = prefix_len + int(input_lens[i])
zhuwenwen's avatar
zhuwenwen committed
408
            re_encoded_sequence = tokenizer.encode(prompt, add_special_tokens=False)[
zhuwenwen's avatar
zhuwenwen committed
409
                :total_input_len
zhuwenwen's avatar
zhuwenwen committed
410
411
            ]
            prompt = tokenizer.decode(re_encoded_sequence)
zhuwenwen's avatar
zhuwenwen committed
412
            total_input_len = len(re_encoded_sequence)
zhuwenwen's avatar
zhuwenwen committed
413
414
415
416
417
            requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=total_input_len,
                    expected_output_len=int(output_lens[i]),
zhuwenwen's avatar
zhuwenwen committed
418
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
419
420
                )
            )
zhuwenwen's avatar
zhuwenwen committed
421

zhuwenwen's avatar
zhuwenwen committed
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
        return requests


# -----------------------------------------------------------------------------
# ShareGPT Dataset Implementation
# -----------------------------------------------------------------------------


class ShareGPTDataset(BenchmarkDataset):
    """
    Implements the ShareGPT dataset.  Loads data from a JSON file and generates
    sample requests based on conversation turns.
    """

    def __init__(self, **kwargs) -> None:
        super().__init__(**kwargs)
        self.load_data()

    def load_data(self) -> None:
        if self.dataset_path is None:
            raise ValueError("dataset_path must be provided for loading data.")

        with open(self.dataset_path, encoding="utf-8") as f:
            self.data = json.load(f)
        # Filter entries with at least two conversation turns.
        self.data = [
zhuwenwen's avatar
zhuwenwen committed
448
449
            entry
            for entry in self.data
zhuwenwen's avatar
zhuwenwen committed
450
451
452
453
454
455
456
457
458
459
460
461
462
            if "conversations" in entry and len(entry["conversations"]) >= 2
        ]
        random.seed(self.random_seed)
        random.shuffle(self.data)

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        lora_path: Optional[str] = None,
        max_loras: Optional[int] = None,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
zhuwenwen's avatar
zhuwenwen committed
463
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
464
465
466
        **kwargs,
    ) -> list:
        samples: list = []
zhuwenwen's avatar
zhuwenwen committed
467
        ind = 0
zhuwenwen's avatar
zhuwenwen committed
468
469
470
471
472
473
474
475
476
        for entry in self.data:
            if len(samples) >= num_requests:
                break
            prompt, completion = (
                entry["conversations"][0]["value"],
                entry["conversations"][1]["value"],
            )

            lora_request, tokenizer = self.get_random_lora_request(
zhuwenwen's avatar
zhuwenwen committed
477
478
                tokenizer=tokenizer, max_loras=max_loras, lora_path=lora_path
            )
zhuwenwen's avatar
zhuwenwen committed
479
480
481
            prompt_ids = tokenizer(prompt).input_ids
            completion_ids = tokenizer(completion).input_ids
            prompt_len = len(prompt_ids)
zhuwenwen's avatar
zhuwenwen committed
482
483
484
485
486
487
            new_output_len = len(completion_ids) if output_len is None else output_len
            if not is_valid_sequence(
                prompt_len,
                new_output_len,
                skip_min_output_len_check=output_len is not None,
            ):
zhuwenwen's avatar
zhuwenwen committed
488
                continue
489
490
            if image_path := entry.get("image"):
                mm_content = process_image(image_path)
zhuwenwen's avatar
zhuwenwen committed
491
492
            elif video_path := entry.get("video"):
                mm_content = process_video(video_path)
493
494
            else:
                mm_content = None
zhuwenwen's avatar
zhuwenwen committed
495
            if enable_multimodal_chat:
496
                prompt = self.apply_multimodal_chat_transformation(prompt, mm_content)
zhuwenwen's avatar
zhuwenwen committed
497
498
499
500
501
502
            samples.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=new_output_len,
                    lora_request=lora_request,
503
                    multi_modal_data=mm_content,
zhuwenwen's avatar
zhuwenwen committed
504
                    request_id=request_id_prefix + str(ind),
zhuwenwen's avatar
zhuwenwen committed
505
506
                )
            )
zhuwenwen's avatar
zhuwenwen committed
507
508
            ind += 1
        self.maybe_oversample_requests(samples, num_requests, request_id_prefix)
zhuwenwen's avatar
zhuwenwen committed
509
510
511
        return samples


zhuwenwen's avatar
zhuwenwen committed
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
# -----------------------------------------------------------------------------
# Custom Dataset Implementation
# -----------------------------------------------------------------------------


class CustomDataset(BenchmarkDataset):
    """
    Implements the Custom dataset.  Loads data from a JSONL file and generates
    sample requests based on conversation turns. E.g.,
    ```
    {"prompt": "What is the capital of India?"}
    {"prompt": "What is the capital of Iran?"}
    {"prompt": "What is the capital of China?"}
    ```
    """

    def __init__(self, **kwargs) -> None:
        super().__init__(**kwargs)
        self.load_data()

    def load_data(self) -> None:
        if self.dataset_path is None:
            raise ValueError("dataset_path must be provided for loading data.")

        # self.data will be a list of dictionaries
        # e.g., [{"prompt": "What is the capital of India?"}, ...]
        # This will be the standardized format which load_data()
        # has to convert into depending on the filetype of dataset_path.
        # sample() will assume this standardized format of self.data
        self.data = []

        # Load the JSONL file
        if self.dataset_path.endswith(".jsonl"):
            jsonl_data = pd.read_json(path_or_buf=self.dataset_path, lines=True)

            # check if the JSONL file has a 'prompt' column
            if "prompt" not in jsonl_data.columns:
                raise ValueError("JSONL file must contain a 'prompt' column.")

            # Convert each row to a dictionary and append to self.data
            # This will convert the DataFrame to a list of dictionaries
            # where each dictionary corresponds to a row in the DataFrame.
            # This is the standardized format we want for self.data
            for _, row in jsonl_data.iterrows():
                self.data.append(row.to_dict())
        else:
            raise NotImplementedError(
                "Only JSONL format is supported for CustomDataset."
            )

        random.seed(self.random_seed)
        random.shuffle(self.data)

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        lora_path: Optional[str] = None,
        max_loras: Optional[int] = None,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
        skip_chat_template: bool = False,
zhuwenwen's avatar
zhuwenwen committed
574
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
575
576
577
        **kwargs,
    ) -> list:
        sampled_requests = []
zhuwenwen's avatar
zhuwenwen committed
578
        for i, item in enumerate(self.data):
zhuwenwen's avatar
zhuwenwen committed
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
            if len(sampled_requests) >= num_requests:
                break
            prompt = item["prompt"]

            # apply template
            if not skip_chat_template:
                prompt = tokenizer.apply_chat_template(
                    [{"role": "user", "content": prompt}],
                    add_generation_prompt=True,
                    tokenize=False,
                )

            prompt_len = len(tokenizer(prompt).input_ids)
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
zhuwenwen's avatar
zhuwenwen committed
597
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
598
599
                )
            )
zhuwenwen's avatar
zhuwenwen committed
600
601
602
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
603
604
605
606

        return sampled_requests


zhuwenwen's avatar
zhuwenwen committed
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
# -----------------------------------------------------------------------------
# Sonnet Dataset Implementation
# -----------------------------------------------------------------------------


class SonnetDataset(BenchmarkDataset):
    """
    Simplified implementation of the Sonnet dataset.  Loads poem lines from a
    text file and generates sample requests.  Default values here copied from
    `benchmark_serving.py` for the sonnet dataset.
    """

    DEFAULT_PREFIX_LEN = 200
    DEFAULT_INPUT_LEN = 550
    DEFAULT_OUTPUT_LEN = 150

    def __init__(
        self,
        **kwargs,
    ) -> None:
        super().__init__(**kwargs)
        self.load_data()

    def load_data(self) -> None:
        if not self.dataset_path:
            raise ValueError("dataset_path must be provided.")
        with open(self.dataset_path, encoding="utf-8") as f:
            self.data = f.readlines()

    def sample(
        self,
        tokenizer,
        num_requests: int,
        prefix_len: int = DEFAULT_PREFIX_LEN,
        input_len: int = DEFAULT_INPUT_LEN,
        output_len: int = DEFAULT_OUTPUT_LEN,
        return_prompt_formatted: bool = False,
zhuwenwen's avatar
zhuwenwen committed
644
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
645
646
647
648
        **kwargs,
    ) -> list:
        # Calculate average token length for a poem line.
        tokenized_lines = [tokenizer(line).input_ids for line in self.data]
zhuwenwen's avatar
zhuwenwen committed
649
        avg_len = sum(len(tokens) for tokens in tokenized_lines) / len(tokenized_lines)
zhuwenwen's avatar
zhuwenwen committed
650
651
652
653

        # Build the base prompt.
        base_prompt = "Pick as many lines as you can from these poem lines:\n"
        base_msg = [{"role": "user", "content": base_prompt}]
zhuwenwen's avatar
zhuwenwen committed
654
655
656
        base_fmt = tokenizer.apply_chat_template(
            base_msg, add_generation_prompt=True, tokenize=False
        )
zhuwenwen's avatar
zhuwenwen committed
657
658
659
660
        base_offset = len(tokenizer(base_fmt).input_ids)
        if input_len <= base_offset:
            raise ValueError(
                f"'input_len' must be higher than the base prompt length "
zhuwenwen's avatar
zhuwenwen committed
661
662
                f"({base_offset})."
            )
zhuwenwen's avatar
zhuwenwen committed
663
664
665

        # Determine how many poem lines to use.
        num_input_lines = round((input_len - base_offset) / avg_len)
zhuwenwen's avatar
zhuwenwen committed
666
        num_prefix_lines = max(round((prefix_len - base_offset) / avg_len), 0)
zhuwenwen's avatar
zhuwenwen committed
667
668
669
        prefix_lines = self.data[:num_prefix_lines]

        samples = []
zhuwenwen's avatar
zhuwenwen committed
670
        ind = 0
zhuwenwen's avatar
zhuwenwen committed
671
672
673
674
        while len(samples) < num_requests:
            extra_lines = random.choices(
                self.data, k=num_input_lines - num_prefix_lines
            )
zhuwenwen's avatar
zhuwenwen committed
675
676
677
            prompt = f"{base_prompt}{''.join(prefix_lines + extra_lines)}"
            msg = [{"role": "user", "content": prompt}]
            prompt_formatted = tokenizer.apply_chat_template(
zhuwenwen's avatar
zhuwenwen committed
678
679
                msg, add_generation_prompt=True, tokenize=False
            )
zhuwenwen's avatar
zhuwenwen committed
680
            prompt_len = len(tokenizer(prompt_formatted).input_ids)
zhuwenwen's avatar
zhuwenwen committed
681

zhuwenwen's avatar
zhuwenwen committed
682
683
684
685
686
687
            if prompt_len <= input_len:
                samples.append(
                    SampleRequest(
                        prompt=prompt_formatted if return_prompt_formatted else prompt,
                        prompt_len=prompt_len,
                        expected_output_len=output_len,
zhuwenwen's avatar
zhuwenwen committed
688
                        request_id=request_id_prefix + str(ind),
zhuwenwen's avatar
zhuwenwen committed
689
690
                    )
                )
zhuwenwen's avatar
zhuwenwen committed
691
                ind += 1
zhuwenwen's avatar
zhuwenwen committed
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
        return samples


# -----------------------------------------------------------------------------
# BurstGPT Dataset Implementation
# -----------------------------------------------------------------------------


class BurstGPTDataset(BenchmarkDataset):
    """
    Implements the BurstGPT dataset.  Loads data from a CSV file and generates
    sample requests based on synthetic prompt generation. Only rows with Model
    "GPT-4" and positive response tokens are used.
    """

    def __init__(self, **kwargs) -> None:
        super().__init__(**kwargs)
        self.load_data()

zhuwenwen's avatar
zhuwenwen committed
711
712
713
    def load_data(
        self,
    ):
zhuwenwen's avatar
zhuwenwen committed
714
715
716
717
718
719
720
721
722
723
724
725
726
        if self.dataset_path is None:
            raise ValueError("dataset_path must be provided for loading data.")

        df = pd.read_csv(self.dataset_path)
        # Filter to keep only GPT-4 rows.
        gpt4_df = df[df["Model"] == "GPT-4"]
        # Remove failed requests (where Response tokens is 0 or less).
        gpt4_df = gpt4_df[gpt4_df["Response tokens"] > 0]
        # Sample the desired number of rows.
        self.data = gpt4_df

    def _sample_loaded_data(self, num_requests: int) -> list:
        if num_requests <= len(self.data):
zhuwenwen's avatar
zhuwenwen committed
727
            data = self.data.sample(n=num_requests, random_state=self.random_seed)
zhuwenwen's avatar
zhuwenwen committed
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
        else:
            data = self.data.sample(
                n=num_requests,
                random_state=self.random_seed,
                replace=True,
            )
        # Convert the dataframe to a list of lists.
        return data.values.tolist()

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        max_loras: Optional[int] = None,
        lora_path: Optional[str] = None,
zhuwenwen's avatar
zhuwenwen committed
743
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
744
745
746
747
748
749
750
751
        **kwargs,
    ) -> list[SampleRequest]:
        samples = []
        data = self._sample_loaded_data(num_requests=num_requests)
        for i in range(num_requests):
            input_len = int(data[i][2])
            output_len = int(data[i][3])
            lora_req, tokenizer = self.get_random_lora_request(
zhuwenwen's avatar
zhuwenwen committed
752
753
                tokenizer=tokenizer, max_loras=max_loras, lora_path=lora_path
            )
zhuwenwen's avatar
zhuwenwen committed
754
755
756
757
758
759
760
761
762
763
764
            vocab_size = tokenizer.vocab_size
            # Generate a synthetic prompt: a list of token IDs computed as (i +
            # j) modulo vocab_size.
            token_ids = [(i + j) % vocab_size for j in range(input_len)]
            prompt = tokenizer.decode(token_ids)
            samples.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=input_len,
                    expected_output_len=output_len,
                    lora_request=lora_req,
zhuwenwen's avatar
zhuwenwen committed
765
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
766
767
                )
            )
zhuwenwen's avatar
zhuwenwen committed
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
        return samples


# -----------------------------------------------------------------------------
# HuggingFace Dataset Base Implementation
# -----------------------------------------------------------------------------
class HuggingFaceDataset(BenchmarkDataset):
    """Base class for datasets hosted on HuggingFace."""

    SUPPORTED_DATASET_PATHS: Union[set[str], dict[str, Callable]] = set()

    def __init__(
        self,
        dataset_path: str,
        dataset_split: str,
783
        no_stream: bool = False,
zhuwenwen's avatar
zhuwenwen committed
784
785
786
787
788
789
790
        dataset_subset: Optional[str] = None,
        **kwargs,
    ) -> None:
        super().__init__(dataset_path=dataset_path, **kwargs)

        self.dataset_split = dataset_split
        self.dataset_subset = dataset_subset
791
        self.load_stream = not no_stream
zhuwenwen's avatar
zhuwenwen committed
792
793
794
795
796
797
798
799
        self.load_data()

    def load_data(self) -> None:
        """Load data from HuggingFace datasets."""
        self.data = load_dataset(
            self.dataset_path,
            name=self.dataset_subset,
            split=self.dataset_split,
800
            streaming=self.load_stream,
zhuwenwen's avatar
zhuwenwen committed
801
802
803
804
805
806
807
808
809
810
811
        )
        self.data = self.data.shuffle(seed=self.random_seed)


# -----------------------------------------------------------------------------
# Conversation Dataset Implementation
# -----------------------------------------------------------------------------


class ConversationDataset(HuggingFaceDataset):
    """Dataset for conversation data with multimodal support."""
zhuwenwen's avatar
zhuwenwen committed
812

zhuwenwen's avatar
zhuwenwen committed
813
    SUPPORTED_DATASET_PATHS = {
zhuwenwen's avatar
zhuwenwen committed
814
815
        "lmms-lab/LLaVA-OneVision-Data",
        "Aeala/ShareGPT_Vicuna_unfiltered",
zhuwenwen's avatar
zhuwenwen committed
816
    }
zhuwenwen's avatar
zhuwenwen committed
817
    IS_MULTIMODAL = True
zhuwenwen's avatar
zhuwenwen committed
818

zhuwenwen's avatar
zhuwenwen committed
819
820
821
822
823
824
    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
zhuwenwen's avatar
zhuwenwen committed
825
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
826
827
        **kwargs,
    ) -> list:
zhuwenwen's avatar
zhuwenwen committed
828
        # Filter examples with at least 2 conversations
zhuwenwen's avatar
zhuwenwen committed
829
        filtered_data = self.data.filter(lambda x: len(x["conversations"]) >= 2)
zhuwenwen's avatar
zhuwenwen committed
830
831
        sampled_requests = []
        dynamic_output = output_len is None
zhuwenwen's avatar
zhuwenwen committed
832
        ind = 0
zhuwenwen's avatar
zhuwenwen committed
833
834
835
836
837
838
839
840
841
842
843
844
845

        for item in filtered_data:
            if len(sampled_requests) >= num_requests:
                break
            conv = item["conversations"]
            prompt, completion = conv[0]["value"], conv[1]["value"]

            prompt_ids = tokenizer(prompt).input_ids
            completion_ids = tokenizer(completion).input_ids
            prompt_len = len(prompt_ids)
            completion_len = len(completion_ids)
            output_len = completion_len if dynamic_output else output_len
            assert isinstance(output_len, int) and output_len > 0
zhuwenwen's avatar
zhuwenwen committed
846
            if dynamic_output and not is_valid_sequence(prompt_len, completion_len):
zhuwenwen's avatar
zhuwenwen committed
847
                continue
zhuwenwen's avatar
zhuwenwen committed
848
            mm_content = process_image(item["image"]) if "image" in item else None
zhuwenwen's avatar
zhuwenwen committed
849
850
851
852
            if enable_multimodal_chat:
                # Note: when chat is enabled the request prompt_len is no longer
                # accurate and we will be using request output to count the
                # actual prompt len and output len
zhuwenwen's avatar
zhuwenwen committed
853
                prompt = self.apply_multimodal_chat_transformation(prompt, mm_content)
zhuwenwen's avatar
zhuwenwen committed
854
855
856
857
858
859
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
                    multi_modal_data=mm_content,
zhuwenwen's avatar
zhuwenwen committed
860
                    request_id=request_id_prefix + str(ind),
zhuwenwen's avatar
zhuwenwen committed
861
862
                )
            )
zhuwenwen's avatar
zhuwenwen committed
863
864
865
866
            ind += 1
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
        return sampled_requests


# -----------------------------------------------------------------------------
# Vision Arena Dataset Implementation
# -----------------------------------------------------------------------------


class VisionArenaDataset(HuggingFaceDataset):
    """
    Vision Arena Dataset.
    """

    DEFAULT_OUTPUT_LEN = 128
    SUPPORTED_DATASET_PATHS = {
zhuwenwen's avatar
zhuwenwen committed
882
883
        "lmarena-ai/VisionArena-Chat": lambda x: x["conversation"][0][0]["content"],
        "lmarena-ai/vision-arena-bench-v0.1": lambda x: x["turns"][0][0]["content"],
zhuwenwen's avatar
zhuwenwen committed
884
    }
zhuwenwen's avatar
zhuwenwen committed
885
    IS_MULTIMODAL = True
zhuwenwen's avatar
zhuwenwen committed
886
887
888
889
890
891
892

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
zhuwenwen's avatar
zhuwenwen committed
893
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
894
895
        **kwargs,
    ) -> list:
zhuwenwen's avatar
zhuwenwen committed
896
        output_len = output_len if output_len is not None else self.DEFAULT_OUTPUT_LEN
zhuwenwen's avatar
zhuwenwen committed
897
        sampled_requests = []
zhuwenwen's avatar
zhuwenwen committed
898
        for i, item in enumerate(self.data):
zhuwenwen's avatar
zhuwenwen committed
899
900
901
902
            if len(sampled_requests) >= num_requests:
                break
            parser_fn = self.SUPPORTED_DATASET_PATHS.get(self.dataset_path)
            if parser_fn is None:
zhuwenwen's avatar
zhuwenwen committed
903
                raise ValueError(f"Unsupported dataset path: {self.dataset_path}")
zhuwenwen's avatar
zhuwenwen committed
904
905
906
907
908
909
910
            prompt = parser_fn(item)
            mm_content = process_image(item["images"][0])
            prompt_len = len(tokenizer(prompt).input_ids)
            if enable_multimodal_chat:
                # Note: when chat is enabled the request prompt_len is no longer
                # accurate and we will be using request output to count the
                # actual prompt len
zhuwenwen's avatar
zhuwenwen committed
911
                prompt = self.apply_multimodal_chat_transformation(prompt, mm_content)
zhuwenwen's avatar
zhuwenwen committed
912
913
914
915
916
917
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
                    multi_modal_data=mm_content,
zhuwenwen's avatar
zhuwenwen committed
918
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
919
920
                )
            )
zhuwenwen's avatar
zhuwenwen committed
921
922
923
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
        return sampled_requests


# -----------------------------------------------------------------------------
# Instruct Coder Dataset Implementation
# -----------------------------------------------------------------------------


class InstructCoderDataset(HuggingFaceDataset):
    """
    InstructCoder Dataset.
    https://huggingface.co/datasets/likaixin/InstructCoder

    InstructCoder is the dataset designed for general code editing.  It consists
    of 114,239 instruction-input-output triplets, and covers multiple distinct
    code editing scenario.
    """

    DEFAULT_OUTPUT_LEN = 200  # this is the average default output length
    SUPPORTED_DATASET_PATHS = {
        "likaixin/InstructCoder",
    }

zhuwenwen's avatar
zhuwenwen committed
947
948
949
950
951
952
    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
zhuwenwen's avatar
zhuwenwen committed
953
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
954
955
956
        **kwargs,
    ) -> list:
        output_len = output_len if output_len is not None else self.DEFAULT_OUTPUT_LEN
zhuwenwen's avatar
zhuwenwen committed
957
        sampled_requests = []
zhuwenwen's avatar
zhuwenwen committed
958
        for i, item in enumerate(self.data):
zhuwenwen's avatar
zhuwenwen committed
959
960
            if len(sampled_requests) >= num_requests:
                break
zhuwenwen's avatar
zhuwenwen committed
961
962
963
964
            prompt = (
                f"{item['input']}\n\n{item['instruction']} Just output "
                "the code, do not include any explanation."
            )
zhuwenwen's avatar
zhuwenwen committed
965
966
967
968
969
970
971

            # apply template
            prompt = tokenizer.apply_chat_template(
                [{"role": "user", "content": prompt}],
                add_generation_prompt=True,
                tokenize=False,
            )
zhuwenwen's avatar
zhuwenwen committed
972
973
974
975
976
977
            prompt_len = len(tokenizer(prompt).input_ids)
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
zhuwenwen's avatar
zhuwenwen committed
978
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
979
980
                )
            )
zhuwenwen's avatar
zhuwenwen committed
981
982
983
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
        return sampled_requests


# -----------------------------------------------------------------------------
# MT-Bench Dataset Implementation
# -----------------------------------------------------------------------------


class MTBenchDataset(HuggingFaceDataset):
    """
    MT-Bench Dataset.
    https://huggingface.co/datasets/philschmid/mt-bench

    We create a single turn dataset for MT-Bench.
    This is similar to Spec decoding benchmark setup in vLLM
    https://github.com/vllm-project/vllm/blob/9d98ab5ec/examples/offline_inference/eagle.py#L14-L18
    """  # noqa: E501

    DEFAULT_OUTPUT_LEN = 256  # avg len used in SD bench in vLLM
    SUPPORTED_DATASET_PATHS = {
        "philschmid/mt-bench",
    }

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
        enable_multimodal_chat: bool = False,
zhuwenwen's avatar
zhuwenwen committed
1013
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
1014
1015
1016
1017
1018
        **kwargs,
    ) -> list:
        output_len = output_len if output_len is not None else self.DEFAULT_OUTPUT_LEN
        sampled_requests = []

zhuwenwen's avatar
zhuwenwen committed
1019
        for i, item in enumerate(self.data):
zhuwenwen's avatar
zhuwenwen committed
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
            if len(sampled_requests) >= num_requests:
                break
            prompt = item["turns"][0]

            # apply template
            prompt = tokenizer.apply_chat_template(
                [{"role": "user", "content": prompt}],
                add_generation_prompt=True,
                tokenize=False,
            )

            prompt_len = len(tokenizer(prompt).input_ids)
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
zhuwenwen's avatar
zhuwenwen committed
1037
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
1038
1039
                )
            )
zhuwenwen's avatar
zhuwenwen committed
1040
1041
1042
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
        return sampled_requests


# -----------------------------------------------------------------------------
# AIMO Dataset Implementation
# -----------------------------------------------------------------------------


class AIMODataset(HuggingFaceDataset):
    """
    Dataset class for processing a AIMO dataset with reasoning questions.
    """
zhuwenwen's avatar
zhuwenwen committed
1055

zhuwenwen's avatar
zhuwenwen committed
1056
    SUPPORTED_DATASET_PATHS = {
zhuwenwen's avatar
zhuwenwen committed
1057
1058
1059
        "AI-MO/aimo-validation-aime",
        "AI-MO/NuminaMath-1.5",
        "AI-MO/NuminaMath-CoT",
zhuwenwen's avatar
zhuwenwen committed
1060
1061
    }

zhuwenwen's avatar
zhuwenwen committed
1062
1063
1064
1065
1066
    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
zhuwenwen's avatar
zhuwenwen committed
1067
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
1068
1069
        **kwargs,
    ) -> list:
zhuwenwen's avatar
zhuwenwen committed
1070
1071
        sampled_requests = []
        dynamic_output = output_len is None
zhuwenwen's avatar
zhuwenwen committed
1072
        ind = 0
zhuwenwen's avatar
zhuwenwen committed
1073
1074
1075
1076

        for item in self.data:
            if len(sampled_requests) >= num_requests:
                break
zhuwenwen's avatar
zhuwenwen committed
1077
            prompt, completion = item["problem"], item["solution"]
zhuwenwen's avatar
zhuwenwen committed
1078
1079
1080
1081
1082
1083
1084

            prompt_ids = tokenizer(prompt).input_ids
            completion_ids = tokenizer(completion).input_ids
            prompt_len = len(prompt_ids)
            completion_len = len(completion_ids)
            output_len = completion_len if dynamic_output else output_len
            assert isinstance(output_len, int) and output_len > 0
zhuwenwen's avatar
zhuwenwen committed
1085
1086
1087
            if dynamic_output and not is_valid_sequence(
                prompt_len, completion_len, max_prompt_len=2048, max_total_len=32000
            ):
zhuwenwen's avatar
zhuwenwen committed
1088
1089
1090
1091
1092
1093
1094
                continue
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
                    multi_modal_data=None,
zhuwenwen's avatar
zhuwenwen committed
1095
                    request_id=request_id_prefix + str(ind),
zhuwenwen's avatar
zhuwenwen committed
1096
1097
                )
            )
zhuwenwen's avatar
zhuwenwen committed
1098
1099
1100
1101
            ind += 1
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
1102
        return sampled_requests
zhuwenwen's avatar
zhuwenwen committed
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170


# -----------------------------------------------------------------------------
# Next Edit Prediction Dataset Implementation
# -----------------------------------------------------------------------------


zeta_prompt = """### Instruction:
You are a code completion assistant and your task is to analyze user edits and then rewrite an excerpt that the user provides, suggesting the appropriate edits within the excerpt, taking into account the cursor location.

### User Edits:

{}

### User Excerpt:

{}

### Response:

"""  # noqa: E501


def _format_zeta_prompt(
    sample: dict, original_start_marker: str = "<|editable_region_start|>"
) -> dict:
    """Format the zeta prompt for the Next Edit Prediction (NEP) dataset.

    This function formats examples from the NEP dataset
    into prompts and expected outputs. It could be
    further extended to support more NEP datasets.

    Args:
        sample: The dataset sample containing events,
            inputs, and outputs.
        original_start_marker: The marker indicating the
            start of the editable region. Defaults to
            "<|editable_region_start|>".

    Returns:
        A dictionary with the formatted prompts and expected outputs.
    """
    events = sample["events"]
    input = sample["input"]
    output = sample["output"]
    prompt = zeta_prompt.format(events, input)

    # following the original implementation, extract the focused region
    # from the raw output
    output_start_index = output.find(original_start_marker)
    output_focused_region = output[output_start_index:]
    expected_output = output_focused_region

    return {"prompt": prompt, "expected_output": expected_output}


class NextEditPredictionDataset(HuggingFaceDataset):
    """
    Dataset class for processing a Next Edit Prediction dataset.
    """

    SUPPORTED_DATASET_PATHS = {
        "zed-industries/zeta",
    }
    MAPPING_PROMPT_FUNCS = {
        "zed-industries/zeta": _format_zeta_prompt,
    }

zhuwenwen's avatar
zhuwenwen committed
1171
1172
1173
1174
1175
1176
1177
    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        request_id_prefix: str = "",
        **kwargs,
    ):
zhuwenwen's avatar
zhuwenwen committed
1178
1179
1180
1181
        formatting_prompt_func = self.MAPPING_PROMPT_FUNCS.get(self.dataset_path)
        if formatting_prompt_func is None:
            raise ValueError(f"Unsupported dataset path: {self.dataset_path}")
        samples = []
zhuwenwen's avatar
zhuwenwen committed
1182
        for i, sample in enumerate(self.data):
zhuwenwen's avatar
zhuwenwen committed
1183
1184
1185
1186
1187
1188
1189
1190
            sample = formatting_prompt_func(sample)
            samples.append(
                SampleRequest(
                    prompt=sample["prompt"],
                    prompt_len=len(tokenizer(sample["prompt"]).input_ids),
                    expected_output_len=len(
                        tokenizer(sample["expected_output"]).input_ids
                    ),
zhuwenwen's avatar
zhuwenwen committed
1191
                    request_id=request_id_prefix + str(i),
zhuwenwen's avatar
zhuwenwen committed
1192
1193
1194
1195
                )
            )
            if len(samples) >= num_requests:
                break
zhuwenwen's avatar
zhuwenwen committed
1196
        self.maybe_oversample_requests(samples, num_requests, request_id_prefix)
zhuwenwen's avatar
zhuwenwen committed
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
        return samples


# -----------------------------------------------------------------------------
# ASR Dataset Implementation
# -----------------------------------------------------------------------------


class ASRDataset(HuggingFaceDataset):
    """
    Dataset class for processing a ASR dataset for transcription.
    Tested on the following set:

    +----------------+----------------------------------------+--------------------------+-----------------------------+
    | Dataset        | Domain                                 | Speaking Style           | hf-subset                   |
    +----------------+----------------------------------------+--------------------------+-----------------------------+
    | TED-LIUM       | TED talks                              | Oratory                  | release1, release2, release3|
    |                |                                        |                          | release3-speaker-adaptation |
    | VoxPopuli      | European Parliament                    | Oratory                  | en, de, it, fr,  ...        |
    | LibriSpeech    | Audiobook                              | Narrated                 | "LIUM/tedlium"              |
    | GigaSpeech     | Audiobook, podcast, YouTube            | Narrated, spontaneous    | xs, s, m, l, xl, dev, test  |
    | SPGISpeech     | Financial meetings                     | Oratory, spontaneous     | S, M, L, dev, test          |
    | AMI            | Meetings                               | Spontaneous              | ihm, sdm                    |
    +----------------+----------------------------------------+--------------------------+-----------------------------+

    """  # noqa: E501

    SUPPORTED_DATASET_PATHS = {
        "openslr/librispeech_asr",
        "facebook/voxpopuli",
        "LIUM/tedlium",
        "edinburghcstr/ami",
        "speechcolab/gigaspeech",
        "kensho/spgispeech",
    }

    DEFAULT_OUTPUT_LEN = 128
    IS_MULTIMODAL = True

    # TODO Whisper-specific. Abstract interface when more models are supported.
    TRANSCRIPTION_PREAMBLE = "<|startoftranscript|><|en|><|transcribe|><|notimestamps|>"
    skip_long_audios: bool = True

    def sample(
        self,
        tokenizer: PreTrainedTokenizerBase,
        num_requests: int,
        output_len: Optional[int] = None,
zhuwenwen's avatar
zhuwenwen committed
1245
        request_id_prefix: str = "",
zhuwenwen's avatar
zhuwenwen committed
1246
1247
1248
1249
1250
1251
1252
1253
1254
        **kwargs,
    ) -> list:
        import librosa

        output_len = output_len if output_len is not None else self.DEFAULT_OUTPUT_LEN
        prompt = ASRDataset.TRANSCRIPTION_PREAMBLE
        prompt_len = len(tokenizer(prompt).input_ids)
        sampled_requests = []
        skipped = 0
zhuwenwen's avatar
zhuwenwen committed
1255
        ind = 0
zhuwenwen's avatar
zhuwenwen committed
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
        for item in self.data:
            if len(sampled_requests) >= num_requests:
                break
            audio = item["audio"]
            y, sr = audio["array"], audio["sampling_rate"]
            duration_s = librosa.get_duration(y=y, sr=sr)
            # Whisper max supported duration
            if self.skip_long_audios and duration_s > 30:
                skipped += 1
                continue

            mm_content = {"audio": (y, sr)}
            sampled_requests.append(
                SampleRequest(
                    prompt=prompt,
                    prompt_len=prompt_len,
                    expected_output_len=output_len,
                    multi_modal_data=mm_content,
zhuwenwen's avatar
zhuwenwen committed
1274
                    request_id=request_id_prefix + str(ind),
zhuwenwen's avatar
zhuwenwen committed
1275
1276
                )
            )
zhuwenwen's avatar
zhuwenwen committed
1277
            ind += 1
zhuwenwen's avatar
zhuwenwen committed
1278
1279
1280
1281
1282
1283
1284
        if skipped:
            logger.warning(
                "%d samples discarded from dataset due to"
                " their length being greater than"
                " what Whisper supports.",
                skipped,
            )
zhuwenwen's avatar
zhuwenwen committed
1285
1286
1287
        self.maybe_oversample_requests(
            sampled_requests, num_requests, request_id_prefix
        )
zhuwenwen's avatar
zhuwenwen committed
1288
        return sampled_requests