-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy patheval_api.py
More file actions
213 lines (172 loc) · 8.42 KB
/
eval_api.py
File metadata and controls
213 lines (172 loc) · 8.42 KB
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
import os
from transformers import set_seed
from collections import defaultdict
import json
import time
from tqdm import tqdm
import numpy as np
import torch
from torch.utils.data import DataLoader
from arguments import parse_arguments
from vlm_model import load_LLM
from data import (
load_data,
TestItemDataset,
)
import logging
logging.basicConfig(format='%(asctime)s - %(levelname)s - %(name)s - %(message)s',
datefmt='%m/%d/%Y %H:%M:%S')
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
def run_test(args, model, dataset, test_file):
logger.info(f"running test on {dataset} with test {test_file}")
test_name = os.path.splitext(os.path.basename(test_file))[0]
output_path = os.path.join(args.output_dir, f"{dataset}_{test_name}_in{args.input_max_length}_size{args.max_test_samples}_samp{args.do_sample}max{args.generation_max_length}min{args.generation_min_length}t{args.temperature}p{args.top_p}_chat{args.use_chat_template}_{args.seed}.json")
print("output path:", output_path)
if os.path.exists(output_path) and not args.overwrite and not args.debug:
logger.info(f"{output_path} already exists, skipping...")
return output_path
set_seed(args.seed)
data = load_data(args, dataset, test_file)
if args.dry_run:
logger.info(f"Dry run mode, loaded {len(data['data'])} samples from {dataset}")
return None
else:
logger.info(f"loaded {len(data['data'])} samples from {dataset}")
dataloader = DataLoader(
TestItemDataset(data, model, model.processor),
batch_size=1,
shuffle=False,
collate_fn=lambda x: x,
num_workers=args.num_workers if not args.debug else 0,
)
assert hasattr(model, "api_model") and model.api_model, "Wrong model type, not api models"
cache_path = output_path + ".cache"
if os.path.exists(cache_path):
with open(cache_path) as fin:
results = [json.loads(line) for line in fin.readlines()]
else:
results = []
if args.overwrite:
fout = open(cache_path, "w")
else:
fout = open(cache_path, "a")
# recover metrics
metrics = defaultdict(list)
if results:
tmp_mets, _ = data['post_process'](results[0], data["data"][0])
for k, v in tmp_mets.items():
metrics[k] = [r[k] for r in results if r["parsed_output"] != ""]
metrics["input_len"] = [r["input_len"] for r in results if r["parsed_output"] != ""]
metrics["output_len"] = [r["output_len"] for r in results if r["parsed_output"] != ""]
start_time = time.time()
for idx, inputs in enumerate(tqdm(dataloader)):
if idx < len(results):
continue
test_item = data["data"][idx]
inputs, input_text = inputs[0] # batch size is just 1
if args.count_tokens:
metrics["input_len"].append(inputs.input_ids.shape[1])
continue
output = model.generate(inputs=inputs)
# If we do not use the chat template, then we are doing completion, and for the sake of parsing, we want to prepend the system prompt to the output.
# For example, since we are autocompleting "Answer:"" in the input, then we should prepend the system prompt to the output as well.
# This requires some coordination from the dataset preprocessing
prepend_text = data["system_template"].format(**test_item)
output["output"] = prepend_text + output["output"]
mets, others = data['post_process'](output, test_item)
output.update({**others, **mets})
if output["parsed_output"] != "":
for k, v in mets.items():
metrics[k].append(v)
metrics["input_len"].append(output["input_len"])
metrics["output_len"].append(output["output_len"])
else:
logger.info(f"skipping example {idx + 1} because the model returned empty string")
result = {**test_item, **output}
result.pop("context", None)
result.pop("input_ids", None)
if input_text is None:
input_text = result['input_text']
results.append(result)
fout.write(json.dumps(result) + "\n")
fout.flush() # write immediately
# print out some examples, we also limit how much we print out since it can get really long
if idx < 2 or args.debug:
logger.info(f"Example {idx+1}: ")
logger.info(f"Decoder inputs:\n{input_text}\n")
logger.info(f"Input length: {output['input_len']}")
# currently we hardcode somethings to print out, but you may change these to print out other things
logger.info(f"Question: {test_item['question'] if 'question' in test_item else ''}")
logger.info(f"Answer: {test_item['answer'] if 'answer' in test_item else ''}")
logger.info(f"Output: {output['output']}")
logger.info(f"Parsed output: {output['parsed_output']}")
if args.debug:
import pdb; pdb.set_trace()
output = None
end_time = time.time()
fout.close()
mem_usage = sum([torch.cuda.max_memory_allocated(i) for i in range(torch.cuda.device_count())])
logger.info(f"Memory usage: {mem_usage/1000**3:.02f} GB")
logger.info(f"Throughput: {len(results) / (end_time - start_time):.02f} samples/s")
if args.count_tokens:
logger.info(f"----{dataset}----\nAverage input length: {np.mean(metrics['input_len']):.02f}, std input length: {np.std(metrics['input_len']):.02f}, max input length: {max(metrics['input_len'])}, min input length: {min(metrics['input_len'])}\n----returning----")
return output_path
if len(results) == 0:
logger.error("No results to evaluate, something went wrong, returning...")
return output_path
averaged_metrics = {k: np.mean(v)*(100 if "_len" not in k else 1) for k, v in metrics.items()}
logger.info("Averaged metrics:")
for k, v in averaged_metrics.items():
logger.info(f"{k}: {v:.02f}")
# for k, v in metrics.items():
# assert len(results) == len(v) and len(v) == len(data["data"]), f"Wrong metrics {k} collections"
output = {
"args": args.__dict__,
"data": [r for r in results if r["parsed_output"] != ""],
"metrics": metrics,
"averaged_metrics": averaged_metrics,
"memory_usage": mem_usage,
"throughput": len(results) / (end_time - start_time),
}
if args.output_dir is not None:
with open(output_path, "w") as f:
json.dump(output, f, indent=4)
with open(output_path + ".score", "w") as f:
json.dump(output["averaged_metrics"], f, indent=4)
logger.info(f"done, results are written to {output_path}")
return output_path
def main():
args = parse_arguments()
logger.info(f"Arguments: {args}")
assert args.model_name_or_path is not None
os.makedirs(args.output_dir, exist_ok=True)
if not args.do_sample:
if args.temperature != 0.0:
logger.warning("do_sample is set to false but temperature is not 0, do_sample will overwrite temperature")
model = load_LLM(args)
datasets = args.datasets.split(",")
test_files = args.test_files.split(",")
max_lengths = ([int(args.input_max_length)] * len(datasets)) if isinstance(args.input_max_length, int) or len(args.input_max_length.split(",")) == 1 else [int(l) for l in args.input_max_length.split(",")]
gen_lengths = ([int(args.generation_max_length)] * len(datasets)) if isinstance(args.generation_max_length, int) or len(args.generation_max_length.split(",")) == 1 else [int(l) for l in args.generation_max_length.split(",")]
assert len(test_files) == len(max_lengths)
test_length_list = [int(l) * 1024 for l in args.test_length.split(",")]
for dataset, test_file, max_length, gen_length in zip(datasets, test_files, max_lengths, gen_lengths):
if max_length not in test_length_list:
continue
args.datasets = dataset
args.test_files = test_file
args.input_max_length = max_length
args.generation_max_length = gen_length
model.max_length = max_length
model.generation_max_length = gen_length
try:
run_test(args, model, dataset, test_file)
except Exception as e:
# in case we run into some kind of error
logger.exception(e)
logger.error(f"Error in {dataset}, continuing...")
if args.debug:
raise e
if __name__ == "__main__":
main()