forked from eric-mitchell/direct-preference-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
preference_datasets.py
620 lines (525 loc) · 26.7 KB
/
preference_datasets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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
230
231
232
233
234
235
236
237
238
239
240
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
import datasets
import torch
from torch.utils.data import DataLoader, Dataset
from utils import get_local_dir, TemporarilySeededRandom
from torch.nn.utils.rnn import pad_sequence
from collections import defaultdict
import tqdm
import random
from bs4 import BeautifulSoup, NavigableString
import numpy as np
from typing import Dict, List, Optional, Iterator, Callable, Union, Tuple
import pickle
import json
def extract_anthropic_prompt(prompt_and_response):
"""Extract the anthropic prompt from a prompt and response pair."""
search_term = '\n\nAssistant:'
search_term_idx = prompt_and_response.rfind(search_term)
assert search_term_idx != -1, f"Prompt and response does not contain '{search_term}'"
return prompt_and_response[:search_term_idx + len(search_term)]
def strip_html_tags(html_string):
"""Strip HTML tags from a string, except for <code> tags (which contain real code in the StackExchange answers)."""
# Create a BeautifulSoup object
soup = BeautifulSoup(html_string, 'html.parser')
# Initialize an empty list to store the text
text = []
for element in soup.children:
if isinstance(element, NavigableString):
continue
if element.name == 'p':
text.append(''.join(child.string for child in element.children if isinstance(child, NavigableString)))
elif element.name == 'pre':
for code in element.find_all('code'):
text.append("<code>" + code.get_text() + "</code>")
elif element.name == 'code':
text.append("<code>" + element.get_text() + "</code>")
# Join the text together with newlines in between
text = "\n\n".join(text)
return text
def get_se(split, silent=False, cache_dir: str = None) -> Dict[str, Dict[str, Union[List[Tuple[int, int]], List[str], str]]]:
"""Load the StackExchange dataset from Huggingface, and return a dict of prompts and responses. See get_hh for the format.
We strip the HTML tags from the responses (except for <code> tags), and we add necessary newlines.
"""
print(f'Loading SE dataset ({split} split) from Huggingface...')
dataset = datasets.load_dataset('HuggingFaceH4/stack-exchange-preferences', cache_dir=cache_dir)['train']
print('done')
# shuffle the dataset and select 1% for test
dataset = dataset.shuffle(seed=42)
dataset = dataset.select(range(int(len(dataset) * 0.01))) if split == 'test' else dataset.select(
range(int(len(dataset) * 0.01), len(dataset)))
def strip_html(x):
x['question'] = strip_html_tags(x['question'])
for a in x['answers']:
a['text'] = strip_html_tags(a['text'])
return x
dataset = dataset.map(strip_html, num_proc=64)
data = defaultdict(dict)
for row in tqdm.tqdm(dataset, desc='Processing SE', disable=silent):
prompt = '\n\nHuman: ' + row['question'] + '\n\nAssistant:'
responses = [' ' + a['text'] for a in row['answers']]
scores = [a['pm_score'] for a in row['answers']]
pairs = []
for i in range(len(responses)):
for j in range(i + 1, len(responses)):
pairs.append((i, j) if scores[i] > scores[j] else (j, i))
data[prompt]['responses'] = responses
data[prompt]['pairs'] = pairs
data[prompt]['sft_target'] = max(responses, key=lambda x: scores[responses.index(x)])
return data
def get_shp(split: str, silent: bool = False, cache_dir: str = None) -> Dict[str, Dict[str, Union[List[Tuple[int, int]], List[str], str]]]:
"""Load the Stanford Human Preferences dataset from Huggingface and convert it to the necessary format. See hh for the format.
We filter preference pairs to only keep pairs where the score ratio is at least 2.
For this dataset, the sft_target is the response with the highest score.
"""
print(f'Loading SHP dataset ({split} split) from Huggingface...')
dataset = datasets.load_dataset('stanfordnlp/SHP', split=split, cache_dir=cache_dir)
print('done')
data = defaultdict(lambda: defaultdict(list))
for row in tqdm.tqdm(dataset, desc='Processing SHP', disable=silent):
prompt = '\n\nHuman: ' + row['history'] + '\n\nAssistant:'
responses = [' ' + row['human_ref_A'], ' ' + row['human_ref_B']]
scores = [row['score_A'], row['score_B']]
if prompt in data:
n_responses = len(data[prompt]['responses'])
else:
n_responses = 0
score_ratio = max(scores[0] / scores[1], scores[1] / scores[0])
if score_ratio < 2:
continue
# according to https://huggingface.co/datasets/stanfordnlp/SHP
data[prompt]['pairs'].append((n_responses, n_responses + 1) if row['labels'] == 1 else (n_responses + 1, n_responses))
data[prompt]['responses'].extend(responses)
data[prompt]['scores'].extend(scores)
for prompt in data:
data[prompt]['sft_target'] = max(data[prompt]['responses'], key=lambda x: data[prompt]['scores'][data[prompt]['responses'].index(x)])
del data[prompt]['scores']
return data
def get_hh(split: str, silent: bool = False, cache_dir: str = None) -> Dict[str, Dict[str, Union[List[Tuple[int, int]], List[str], str]]]:
"""Load the Anthropic Helpful-Harmless dataset from Huggingface and convert it to the necessary format.
The dataset is converted to a dictionary with the following structure:
{
'prompt1': {
'responses': List[str],
'pairs': List[Tuple[int, int]],
'sft_target': str
},
'prompt2': {
...
},
}
Prompts should be structured as follows:
\n\nHuman: <prompt>\n\nAssistant:
Multiple turns are allowed, but the prompt should always start with \n\nHuman: and end with \n\nAssistant:.
For this dataset, the sft_target is just the chosen response.
"""
print(f'Loading HH dataset ({split} split) from Huggingface...')
dataset = datasets.load_dataset('Anthropic/hh-rlhf', split=split, cache_dir=cache_dir)
print('done')
def split_prompt_and_responses(ex):
prompt = extract_anthropic_prompt(ex['chosen'])
chosen_response = ex['chosen'][len(prompt):]
rejected_response = ex['rejected'][len(prompt):]
return prompt, chosen_response, rejected_response
data = defaultdict(lambda: defaultdict(list))
for row in tqdm.tqdm(dataset, desc='Processing HH', disable=silent):
prompt, chosen, rejected = split_prompt_and_responses(row)
responses = [chosen, rejected]
n_responses = len(data[prompt]['responses'])
data[prompt]['pairs'].append((n_responses, n_responses + 1))
data[prompt]['responses'].extend(responses)
data[prompt]['sft_target'] = chosen
return data
def get_arithmetic_sft(silent=False, num_examples=500000):
print(f'Loading sft arithmetic dataset from Huggingface...')
dataset = datasets.load_dataset("tiedong/goat",split='train')
print('done')
dataset=dataset.shuffle()
data = defaultdict(lambda: defaultdict(list))
for i, row in enumerate(tqdm.tqdm(dataset, desc='Processing sft arithmetic', disable=silent)):
if i >= num_examples:
break
prompt = row['instruction']+'\nAnswer: '
data[prompt]['sft_target'] = row['output']
assert len(data)<=num_examples
return data
def get_noisy_arithmetic_sft(silent=False):
print(f'Loading noisy sft arithmetic dataset from Huggingface...')
dataset = datasets.load_dataset("eric-math123/instruct_addition",split='train')
print('done')
dataset=dataset.shuffle()
data = defaultdict(lambda: defaultdict(list))
for i, row in enumerate(tqdm.tqdm(dataset, desc='Processing noisy sft arithmetic', disable=silent)):
prompt = row['instruction']+'\nAnswer: '
data[prompt]['sft_target'] = row['output']
return data
def get_arithmetic_dpo(silent=False):
print(f'Loading dpo arithmetic dataset...')
with open('galactica_outputs_dpo0.pkl', 'rb') as f:
prompt_dict=pickle.load(f)
print('done')
data = defaultdict(lambda: defaultdict(list))
for key, value in prompt_dict.items():
prompt=key+'\nAnswer: '
chosen=value[0][0].split('\nAnswer: ')[1]
rejected=value[1][0].split('\nAnswer: ')[1]
responses = [chosen, rejected]
n_responses = len(data[prompt]['responses'])
data[prompt]['pairs'].append((n_responses, n_responses + 1))
data[prompt]['responses'].extend(responses)
data[prompt]['sft_target'] = chosen
return data
def get_noisy_arithmetic_dpo(silent=False):
print(f'Loading dpo arithmetic dataset...')
with open('llama89600_outputs_dpo0.pkl', 'rb') as f:
prompt_dict=pickle.load(f)
print('done')
data = defaultdict(lambda: defaultdict(list))
for key, value in prompt_dict.items():
prompt=key+'\nAnswer: '
chosen=value[0][0].split('\nAnswer: ')[1]
rejected=value[1][0].split('\nAnswer: ')[1]
responses = [chosen, rejected]
n_responses = len(data[prompt]['responses'])
data[prompt]['pairs'].append((n_responses, n_responses + 1))
data[prompt]['responses'].extend(responses)
data[prompt]['sft_target'] = chosen
return data
def process_of_addition(num1, num2):
num1_str, num2_str = str(num1), str(num2)
max_len = max(len(num1_str), len(num2_str))
# Adding leading zeros to make both numbers of equal length
num1_str = num1_str.zfill(max_len)
num2_str = num2_str.zfill(max_len)
carry = 0
current_sum = '' # Initialize as an empty string
result = [] # Initial state
for i in range(max_len - 1, -1, -1): # From rightmost digit to leftmost
temp_sum = int(num1_str[i]) + int(num2_str[i]) + carry
carry = 1 if temp_sum >= 10 else 0 # Update carry
# Update current sum as a string, adding a new digit to the end
current_sum = str(temp_sum % 10) + current_sum
# Add the current state to the result
result.append([str(max_len - i), str(carry), current_sum.zfill(max_len - i)])
return result
def get_outputs(num1, num2):
ls=process_of_addition(num1, num2)
template='index {}, carry {}, current {}'
ret_ls=[template.format(*out) for out in ls]
ret='\n'.join(ret_ls)+'\nFinal: '+str(num1+num2)
return ret
def get_arithmetic_sequential_state(silent=False, num_examples=500000):
print(f'Loading sequential arithmetic dataset from Huggingface...')
dataset = datasets.load_dataset("eric-math123/instruct_addition",split='train')
print('done')
dataset=dataset.shuffle()
data = defaultdict(lambda: defaultdict(list))
for i, row in enumerate(tqdm.tqdm(dataset, desc='Processing sft arithmetic', disable=silent)):
if i >= num_examples:
break
nums = row['input'].split(' ')
num1, num2 = int(nums[0]),int(nums[-1])
outputs = get_outputs(num1, num2)
prompt = row['instruction'] + '\nAnswer: '
#data[prompt]['sft_target'] = row['output']
data[prompt]['sft_target'] = outputs
assert len(data)<=num_examples
return data
def get_arithmetic_recursive(silent=False,num_examples=15000):
print(f'Loading recursive arithmetic dataset from Huggingface...')
dataset = datasets.load_dataset("eric-math123/recursive_add_split",split='train')
print('done')
# take out shuffling because small digit examples never seen since they are duplicates
#dataset=dataset.shuffle()
data = defaultdict(lambda: defaultdict(list))
for i, row in enumerate(tqdm.tqdm(dataset, desc='Processing recursive arithmetic', disable=silent)):
if i >= num_examples:
break
prompt = row['input']
data[prompt]['sft_target'] = row['output']
assert len(data)<=num_examples
return data
def get_dp_recursive(silent=False):
with open('recursive_dp'+'.json',"rb") as test_file:
dataset = json.load(test_file)
data = defaultdict(lambda: defaultdict(list))
for i, row in enumerate(tqdm.tqdm(dataset, desc=f'Processing dp recursive', disable=silent)):
prompt = row['input']
data[prompt]['sft_target'] = row['output']
return data
def get_dataset(name: str, split: str, silent: bool = False, cache_dir: str = None):
"""Load the given dataset by name. Supported by default are 'shp', 'hh', and 'se'."""
if name == 'shp':
data = get_shp(split, silent=silent, cache_dir=cache_dir)
elif name == 'hh':
data = get_hh(split, silent=silent, cache_dir=cache_dir)
elif name == 'se':
data = get_se(split, silent=silent, cache_dir=cache_dir)
elif name == 'arithmetic_sft':
data = get_arithmetic_sft()
elif name == 'arithmetic_dpo':
data = get_arithmetic_dpo()
elif name == 'noisy_arithmetic_sft':
data = get_noisy_arithmetic_sft()
elif name == 'noisy_arithmetic_dpo':
data = get_noisy_arithmetic_dpo()
elif name == 'arithmetic_sequential_state':
data = get_arithmetic_sequential_state()
elif name == 'arithmetic_recursive':
data = get_arithmetic_recursive()
elif name == 'dp_recursive':
data = get_dp_recursive()
else:
raise ValueError(f"Unknown dataset '{name}'")
if not set(list(data.values())[0].keys()) == {'responses', 'pairs', 'sft_target'}:
print(f"Warning Unexpected keys in dataset: {list(list(data.values())[0].keys())}")
return data
def get_collate_fn(tokenizer) -> Callable[[List[Dict]], Dict[str, Union[List, torch.Tensor]]]:
"""Returns a collate function for the given tokenizer.
The collate function takes a list of examples (dicts, where values are lists of
ints [tokens] or strings [the original texts]) and returns a batch of examples,
PyTorch tensors padded to the maximum length. Strings are passed through."""
def collate_fn(batch):
# first, pad everything to the same length
padded_batch = {}
for k in batch[0].keys():
if k.endswith('_input_ids') or k.endswith('_attention_mask') or k.endswith('_labels'):
if 'prompt' in k: # adapted from https://stackoverflow.com/questions/73256206
to_pad = [torch.LongTensor(ex[k][::-1]) for ex in batch]
else:
to_pad = [torch.LongTensor(ex[k]) for ex in batch]
if k.endswith('_input_ids'):
padding_value = tokenizer.pad_token_id
elif k.endswith('_labels'):
padding_value = -100
elif k.endswith('_attention_mask'):
padding_value = 0
else:
raise ValueError(f"Unexpected key in batch '{k}'")
padded_batch[k] = pad_sequence(to_pad, batch_first=True, padding_value=padding_value)
if 'prompt' in k: # for the prompt, flip back so padding is on left side
padded_batch[k] = padded_batch[k].flip(dims=[1])
else:
padded_batch[k] = [ex[k] for ex in batch]
return padded_batch
return collate_fn
def tokenize_batch_element(prompt: str, chosen: str, rejected: str, truncation_mode: str, tokenizer, max_length: int, max_prompt_length: int) -> Dict:
"""Tokenize a single batch element.
At this stage, we don't convert to PyTorch tensors yet; we just handle the truncation
in case the prompt + chosen or prompt + rejected responses is/are too long. First
we truncate the prompt; if we're still too long, we truncate the chosen/rejected.
We also create the labels for the chosen/rejected responses, which are of length equal to
the sum of the length of the prompt and the chosen/rejected response, with -100 for the
prompt tokens.
"""
#print('prompt',prompt)
#print('chosen',chosen)
#print('rejected',rejected)
chosen_tokens = tokenizer(chosen, add_special_tokens=False)
rejected_tokens = tokenizer(rejected, add_special_tokens=False)
prompt_tokens = tokenizer(prompt, add_special_tokens=False)
assert tokenizer.eos_token_id not in prompt_tokens['input_ids'], f"Prompt contains EOS token: {prompt}"
assert tokenizer.eos_token_id not in chosen_tokens['input_ids'], f"Chosen response contains EOS token: {chosen}"
assert tokenizer.eos_token_id not in rejected_tokens['input_ids'], f"Rejected response contains EOS token: {rejected}"
chosen_tokens['input_ids'].append(tokenizer.eos_token_id)
chosen_tokens['attention_mask'].append(1)
rejected_tokens['input_ids'].append(tokenizer.eos_token_id)
rejected_tokens['attention_mask'].append(1)
longer_response_length = max(len(chosen_tokens['input_ids']), len(rejected_tokens['input_ids']))
# if combined sequence is too long, truncate the prompt
if len(prompt_tokens['input_ids']) + longer_response_length > max_length:
if truncation_mode == 'keep_start':
prompt_tokens = {k: v[:max_prompt_length] for k, v in prompt_tokens.items()}
elif truncation_mode == 'keep_end':
prompt_tokens = {k: v[-max_prompt_length:] for k, v in prompt_tokens.items()}
else:
raise ValueError(f'Unknown truncation mode: {truncation_mode}')
# if that's still too long, truncate the response
if len(prompt_tokens['input_ids']) + longer_response_length > max_length:
chosen_tokens = {k: v[:max_length - max_prompt_length] for k, v in chosen_tokens.items()}
rejected_tokens = {k: v[:max_length - max_prompt_length] for k, v in rejected_tokens.items()}
# Create labels
chosen_sequence_tokens = {k: prompt_tokens[k] + chosen_tokens[k] for k in chosen_tokens}
rejected_sequence_tokens = {k: prompt_tokens[k] + rejected_tokens[k] for k in rejected_tokens}
chosen_sequence_tokens['labels'] = chosen_sequence_tokens['input_ids'][:]
chosen_sequence_tokens['labels'][:len(prompt_tokens['input_ids'])] = [-100] * len(prompt_tokens['input_ids'])
rejected_sequence_tokens['labels'] = rejected_sequence_tokens['input_ids'][:]
rejected_sequence_tokens['labels'][:len(prompt_tokens['input_ids'])] = [-100] * len(prompt_tokens['input_ids'])
batch = {}
batch['prompt'] = prompt
batch['chosen'] = prompt + chosen
batch['rejected'] = prompt + rejected
batch['chosen_response_only'] = chosen
batch['rejected_response_only'] = rejected
for k, toks in {'chosen': chosen_sequence_tokens, 'rejected': rejected_sequence_tokens, 'prompt': prompt_tokens}.items():
for type_key, tokens in toks.items():
if type_key == 'token_type_ids':
continue
batch[f'{k}_{type_key}'] = tokens
return batch
def get_batch_iterator(names: List[str],
tokenizer,
split: str = 'train',
batch_size: int = 1,
shuffle: bool = True,
max_length: int = 512,
max_prompt_length: int = 128,
sft_mode: bool = False,
n_epochs: Optional[int] = None,
n_examples: Optional[int] = None,
seed:int = 0,
silent: bool = False,
cache_dir: Optional[str] = None) -> Iterator[Dict]:
"""Get an iterator over batches of data. Stops after n_epochs or n_examples, whichever comes first.
Args:
names: Names of datasets to use.
tokenizer: Tokenizer to use.
split: Which split to use.
batch_size: Batch size.
shuffle: Whether to shuffle the data after each epoch.
max_length: Maximum length of the combined prompt + response.
max_prompt_length: Maximum length of the prompt.
sft_mode: Whether to use SFT mode (i.e., return sft_target instead of chosen/rejected). In sft mode, we just return chosen_input_ids, but they contain the sft_target.
n_epochs: Number of epochs to run for. This or n_examples must be specified.
n_examples: Number of examples to run for. This or n_epochs must be specified.
seed: Random seed.
silent: Whether to silence the progress bar(s).
cache_dir: Directory to cache the datasets in.
"""
assert n_epochs is not None or n_examples is not None, "Must specify either n_epochs or n_examples"
if silent:
datasets.logging.disable_progress_bar()
datasets.logging.set_verbosity_error()
with TemporarilySeededRandom(seed):
permutation_seeds = iter(np.random.randint(0, 2**32, size=1000000))
flat_data = []
for name in names:
truncation_mode = 'keep_end' if name == 'hh' else 'keep_start'
for prompt, data in get_dataset(name, split, silent=silent, cache_dir=cache_dir).items():
#if len(data['sft_target'])<5:
if '[' in data['sft_target'][-5:]:
print(prompt)
flat_data.extend([(prompt, data['responses'], data['pairs'], data['sft_target'], truncation_mode)]*50)
else:
flat_data.append((prompt, data['responses'], data['pairs'], data['sft_target'], truncation_mode))
collate_fn = get_collate_fn(tokenizer)
epoch_idx = 0
example_idx = 0
done = False
while True:
if n_epochs is not None and epoch_idx >= n_epochs:
if not silent:
print(f'Finished generating {n_epochs} epochs on {split} split')
break
if shuffle:
with TemporarilySeededRandom(next(permutation_seeds)):
random.shuffle(flat_data)
batch = []
for prompt, responses, pairs, sft_target, truncation_mode in flat_data:
if done:
break
if sft_mode:
batch_element = tokenize_batch_element(prompt, sft_target, sft_target, truncation_mode, tokenizer, max_length, max_prompt_length)
#print('batch_element before',batch_element)
batch_element = {k: v for k, v in batch_element.items() if 'rejected' not in k}
batch.append(batch_element)
example_idx += 1
if len(batch) == batch_size:
#print('batch',batch)
yield collate_fn(batch)
if n_examples is not None and example_idx >= n_examples:
if not silent:
print(f'Finished generating {n_examples} examples on {split} split')
done = True
batch = []
else:
for p in pairs:
if done:
break
batch_element = tokenize_batch_element(prompt, responses[p[0]], responses[p[1]], truncation_mode, tokenizer, max_length, max_prompt_length)
batch.append(batch_element)
example_idx += 1
if len(batch) == batch_size:
yield collate_fn(batch)
if n_examples is not None and example_idx >= n_examples:
if not silent:
print(f'FINISHED {n_examples} EXAMPLES on {split} split')
done = True
batch = []
if done:
break
epoch_idx += 1
# does same as above, but takes data as argument rather than fetching with function
def get_batch_iterator_dataset(dataset,
tokenizer,
split: str = 'train',
batch_size: int = 1,
shuffle: bool = False,
max_length: int = 512,
max_prompt_length: int = 128,
sft_mode: bool = False,
n_epochs: Optional[int] = None,
n_examples: Optional[int] = None,
seed:int = 0,
silent: bool = True,
cache_dir: Optional[str] = None) -> Iterator[Dict]:
assert n_epochs is not None or n_examples is not None, "Must specify either n_epochs or n_examples"
flat_data = []
truncation_mode = 'keep_start'
for prompt, data in dataset.items():
flat_data.append((prompt, data['responses'], data['pairs'], data['sft_target'], truncation_mode))
collate_fn = get_collate_fn(tokenizer)
epoch_idx = 0
example_idx = 0
done = False
while True:
if n_epochs is not None and epoch_idx >= n_epochs:
if not silent:
print(f'Finished generating {n_epochs} epochs on {split} split')
break
batch = []
for prompt, responses, pairs, sft_target, truncation_mode in flat_data:
if done:
break
if sft_mode:
batch_element = tokenize_batch_element(prompt, sft_target, sft_target, truncation_mode, tokenizer, max_length, max_prompt_length)
#print('batch_element before',batch_element)
batch_element = {k: v for k, v in batch_element.items() if 'rejected' not in k}
batch.append(batch_element)
example_idx += 1
if len(batch) == batch_size:
#print('batch',batch)
yield collate_fn(batch)
if n_examples is not None and example_idx >= n_examples:
if not silent:
print(f'Finished generating {n_examples} examples on {split} split')
done = True
batch = []
else:
for p in pairs:
if done:
break
batch_element = tokenize_batch_element(prompt, responses[p[0]], responses[p[1]], truncation_mode, tokenizer, max_length, max_prompt_length)
batch.append(batch_element)
example_idx += 1
if len(batch) == batch_size:
yield collate_fn(batch)
if n_examples is not None and example_idx >= n_examples:
if not silent:
print(f'FINISHED {n_examples} EXAMPLES on {split} split')
done = True
batch = []
if done:
break
epoch_idx += 1
def strings_match_up_to_spaces(str_a: str, str_b: str) -> bool:
"""Returns True if str_a and str_b match up to spaces, False otherwise."""
for idx in range(min(len(str_a), len(str_b)) - 2):
if str_a[idx] != str_b[idx]:
if str_a[idx] != ' ' and str_b[idx] != ' ':
return False
else:
if str_a[idx] == ' ':
str_a = str_a[:idx] + str_a[idx + 1:]
else:
str_b = str_b[:idx] + str_b[idx + 1:]
return True