-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_needle_in_haystack.py
535 lines (444 loc) · 25.2 KB
/
run_needle_in_haystack.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
"""
This script is adapted from
https://github.com/FranxYao/Long-Context-Data-Engineering
"""
import tiktoken
import os
import pdb
import glob
import jieba
import json
from transformers import AutoModelForCausalLM, AutoTokenizer
import numpy as np
import argparse
from rouge_score import rouge_scorer
import sys
import os
from datetime import datetime, timezone
import time
import torch
import random
scorer = rouge_scorer.RougeScorer(['rouge1', 'rougeL'], use_stemmer=True)
def set_seed(seed):
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
np.random.seed(seed)
random.seed(seed)
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.deterministic = True
torch.cuda.manual_seed_all(seed)
class LLMNeedleHaystackTester:
"""
This class is used to test the LLM Needle Haystack.
"""
def __init__(self,
needle="\nThe best thing to do in San Francisco is eat a sandwich and sit in Dolores Park on a sunny day.\n",# \n在旧金山做的最棒的是事是吃一个三明治以及在晴天坐在多洛雷斯公园里\n
haystack_dir="data/PaulGrahamEssays", # PaulGrahamEssays
retrieval_question="The best thing to do in San Francisco is: ",
results_version = 1,
context_lengths_min = None,
context_lengths_max = None,
context_lengths_num_intervals = 40,
context_lengths = None,
document_depth_percent_min = 0,
document_depth_percent_max = 100,
document_depth_percent_intervals = 10,
document_depth_percents = None,
document_depth_percent_interval_type = "linear",
model_provider = "OpenAI",
model_path='',
model_name_suffix=None,
model_version=None,
num_concurrent_requests = 1,
save_results = True,
save_contexts = True,
final_context_length_buffer = 200,
seconds_to_sleep_between_completions = None,
print_ongoing_status = True,
step=100,
method='pyramidkv',
attn_implementation='flash_attention_2',
max_capacity_prompts=128):
"""
:param needle: The needle to be found in the haystack. Default is None.
:param haystack_dir: The directory of text files to use as background context (or a haystack) in which the needle is to be found. Default is Paul Graham Essays.
:param retrieval_question: The question which with to prompt the model to do the retrieval.
:param results_version: In case you would like to try the same combination of model, context length, and depth % multiple times, change the results version other than 1
:param num_concurrent_requests: Due to volume, this object is set up to run concurrent requests, default = 1. Be careful of rate limits.
:param save_results: Whether or not you would like to save your contexts to file. Warning: These will get long! Default = True
:param save_contexts: Whether or not you would like to save your contexts to file. Warning: These will get long! Default is True.
:param final_context_length_buffer: The amount of cushion you'd like to leave off the input context to allow for the output context. Default 200 tokens
:param context_lengths_min: The minimum length of the context. Default is 0.
:param context_lengths_max: The maximum length of the context. Default is 200000.
:param context_lengths_num_intervals: The number of intervals for the context length. Default is 35.
:param context_lengths: The lengths of the context. Default is None.
:param document_depth_percent_min: The minimum depth percent of the document. Default is 0.
:param document_depth_percent_max: The maximum depth percent of the document. Default is 100.
:param document_depth_percent_intervals: The number of intervals for the document depth percent. Default is 35.
:param document_depth_percents: The depth percentages of the document. Default is None.
:param document_depth_percent_interval_type: The type of interval for the document depth percent. Must be either 'linear' or 'sigmoid'. Default is 'linear'.
:param openai_api_key: The API key for OpenAI. Default is None.
:param model_path: The name of the model. Default is 'gpt-4-1106-preview'.
:param seconds_to_sleep_between_completions: The number of seconds to sleep between completions. Default is None.
:param print_ongoing_status: Whether or not to print the ongoing status. Default is True.
"""
if not needle or not haystack_dir or not retrieval_question:
raise ValueError("Needle, haystack, and retrieval_question must be provided.")
self.needle = needle
self.haystack_dir = haystack_dir
self.retrieval_question = retrieval_question
self.results_version = results_version
self.num_concurrent_requests = num_concurrent_requests
self.save_results = save_results
self.final_context_length_buffer = final_context_length_buffer
self.save_contexts = save_contexts
self.seconds_to_sleep_between_completions = seconds_to_sleep_between_completions
self.print_ongoing_status = print_ongoing_status
self.model_provider = model_provider
self.testing_results = []
self.step = step
self.method = method
self.max_capacity_prompts = max_capacity_prompts
self.attn_implementation = attn_implementation
self.model_version = model_version
if(model_name_suffix is not None): self.model_version += "_" + model_name_suffix
if context_lengths is None:
if context_lengths_min is None or context_lengths_max is None or context_lengths_num_intervals is None:
raise ValueError("Either context_lengths_min, context_lengths_max, context_lengths_intervals need to be filled out OR the context_lengths_list needs to be supplied.")
else:
# self.context_lengths = np.round(np.linspace(context_lengths_min, context_lengths_max, num=context_lengths_num_intervals, endpoint=True)).astype(int)
self.context_lengths = np.arange(context_lengths_min, context_lengths_max+1, step=self.step)
else:
self.context_lengths = context_lengths
if document_depth_percents is None:
if document_depth_percent_min is None or document_depth_percent_max is None or document_depth_percent_intervals is None:
raise ValueError("Either document_depth_percent_min, document_depth_percent_max, document_depth_percent_intervals need to be filled out OR the document_depth_percents needs to be supplied.")
else:
if document_depth_percent_interval_type == 'linear':
self.document_depth_percents = np.round(np.linspace(document_depth_percent_min, document_depth_percent_max, num=document_depth_percent_intervals, endpoint=True)).astype(int)
elif document_depth_percent_interval_type == 'sigmoid':
self.document_depth_percents = [self.logistic(x) for x in np.linspace(document_depth_percent_min, document_depth_percent_max, document_depth_percent_intervals)]
else:
self.document_depth_percents = document_depth_percents
if document_depth_percent_interval_type not in [None, "linear", "sigmoid"]:
raise ValueError("document_depth_percent_interval_type must be either None, 'linear' or 'sigmoid'. If you'd like your own distribution give a list of ints in via document_depth_percent_intervals")
self.model_path = model_path
# if(self.model_provider in ["LLaMA3", "Mistral"]):
if args.model_path == 'mistralai/Mistral-7B-Instruct-v0.2':
self.enc = AutoTokenizer.from_pretrained(
args.model_path,
use_fast=args.use_fast_tokenizer,
padding_side="left",
revision='dca6e4b60aca009ed25ffa70c9bb65e46960a573'
)
else:
self.enc = AutoTokenizer.from_pretrained(
args.model_path,
use_fast=args.use_fast_tokenizer,
padding_side="left"
)
# self.enc.add_special_tokens({'pad_token': '[PAD]'})
print("loading from %s" % model_path)
self.enc.padding_side = "left"
if self.enc.pad_token is None:
self.enc.pad_token = self.enc.eos_token
self.enc.pad_token_id = self.enc.eos_token_id
# if torch.cuda.device_count()>1:
if args.method.lower() != 'fullkv':
from headkv.monkeypatch import replace_llama, replace_mistral
replace_llama(args.method)
replace_mistral(args.method)
self.model = AutoModelForCausalLM.from_pretrained(
args.model_path,
torch_dtype=torch.float16,
low_cpu_mem_usage=True,
device_map="auto",
use_cache=args.use_cache,
attn_implementation=args.attn_implementation
).eval()
self.model.model.config.window_size = 8
self.model.model.config.base_capacity = args.max_capacity_prompts
self.model.model.config.aug_capacity = args.aug_capacity
self.model.model.config.head_choice = args.head_choice
self.model.model.config.top_num = args.top_num
self.model.model.config.beta = args.beta
self.model.model.config.temp = args.temp
self.model.model.config.alpha = args.alpha
self.model.model.config.kernel_size = 7
self.model.model.config.skip = 0
self.model.model.config.normalize = True
self.model.model.config.pooling = "maxpool"
self.model.model.config.floor = 0.2
# else:raise ValueError("model_provider must be either 'LLaMA3' or 'Mistral'")
def logistic(self, x, L=100, x0=50, k=.1):
if x == 0:
return 0
if x == 100:
return 100
return np.round(L / (1 + np.exp(-k * (x - x0))), 3)
def bound_evaluate_and_log(self, *args):
self.evaluate_and_log(*args)
def run_test(self, args):
# Run through each iteration of context_lengths and depths
tasks = []
for context_length in self.context_lengths:
if context_length < args.s_len or context_length > args.e_len: continue
for depth_percent in self.document_depth_percents:
print(f"depth_percent {depth_percent}")
task = self.bound_evaluate_and_log(context_length, depth_percent)
def generate_prompt(self, context):
# Generate the prompt for the Anthropic model
# Replace the following line with the appropriate prompt structure
if(self.model_provider not in ["OpenAI", "Anthropic"]):
test_format=f"<|im_start|> This is a very long story book: <book> {context} </book>.\n Based on the content of the book, Question: {self.retrieval_question}\nAnswer:"
return test_format
else:
return [
{
"role": "system",
"content": "You are a helpful AI bot that answers questions for a user. Keep your response short and direct"
},
{
"role": "user",
"content": context
},
{
"role": "user",
"content": f"{self.retrieval_question} Don't give information outside the document or repeat your findings. The document definitely contains the answer, and I'm 100% sure. So try your best to find it."
},
{
"role": "assistant",
"content":"",
},
]
def evaluate_and_log(self, context_length, depth_percent):
# Checks to see if you've already checked a length/percent/version.
# This helps if the program stop running and you want to restart later
if self.save_results:
if self.result_exists(context_length, depth_percent):
print("result exists, skipping")
return
else:
print("result does not exist, testing")
# Go generate the required length context and place your needle statement in
context = self.generate_context(context_length, depth_percent)
# Prepare your message to send to the model you're going to evaluate
prompt = self.generate_prompt(context)
test_start_time = time.time()
# if(self.model_provider in ["LLaMA3", "Mistral"]):
prompt = self.enc(prompt, return_tensors="pt")
input_ids = prompt['input_ids'].to(self.model.device)
output_ids = self.model.generate(
input_ids,
output_attentions=False,
max_new_tokens=30,
num_beams=1,
do_sample=False,
temperature=1.0,
eos_token_id=[self.enc.eos_token_id, self.enc.encode("\n", add_special_tokens=False)[-1]]
)
response = self.enc.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True).strip()
print(response)
test_end_time = time.time()
test_elapsed_time = test_end_time - test_start_time
if len(response) != 0:
score = scorer.score(self.needle, response)['rouge1'].fmeasure*10
else:
score = 0.0
results = {
'model' : self.model_path,
'context_length' : int(context_length),
'depth_percent' : float(depth_percent),
'version' : self.results_version,
'needle' : self.needle,
'model_response' : response,
'score' : score,
'test_duration_seconds' : test_elapsed_time,
'test_timestamp_utc' : datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S%z'),
}
self.testing_results.append(results)
if self.print_ongoing_status:
print (f"-- Test Summary -- ")
print (f"Duration: {test_elapsed_time:.1f} seconds")
print (f"Context: {context_length} tokens")
print (f"Depth: {depth_percent}%")
print (f"Score: {score}")
print (f"Response: {response}\n")
context_file_location = f'{self.model_version.replace(".", "_")}_len_{context_length}_depth_{int(depth_percent*100)}'
if self.save_contexts:
results['file_name'] : context_file_location
# Save the context to file for retesting
if not os.path.exists(f'{args.save_dir}/contexts'):
os.makedirs(f'{args.save_dir}/contexts')
# if not os.path.exists(f'{args.save_dir}/contexts/{self.model_version}'):
# os.makedirs(f'{args.save_dir}/contexts/{self.model_version}')
with open(f'{args.save_dir}/contexts/{context_file_location}_context.txt', 'w') as f:
f.write(context)
if self.save_results:
# Save the context to file for retesting
if not os.path.exists(f'{args.save_dir}/results'):
os.makedirs(f'{args.save_dir}/results')
# if not os.path.exists(f'{args.save_dir}/results/{self.model_version}'):
# os.makedirs(f'{args.save_dir}/results/{self.model_version}')
# Save the result to file for retesting
p = f'{args.save_dir}/results/{context_file_location}_results.json'
print("Writing at %s" % p)
with open(p, 'w') as f:
json.dump(results, f, ensure_ascii=False)
def result_exists(self, context_length, depth_percent):
"""
Checks to see if a result has already been evaluated or not
"""
results_dir = '{args.save_dir}/results/'
print("Searching existing results at %s" % results_dir)
if not os.path.exists(results_dir):
return False
for filename in os.listdir(results_dir):
if filename.endswith('.json'):
with open(os.path.join(results_dir, filename), 'r') as f:
result = json.load(f)
context_length_met = result['context_length'] == context_length
depth_percent_met = result['depth_percent'] == depth_percent
version_met = result.get('version', 1) == self.results_version
model_met = result['model'] == self.model_path
# import ipdb; ipdb.set_trace()
if context_length_met and depth_percent_met and version_met and model_met:
return True
return False
def generate_context(self, context_length, depth_percent):
# Load up tiktoken so we navigate tokens more easily
# Get your Paul Graham files loaded into a string
context = self.read_context_files()
# Truncate the Paul Graham essays to the context length you desire
context = self.encode_and_trim(context, context_length)
# Insert your random statement according to your depth percent
context = self.insert_needle(context, depth_percent, context_length)
return context
def encode_text_to_tokens(self, text):
if self.model_provider in ["Mistral", "LLaMA3"]:
return self.enc.encode(text)
elif self.model_provider == "Anthropic":
# Assuming you have a different encoder for Anthropic
return self.enc.encode(text).ids
else:
return self.enc.encode(text)
raise ValueError("model_provider must be either 'OpenAI' or 'Anthropic'")
def insert_needle(self, context, depth_percent, context_length):
tokens_needle = self.encode_text_to_tokens(self.needle)
tokens_context = self.encode_text_to_tokens(context)
# Reducing the context length by 150 buffer. This is to account for system message, the user question, and response.
context_length -= self.final_context_length_buffer
# If your context + needle are longer than the context length (which it will be), then reduce tokens from the context by the needle length
if len(tokens_context) + len(tokens_needle) > context_length:
tokens_context = tokens_context[:context_length - len(tokens_needle)]
if depth_percent == 100:
# If your depth percent is 100 (which means your needle is the last thing in the doc), throw it at the end
tokens_new_context = tokens_context + tokens_needle
else:
# Go get the position (in terms of tokens) to insert your needle
insertion_point = int(len(tokens_context) * (depth_percent / 100))
# tokens_new_context represents the tokens before the needle
tokens_new_context = tokens_context[:insertion_point]
# We want to make sure that we place our needle at a sentence break so we first see what token a '.' is
if(self.model_provider in ["LLaMA", "LongLLaMA"]): period_tokens = [29889, 869]
elif(self.model_provider == "LLaMA3"): period_tokens = [13]
elif(self.model_provider == "Mistral"): period_tokens = [842, 28723]
elif(self.model_provider == "GLM"): period_tokens = [918, 30930]
else: period_tokens = self.encode_text_to_tokens('.')
# Then we iteration backwards until we find the first period
while tokens_new_context and tokens_new_context[-1] not in period_tokens:
insertion_point -= 1
tokens_new_context = tokens_context[:insertion_point]
print("insertion at %d" % insertion_point)
# Once we get there, then add in your needle, and stick the rest of your context in on the other end.
# Now we have a needle in a haystack
tokens_new_context += tokens_needle + tokens_context[insertion_point:]
# Convert back to a string and return it
new_context = self.decode_tokens(tokens_new_context)
return new_context
def get_context_length_in_tokens(self, context):
if self.model_provider in ["Mistral", "LLaMA3"]:
return len(self.enc.encode(context))
else:
return len(self.enc.encode(context))
raise ValueError("model_provider must be either 'OpenAI' or 'Anthropic'")
def read_context_files(self):
context = ""
max_context_length = max(self.context_lengths)
while self.get_context_length_in_tokens(context) < max_context_length:
for file in glob.glob(f"{self.haystack_dir}/*.txt"):
with open(file, 'r') as f:
context += f.read()
return context
def get_tokens_from_context(self, context):
if self.model_provider in ["Mistral", "LLaMA3"]:
return self.enc.encode(context)
else:
return self.enc.encode(context)
# raise ValueError("model_provider must be either 'OpenAI' or 'Anthropic'")
def decode_tokens(self, tokens, context_length=None):
if self.model_provider in ["Mistral", "LLaMA3"]:
return self.enc.decode(tokens[:context_length])
else:
return self.enc.decode(tokens[:context_length])
# raise ValueError("model_provider must be either 'OpenAI' or 'Anthropic'")
def encode_and_trim(self, context, context_length):
tokens = self.get_tokens_from_context(context)
if len(tokens) > context_length:
context = self.decode_tokens(tokens, context_length)
return context
def get_results(self):
return self.testing_results
def print_start_test_summary(self):
print ("\n")
print ("Starting Needle In A Haystack Testing...")
print (f"- Model: {self.model_path}")
print (f"- Context Lengths: {len(self.context_lengths)}, Min: {min(self.context_lengths)}, Max: {max(self.context_lengths)}")
print (f"- Document Depths: {len(self.document_depth_percents)}, Min: {min(self.document_depth_percents)}%, Max: {max(self.document_depth_percents)}%")
print (f"- Needle: {self.needle.strip()}")
print ("\n\n")
def start_test(self, args):
if self.print_ongoing_status:
self.print_start_test_summary()
#asyncio.run(self.run_test())
self.run_test(args)
if __name__ == "__main__":
# Tons of defaults set, check out the LLMNeedleHaystackTester's init for more info
parser = argparse.ArgumentParser()
parser.add_argument('-s', '--s_len', metavar='N', type=int, help='a number')
parser.add_argument('-e', '--e_len', metavar='N', type=int, help='a number')
parser.add_argument('--model_path', type=str, default=None, help='name of model')
parser.add_argument("--use_fast_tokenizer", type=bool, default=True, help="")
parser.add_argument("--attn_implementation", type=str, default="flash_attention_2", choices=["flash_attention_2", "sdpa", "None"])
parser.add_argument('--model_version', type=str, default=None, help='provider of model')
parser.add_argument('--model_name_suffix', type=str, default=None, help='name of model')
parser.add_argument('--model_provider', type=str, default="LLaMA", help='which model to use')
parser.add_argument('--api_key', type=str, default="", help='OpenAI API Key')
parser.add_argument('--step', type=int, default=1000)
parser.add_argument('--max_capacity_prompts', type=int, default=128)
parser.add_argument('--method', type=str, default=None, help='method')
parser.add_argument('--save_dir', type=str, default=None, help='method')
parser.add_argument('--use_cache', type=bool, default=True)
parser.add_argument('--seed', type=int, default=42)
parser.add_argument("--aug_capacity", type=int, default=-1, help='-1 means use the full kv cache')
parser.add_argument("--head_choice", type=str, default='random', choices=['random', 'copy', 'musique', 'reason', 'mix', 'mix_top3', 'musique_top3', 'merge', 'final', 'final_reason_top3', 'final_copy'])
parser.add_argument("--top_num", type=int, default=10)
parser.add_argument('--beta', type=float, default=1.5)
parser.add_argument('--temp', type=float, default=1.0)
parser.add_argument('--alpha', type=float, default=0.56, help='should be [0, 1]. 1-- total copy.')
args = parser.parse_args()
set_seed(args.seed)
ht = LLMNeedleHaystackTester(model_path=args.model_path,
model_name_suffix=args.model_name_suffix,
model_provider=args.model_provider,
model_version=args.model_version,
context_lengths_min=args.s_len,
save_contexts=False,
save_results=False,
context_lengths_max=args.e_len,
step=args.step,
method=args.method,
max_capacity_prompts=args.max_capacity_prompts,
attn_implementation=args.attn_implementation
)
ht.start_test(args)