-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_llama_vllm_vanilla.py
253 lines (217 loc) · 9.31 KB
/
test_llama_vllm_vanilla.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
import argparse
import json
import torch
import logging
import sys
import regex as re
from pathlib import Path
sys.path.append(str(Path(__file__).parent.parent))
from vllm import LLM, SamplingParams
from typing import List
from string import Template
from mt_metrics_eval.stats import Correlation
MAX_INT = sys.maxsize
IGNORE_INDEX = -100
DEFAULT_PAD_TOKEN = "[PAD]"
DEFAULT_EOS_TOKEN = "</s>"
DEFAULT_BOS_TOKEN = "<s>"
DEFAULT_UNK_TOKEN = "<unk>"
PROMPT_DICT = {
"prompt_input": (
"Below is an instruction that describes a task, paired with an input that provides further context. "
"Write a response that appropriately completes the request.\n\n"
"### Instruction:\n{instruction}\n\n### Input:\n{input}\n\n### Response:"
),
"prompt_no_input": (
"Below is an instruction that describes a task. "
"Write a response that appropriately completes the request.\n\n"
"### Instruction:\n{instruction}\n\n### Response:"
),
}
# FINETUNE_INST = """"""
# FINETUNE_INPUT = """\
# ${generation_instruction}
# ${input_context}
# Model-generated Output:
# ${hypothesis_output}
# You should rate Model-generated Output on a scale from 0.5 (worst) to 10 (best).
# Rating: \
# """
FINETUNE_INST = """[INST] <<SYS>>\nYou are a helpful, respectful and honest assistant.\n<</SYS>>\n"""
FINETUNE_INPUT = """\
${generation_instruction}
${input_context}
Model-generated Output:
${hypothesis_output}
You should rate Model-generated Output on a scale from 0.5 (worst) to 10 (best). [/INST] Rating: \
"""
# FINETUNE_INPUT = """\
# USER:You are evaluating errors in a model-generated output for a(an) ${task} task.
# Task instruction: ${generation_instruction}
# Source: ${input_context}
# Model-generated Output: ${hypothesis_output}
# Based on the given task instruction and source, identify errors in this model-generated output.
# For each error you give in the response, please also elaborate the following information:
# - error location (the words that are wrong in the output)
# - error aspect it belongs to.
# - explanation why it's an error, and the correction suggestions.
# - severity of the error ("Major" or "Minor").
# - reduction of score (between 0.5 and 5 given the severity of the error)
# Please give a summary of the errors you found in the output, and the total score reduction.
# The model-generated output contains {num_errors} errors, with a total score reduction of {total_score_reduction}.
# Your evaluation output: ASSISTANT:\
# """
def find_first_float(s):
match = re.search(r"[-+]?\d*\.\d+|\d+", s)
return float(match.group()) if match else None
def get_sum_penalties(eval_output: dict):
"""
Args:
eval_output: dict, the json output of the eval function
Returns:
"""
try:
penalty_score = 0
for aspect in eval_output:
for penalty_point in eval_output[aspect]["penalty_points"]:
penalty_score += penalty_point["score_reduction"]
return - penalty_score
except Exception:
return None
def get_torch_dtype(dtype_str):
"""
Get the torch dtype from a string
"""
if dtype_str == "float32":
return torch.float32
elif dtype_str == "float16":
return torch.float16
elif dtype_str == "bfloat16":
return torch.bfloat16
elif dtype_str == "int8":
return torch.int8
else:
raise ValueError("Invalid dtype {}".format(dtype_str))
def batch_data(data_list, batch_size=1):
n = len(data_list) // batch_size
batch_data = []
for i in range(n - 1):
start = i * batch_size
end = (i + 1) * batch_size
batch_data.append(data_list[start:end])
last_start = (n - 1) * batch_size
last_end = MAX_INT
batch_data.append(data_list[last_start:last_end])
return batch_data
class MyCorrelation(Correlation):
def __init__(self, num_sys: int, gold_scores: List[int], metric_scores: List[int]):
# remove nan in metrics scores
none_metric_scores_idxs = [idx for idx,
x in enumerate(metric_scores) if x is None]
logging.info("Remove {} nan scores from {} scores".format(
len(none_metric_scores_idxs),
len(metric_scores)
))
gold_scores = gold_scores.copy()
# set gold scores to None if metric scores are None
for idx in none_metric_scores_idxs[::-1]:
gold_scores[idx] = None
super().__init__(num_sys, gold_scores, metric_scores)
def main(args):
if args.output_path is not None:
output_file = Path(args.output_path)
else:
output_file = Path(args.data_path).with_suffix(
'.xgptscore.output.json')
if not output_file.exists() or args.overwrite:
logging.info("Loading model...")
sampling_params = SamplingParams(
temperature=0, top_p=1, max_tokens=1024)
llm = LLM(model=args.model_name_or_path, tensor_parallel_size=1)
logging.info("Model loaded from {}".format(args.model_name_or_path))
eval_outputs = []
logging.info("Load input data from {}".format(args.data_path))
with open(args.data_path, "r") as f:
input_data = json.load(f)
formatted_data = []
for item in input_data:
for cand in item['candidates']:
inst = Template(FINETUNE_INST).substitute(task=args.task)
input_ = Template(FINETUNE_INPUT).substitute(
task=args.task,
generation_instruction=item['instruction'],
input_context=item['input'],
hypothesis_output=cand['text'],
)
formatted_data.append({
"instruction": inst,
"input": input_,
})
prompt_sources = [example['instruction'] + '\n' +
example['input'] for example in formatted_data]
prompt_sources = [x.strip(' \n') + "\n" for x in prompt_sources]
batch_prompts = batch_data(prompt_sources, batch_size=args.batch_size)
for idx, batch_prompt in enumerate(batch_prompts):
if isinstance(batch_prompt, list):
pass
else:
batch_prompt = [batch_prompt]
completions = llm.generate(batch_prompt, sampling_params)
for output in completions:
generated_text = output.outputs[0].text
eval_outputs.append(generated_text)
cand_idx = 0
for idx, (item, eval_output) in enumerate(zip(input_data, eval_outputs)):
for cand in item['candidates']:
cand['eval_output'] = eval_outputs[cand_idx]
score_reduction = find_first_float(eval_outputs[cand_idx])
if score_reduction is None:
cand['vanilla_xgptscore'] = -float(score_reduction)
else:
cand['vanilla_xgptscore'] = None
cand_idx += 1
with open(output_file, 'w') as f:
json.dump(input_data, f, indent=4, ensure_ascii=False)
logging.info("Saved eval results to {}".format(output_file))
else:
with open(output_file, 'r') as f:
input_data = json.load(f)
for ex in input_data:
for cand in ex['candidates']:
score_reduction = find_first_float(cand["eval_output"])
if score_reduction is None:
cand['vanilla_xgptscore'] = -float(score_reduction)
else:
cand['vanilla_xgptscore'] = None
with open(output_file, 'w') as f:
json.dump(input_data, f, indent=4, ensure_ascii=False)
logging.info("Loaded eval results from {}".format(output_file))
# Compute correlation
human_score_names = args.human_score_names.split(',')
for h_name in human_score_names:
human_scores = []
xgptscores = []
for item in input_data:
for cand in item['candidates']:
for s_name, score in cand['scores'].items():
if s_name == h_name:
xgptscores.append(cand['vanilla_xgptscore'])
human_scores.append(score)
break
corr = MyCorrelation(1, human_scores, xgptscores)
print("Human score: {}".format(h_name))
print("Pearson correlation: {}".format(corr.Pearson()))
print("Spearman correlation: {}".format(corr.Spearman()))
print("Kendall correlation: {}".format(corr.Kendall()))
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
parser = argparse.ArgumentParser()
parser.add_argument("--model_name_or_path", type=str, default=None)
parser.add_argument("--data_path", type=str, default=None)
parser.add_argument("--output_path", type=str, default=None)
parser.add_argument("--overwrite", action="store_true")
parser.add_argument("--task", type=str, default="summarization")
parser.add_argument("--batch_size", type=int, default=1)
parser.add_argument("--human_score_names", type=str, default="score")
args = parser.parse_args()
main(args)