| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| from collections import defaultdict |
| from dataclasses import dataclass |
| from typing import TYPE_CHECKING, Any, Optional |
|
|
| from ...extras import logging |
| from ...extras.constants import IGNORE_INDEX |
| from .processor_utils import DatasetProcessor, greedy_knapsack, infer_seqlen |
|
|
|
|
| if TYPE_CHECKING: |
| from ..mm_plugin import AudioInput, ImageInput, VideoInput |
|
|
|
|
| logger = logging.get_logger(__name__) |
|
|
|
|
| @dataclass |
| class SupervisedDatasetProcessor(DatasetProcessor): |
| def _encode_data_example( |
| self, |
| prompt: list[dict[str, str]], |
| response: list[dict[str, str]], |
| system: Optional[str], |
| tools: Optional[str], |
| images: list["ImageInput"], |
| videos: list["VideoInput"], |
| audios: list["AudioInput"], |
| ) -> tuple[list[int], list[int]]: |
| messages = self.template.mm_plugin.process_messages(prompt + response, images, videos, audios, self.processor) |
| input_ids, labels = self.template.mm_plugin.process_token_ids( |
| [], [], images, videos, audios, self.tokenizer, self.processor |
| ) |
| encoded_pairs = self.template.encode_multiturn(self.tokenizer, messages, system, tools) |
| total_length = len(input_ids) + (1 if self.template.efficient_eos else 0) |
| if self.data_args.mask_history: |
| encoded_pairs = encoded_pairs[::-1] |
|
|
| for turn_idx, (source_ids, target_ids) in enumerate(encoded_pairs): |
| if total_length >= self.data_args.cutoff_len: |
| break |
|
|
| source_len, target_len = infer_seqlen( |
| len(source_ids), len(target_ids), self.data_args.cutoff_len - total_length |
| ) |
| source_ids = source_ids[:source_len] |
| target_ids = target_ids[:target_len] |
| total_length += source_len + target_len |
|
|
| if self.data_args.train_on_prompt: |
| source_label = source_ids |
| elif self.template.efficient_eos and turn_idx != 0: |
| source_label = [self.tokenizer.eos_token_id] + [IGNORE_INDEX] * (source_len - 1) |
| else: |
| source_label = [IGNORE_INDEX] * source_len |
|
|
| if self.data_args.mask_history and turn_idx != 0: |
| target_label = [IGNORE_INDEX] * target_len |
| else: |
| target_label = target_ids |
|
|
| if self.data_args.mask_history: |
| input_ids = source_ids + target_ids + input_ids |
| labels = source_label + target_label + labels |
| else: |
| input_ids += source_ids + target_ids |
| labels += source_label + target_label |
|
|
| if self.template.efficient_eos: |
| input_ids += [self.tokenizer.eos_token_id] |
| labels += [self.tokenizer.eos_token_id] |
|
|
| return input_ids, labels |
|
|
| def preprocess_dataset(self, examples: dict[str, list[Any]]) -> dict[str, list[Any]]: |
| |
| |
| model_inputs = defaultdict(list) |
| for i in range(len(examples["_prompt"])): |
| if len(examples["_prompt"][i]) % 2 != 1 or len(examples["_response"][i]) != 1: |
| logger.warning_rank0( |
| "Dropped invalid example: {}".format(examples["_prompt"][i] + examples["_response"][i]) |
| ) |
| continue |
|
|
| input_ids, labels = self._encode_data_example( |
| prompt=examples["_prompt"][i], |
| response=examples["_response"][i], |
| system=examples["_system"][i], |
| tools=examples["_tools"][i], |
| images=examples["_images"][i] or [], |
| videos=examples["_videos"][i] or [], |
| audios=examples["_audios"][i] or [], |
| ) |
| model_inputs["input_ids"].append(input_ids) |
| model_inputs["attention_mask"].append([1] * len(input_ids)) |
| model_inputs["labels"].append(labels) |
| model_inputs["images"].append(examples["_images"][i]) |
| model_inputs["videos"].append(examples["_videos"][i]) |
| model_inputs["audios"].append(examples["_audios"][i]) |
|
|
| return model_inputs |
|
|
| def print_data_example(self, example: dict[str, list[int]]) -> None: |
| valid_labels = list(filter(lambda x: x != IGNORE_INDEX, example["labels"])) |
| print("input_ids:\n{}".format(example["input_ids"])) |
| print("inputs:\n{}".format(self.tokenizer.decode(example["input_ids"], skip_special_tokens=False))) |
| print("label_ids:\n{}".format(example["labels"])) |
| print(f"labels:\n{self.tokenizer.decode(valid_labels, skip_special_tokens=False)}") |
|
|
|
|
| @dataclass |
| class PackedSupervisedDatasetProcessor(SupervisedDatasetProcessor): |
| def preprocess_dataset(self, examples: dict[str, list[Any]]) -> dict[str, list[Any]]: |
| |
| |
| |
| valid_num = 0 |
| batch_input_ids, batch_labels, batch_images, batch_videos, batch_audios = [], [], [], [], [] |
| lengths = [] |
| length2indexes = defaultdict(list) |
| for i in range(len(examples["_prompt"])): |
| if len(examples["_prompt"][i]) % 2 != 1 or len(examples["_response"][i]) != 1: |
| logger.warning_rank0( |
| "Dropped invalid example: {}".format(examples["_prompt"][i] + examples["_response"][i]) |
| ) |
| continue |
|
|
| input_ids, labels = self._encode_data_example( |
| prompt=examples["_prompt"][i], |
| response=examples["_response"][i], |
| system=examples["_system"][i], |
| tools=examples["_tools"][i], |
| images=examples["_images"][i] or [], |
| videos=examples["_videos"][i] or [], |
| audios=examples["_audios"][i] or [], |
| ) |
| length = len(input_ids) |
| if length > self.data_args.cutoff_len: |
| logger.warning_rank0(f"Dropped lengthy example with length {length} > {self.data_args.cutoff_len}.") |
| else: |
| lengths.append(length) |
| length2indexes[length].append(valid_num) |
| batch_input_ids.append(input_ids) |
| batch_labels.append(labels) |
| batch_images.append(examples["_images"][i] or []) |
| batch_videos.append(examples["_videos"][i] or []) |
| batch_audios.append(examples["_audios"][i] or []) |
| valid_num += 1 |
|
|
| model_inputs = defaultdict(list) |
| knapsacks = greedy_knapsack(lengths, self.data_args.cutoff_len) |
| for knapsack in knapsacks: |
| packed_input_ids, packed_attention_masks, packed_position_ids, packed_labels = [], [], [], [] |
| packed_images, packed_videos, packed_audios = [], [], [] |
| for i, length in enumerate(knapsack): |
| index = length2indexes[length].pop() |
| packed_input_ids += batch_input_ids[index] |
| packed_position_ids += list(range(len(batch_input_ids[index]))) |
| packed_labels += batch_labels[index] |
| packed_images += batch_images[index] |
| packed_videos += batch_videos[index] |
| packed_audios += batch_audios[index] |
| if self.data_args.neat_packing: |
| packed_attention_masks += [i + 1] * len(batch_input_ids[index]) |
| else: |
| packed_attention_masks += [1] * len(batch_input_ids[index]) |
|
|
| if len(packed_input_ids) < self.data_args.cutoff_len + 1: |
| pad_length = self.data_args.cutoff_len - len(packed_input_ids) + 1 |
| packed_input_ids += [self.tokenizer.pad_token_id] * pad_length |
| packed_position_ids += [0] * pad_length |
| packed_labels += [IGNORE_INDEX] * pad_length |
| if self.data_args.neat_packing: |
| packed_attention_masks += [0] * pad_length |
| else: |
| packed_attention_masks += [1] * pad_length |
|
|
| if len(packed_input_ids) != self.data_args.cutoff_len + 1: |
| raise ValueError("The length of packed example should be identical to the cutoff length.") |
|
|
| model_inputs["input_ids"].append(packed_input_ids) |
| model_inputs["attention_mask"].append(packed_attention_masks) |
| model_inputs["position_ids"].append(packed_position_ids) |
| model_inputs["labels"].append(packed_labels) |
| model_inputs["images"].append(packed_images or None) |
| model_inputs["videos"].append(packed_videos or None) |
| model_inputs["audios"].append(packed_audios or None) |
|
|
| return model_inputs |
|
|