Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Orca data filtered loader #3655

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion model/model_training/custom_datasets/__init__.py
Expand Up @@ -13,7 +13,7 @@
)
from model_training.custom_datasets.oasst_dataset import load_oasst_export
from model_training.custom_datasets.pretrain_datasets import FanFics, RedPajama
from model_training.custom_datasets.prompt_dialogue import DolphinMix, Gpt4All, OrcaChat, load_oig_file
from model_training.custom_datasets.prompt_dialogue import DolphinMix, Gpt4All, OrcaChat, load_oig_file, BestOfMegacode
from model_training.custom_datasets.qa_datasets import (
SODA,
AlpacaGpt4,
Expand Down Expand Up @@ -188,6 +188,8 @@ def get_one_dataset(
dataset = DolphinMix(cache_dir=data_path, **kwargs)
elif dataset_name in RAG_DATASETS.keys():
dataset = RAGDataset(dataset_name, cache_dir=data_path, **kwargs)
elif dataset_name == "bestofmegacode":
dataset = BestOfMegacode(cache_dir=data_path, **kwargs)
else:
raise ValueError(f"Unknown dataset {dataset_name}")

Expand Down
42 changes: 37 additions & 5 deletions model/model_training/custom_datasets/prompt_dialogue.py
Expand Up @@ -11,7 +11,8 @@
from model_training.custom_datasets.utils import _filter_by_words
from torch import Generator, randperm
from torch.utils.data import Dataset, random_split

import datasets
datasets.builder.has_sufficient_disk_space = lambda needed_bytes, directory='.': True

def load_oig_file(
source_url: str,
Expand Down Expand Up @@ -172,15 +173,18 @@ def __getitem__(self, index: int) -> list[str] | tuple[str]:
class OrcaChat(Dataset):
name = "orca-chat"

def __init__(self, data_files: Union[List[str], str] = "orca-chat-gpt4.json", cache_dir: str = None) -> None:
self.dataset = load_dataset("shahules786/orca-chat", split="train", data_files=data_files, cache_dir=cache_dir)

def __init__(self, rows_per_conv: int = 1, use_auth_token: Optional[Union[bool, str]] = None, cache_dir: str = None) -> None:
self.dataset = load_dataset("shahules786/orca-best", split="train",
use_auth_token=use_auth_token,
cache_dir=cache_dir)
self.rows_per_conv = rows_per_conv

def __len__(self):
return len(self.dataset)

def __getitem__(self, idx):
conversation, instruction = [self.dataset[idx][key] for key in ("conversation", "instruction")]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is now in ("cluster", "instruction")

conversation = [(item["input"], item["output"]) for item in conversation]
conversation = [(item["input"], item["output"]) for item in conversation["samples"][:self.rows_per_conv]]
conversation = list(sum(conversation, ()))
conv_utt: list[Utterance] = [
(
Expand All @@ -195,6 +199,34 @@ def __getitem__(self, idx):
return DatasetEntrySft(conversation=conv_utt, system_message=instruction)


class BestOfMegacode(Dataset):
name = "bestofmegacode"

def __init__(self, rows_per_conv: int = 1, use_auth_token: Optional[Union[bool, str]] = None, cache_dir: str = None) -> None:
self.dataset = load_dataset("shahules786/megacode-best", split="train",
use_auth_token=use_auth_token,
cache_dir=cache_dir)
self.rows_per_conv = rows_per_conv

def __len__(self):
return len(self.dataset)

def __getitem__(self, idx):
conversation = [self.dataset[idx][key] for key in ("conversation")]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably should be conversation = self.dataset[idx]["conversation"] .. -> ("conversation") is no tuple and key would iterate over the characters.

conversation = [(item["USER"], item["ASSISTANT"]) for item in conversation["samples"][:self.rows_per_conv]]
conversation = list(sum(conversation, ()))
conv_utt: list[Utterance] = [
(
Utterance(
text=conv,
role=Role.prompter if i % 2 == 0 else Role.assistant,
)
)
for i, conv in enumerate(conversation)
]

return DatasetEntrySft(conversation=conv_utt)

class DolphinMix(Dataset):
name = "dophin-mix"

Expand Down