-
Notifications
You must be signed in to change notification settings - Fork 35
/
eval_replit_instruct.py
69 lines (58 loc) · 1.86 KB
/
eval_replit_instruct.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
from transformers import (
AutoTokenizer,
AutoModelForCausalLM,
PreTrainedTokenizer,
PreTrainedModel,
)
from core import run_eval, instruct_prompt
import os
import torch
# TODO: move to python-dotenv
# add hugging face access token here
TOKEN = ""
@torch.inference_mode()
def generate_batch_completion(
model: PreTrainedModel, tokenizer: PreTrainedTokenizer, prompt: str, batch_size: int
) -> list[str]:
prompt_input = instruct_prompt(prompt)
input_batch = [prompt_input for _ in range(batch_size)]
inputs = tokenizer(input_batch, return_tensors="pt").to(model.device)
input_ids_cutoff = inputs.input_ids.size(dim=1)
generated_ids = model.generate(
**inputs,
use_cache=True,
max_new_tokens=512,
temperature=0.2,
top_p=0.95,
do_sample=True,
eos_token_id=tokenizer.eos_token_id,
pad_token_id=tokenizer.pad_token_id,
)
batch_completions = tokenizer.batch_decode(
[ids[input_ids_cutoff:] for ids in generated_ids],
skip_special_tokens=True,
clean_up_tokenization_spaces=False,
)
return batch_completions
if __name__ == "__main__":
# adjust for n = 10 etc
num_samples_per_task = 10
out_path = "results/replit_instruct/eval.jsonl"
os.makedirs("results/replit_instruct", exist_ok=True)
tokenizer = AutoTokenizer.from_pretrained(
"teknium/Replit-v1-CodeInstruct-3B",
trust_remote_code=True,
use_auth_token=TOKEN,
)
model = torch.compile(
AutoModelForCausalLM.from_pretrained(
"teknium/Replit-v1-CodeInstruct-3B",
torch_dtype=torch.bfloat16,
trust_remote_code=True,
use_auth_token=TOKEN,
init_device="cuda",
).eval()
)
run_eval(
model, tokenizer, num_samples_per_task, out_path, generate_batch_completion
)