File size: 14,412 Bytes
a550e38 |
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 |
from pathlib import Path
import json
import re
import string
from collections import Counter
from tqdm import tqdm
import evaluate
from args import parse_args
ROUGE_SCORER = evaluate.load("rouge")
PATTERN = re.compile(r'\b[A-D]\b')
def find_answer(s):
# task='longbook_choice_eng': works for '(A)' -> A
match = PATTERN.search(s)
if match is None:
return None # None is a signal of not find! NOTE
#print(s, match.group())
return match.group()
def normalize_answer(s: str) -> str:
"""Lower text and remove punctuation, articles and extra whitespace."""
def remove_articles(text):
return re.sub(r"\b(a|an|the)\b", " ", text)
def white_space_fix(text):
return " ".join(text.split())
def remove_punc(text):
exclude = set(string.punctuation)
return "".join(ch for ch in text if ch not in exclude)
def lower(text):
return text.lower()
return white_space_fix(remove_articles(remove_punc(lower(s))))
def normalize_zh_answer(s: str) -> str:
"""Chinese version. Lower text and remove punctuation, extra whitespace."""
def white_space_fix(text):
return "".join(text.split())
def remove_punc(text):
cn_punctuation = "!?。。"#$%&'()*+,-/:;<=>@[\]^_`{|}~⦅⦆「」、、〃》「」『』【】〔〕〖〗〘〙〚〛〜〝〞〟〰〾〿–—‘’‛“”„‟…‧﹏." # noqa
all_punctuation = set(string.punctuation + cn_punctuation)
return "".join(ch for ch in text if ch not in all_punctuation)
def lower(text):
return text.lower()
return white_space_fix(remove_punc(lower(s)))
def f1_score(prediction, ground_truth) -> tuple[float, float, float]:
common = Counter(prediction) & Counter(ground_truth)
num_same = sum(common.values())
if num_same == 0:
return 0, 0, 0
precision = 1.0 * num_same / len(prediction)
recall = 1.0 * num_same / len(ground_truth)
f1 = (2 * precision * recall) / (precision + recall)
return f1, precision, recall
def qa_f1_score(pred: str, ground_truths) -> float:
"""Computes the F1, recall, and precision."""
f1 = 0
prec = 0
recall = 0
for ground_truth in ground_truths: # NOTE this means ground_truths must be a list!!! not a pure str TODO
normalized_prediction = normalize_answer(pred)
normalized_ground_truth = normalize_answer(ground_truth)
prediction_tokens = normalized_prediction.split()
ground_truth_tokens = normalized_ground_truth.split()
scores = f1_score(prediction_tokens, ground_truth_tokens)
this_f1, this_prec, this_recall = scores
f1 = max(f1, this_f1)
prec = max(prec, this_prec)
recall = max(recall, this_recall)
return f1
def qa_f1_score_zh(pred: str, ground_truths: list[str]) -> float:
"""
QA F1 score for chinese.
"""
f1 = 0
prec = 0
recall = 0
for ground_truth in ground_truths:
norm_pred = normalize_zh_answer(pred)
norm_label = normalize_zh_answer(ground_truth)
# One character one token.
pred_tokens = list(norm_pred)
label_tokens = list(norm_label)
scores = f1_score(pred_tokens, label_tokens)
this_f1, this_prec, this_recall = scores
f1 = max(f1, this_f1)
prec = max(prec, this_prec)
recall = max(recall, this_recall)
return f1
def load_json(fname):
return json.load(open(fname))
def iter_jsonl(fname, cnt=None):
i = 0
with open(fname, "r", encoding="utf8") as fin:
for line in fin:
if line.strip() == "": # Skip empty lines
continue
if i == cnt:
break
if line.strip() == "": # Skip empty lines
continue
yield json.loads(line)
i += 1
def first_int_match(prediction):
pred_list = re.split("[^0-9]", prediction)
pred_value = ""
for item in pred_list:
if item != "":
pred_value = item
break
return pred_value
def split_retrieval_answer(pred: str):
for c in ["\n", ":", '"', "'", ".", ",", "?", "!", "{", "}"]:
pred = pred.replace(c, " ")
words = pred.split()
return words
def get_score_one_kv_retrieval(pred, label, model_name: str, args) -> bool:
for c in ['\n', ':', '\"', '\'', '.', ',', '?', '!', '{', '}']:
pred = pred.replace(c, ' ')
words = pred.split()
return label in words
def get_score_one_passkey(pred, label, model_name: str, args) -> bool:
if isinstance(label, list):
label = label[0]
return label == first_int_match(pred)
def get_score_one_number_string(pred, label, model_name: str, args) -> bool:
if isinstance(label, list):
label = label[0]
return label == first_int_match(pred)
def get_score_one_code_run(pred, label, model_name: str, args) -> bool:
"""
Returns the score of one example in Code.Run.
"""
if isinstance(label, list):
label = label[0]
pred = pred.strip()
for c in ["\n", ".", "`", "'", '"', ":"]:
pred = pred.replace(c, " ")
words = pred.split()
if len(words) == 0:
return False
try:
pred = int(words[-1])
return label == pred
except Exception:
return False
def get_score_one_code_debug(pred, label, model_name: str, args) -> bool:
"""
Returns the score of one example in Code.Debug.
"""
#import ipdb; ipdb.set_trace()
pred = pred.strip()
label_c = label[1]
fn_name = label[0]
if pred[:2] in [f"{label_c}.", f"{label_c}:"]:
return True
ans_prefixes = [
"answer is:",
# "answer is",
# "error is",
"is:",
"answer:",
"correct option is:"
]
pred = pred.strip()
for c in ["\n", "`", "'", '"', "-", "*", "Option", "option"]:
pred = pred.replace(c, " ")
while " " in pred:
pred = pred.replace(" ", " ")
for prefix in ans_prefixes:
idx = pred.find(prefix)
if idx == -1:
continue
# The prediction ends with this prefix
if len(pred) < idx + len(prefix) + 1:
return False
pred = pred[idx + len(prefix) + 1 :]
for s in [label_c, fn_name]:
if pred.startswith(s):
return True
return False
return False
def get_score_one_math_find(pred, label, model_name: str, args) -> bool:
if isinstance(label, list):
# In math_find, there is always only one label.
label = label[0]
if isinstance(label, int):
# Find first int or float
first_num = re.search(r"\d+\.\d+|\d+", pred)
if first_num is None:
return False
first_num = first_num.group(0).strip()
return int(first_num) == label
elif isinstance(label, float):
# Find first float or int
first_float = re.search(r"\d+\.\d+|\d+", pred)
if first_float is None:
return False
first_float = first_float.group(0).strip()
return float(first_float) == label
else:
raise TypeError(f"Expected int or float, got {type(label)}")
def get_score_one_longdialogue_qa_eng(pred, label, model_name: str, args) -> bool:
if 'STAMP PAID' in pred:
import ipdb; ipdb.set_trace()
label = label[0]
pred = pred.strip()
for c in ["\n", ":", '"', "'", ".", ",", "?", "!", "{", "}"]:
pred = pred.replace(c, " ")
words = pred.split()
words = [x.upper() for x in words]
return label in words
def get_score_one_longbook_choice_eng(pred, label, model_name: str, args) -> bool:
# Just use the first letter as the prediction
#import ipdb; ipdb.set_trace()
pred = pred.strip()
if pred == "":
return False
if pred[0] in "ABCD":
return pred[0] in label
if pred in label:
return True
# Find a answer prefix
for c in ["\n", '"', "'", ".", ",", "?", "!", "{", "}"]:
pred = pred.replace(c, " ")
while " " in pred:
pred = pred.replace(" ", " ")
ans_prefixes = [
"answer is:",
"answer:",
"answer is",
"option is",
]
for prefix in ans_prefixes:
idx = pred.find(prefix)
if idx == -1:
continue
# The prediction ends with this prefix
if len(pred) < idx + len(prefix) + 1:
return False
after_prefix = pred[idx + len(prefix) + 1 :]
for s in label:
if after_prefix.startswith(s):
return True
return False
# Finally, just find the first occurrence of A, B, C, or D.
words = pred.split()
for word in words:
if word in "ABCD":
return word in label
#import ipdb; ipdb.set_trace()
if args.use_zero_scrolls:
# NOTE use PATTERN as used in zero-scrolls for choice!!! added by xianchaowu
matched_pred = find_answer(pred)
if matched_pred is not None and matched_pred in label:
return True
return False
def get_score_one_longbook_qa_eng(pred, label, model_name: str, args) -> float:
return qa_f1_score(pred, label)
def get_score_one_longbook_sum_eng(
pred: str, label: str, model_name: str, args
) -> float:
score = ROUGE_SCORER.compute(
predictions=[pred], references=[label], use_aggregator=False
)
return score["rougeLsum"][0] # type: ignore
def get_score_one_longbook_qa_chn(pred, label, model_name: str, args) -> float:
return qa_f1_score_zh(pred, label)
def get_score_one_math_calc(pred, label, model_name: str, args) -> float:
assert isinstance(label, list), f"Expected list, got {type(label)}"
# assert isinstance(pred, list), f"Expected list, got {type(pred)}"
pred_nums = []
pred_list = re.split("[^0-9]", pred)
for item in pred_list:
if item != "":
pred_nums.append(int(item))
# Our prompts makes GPT4 always output the first number as the first value
# in the predicted answer.
if model_name == "gpt4":
pred_nums = pred_nums[1:]
cnt = 0
for i in range(len(label)):
if i >= len(pred_nums):
break
if label[i] == pred_nums[i]:
cnt += 1
else:
break
return cnt / len(label)
def get_score_one(
pred: str, label: str, task_name: str, model_name: str, args
) -> float:
"""
Computes the score for one prediction.
Returns one float (zero and one for boolean values).
"""
NAME_TO_SCORE_GETTER = {
# Retrieve
"kv_retrieval": get_score_one_kv_retrieval,
"kv_retrieval_prefix": get_score_one_kv_retrieval,
"kv_retrieval_both": get_score_one_kv_retrieval,
"passkey": get_score_one_passkey,
"number_string": get_score_one_number_string,
# Code
"code_run": get_score_one_code_run,
"code_debug": get_score_one_code_debug,
# Longbook
"longdialogue_qa_eng": get_score_one_longdialogue_qa_eng,
"longbook_qa_eng": get_score_one_longbook_qa_eng,
"longbook_sum_eng": get_score_one_longbook_sum_eng,
"longbook_choice_eng": get_score_one_longbook_choice_eng,
"longbook_qa_chn": get_score_one_longbook_qa_chn,
# Math
"math_find": get_score_one_math_find,
"math_calc": get_score_one_math_calc,
}
assert task_name in NAME_TO_SCORE_GETTER, f"Invalid task name: {task_name}"
score = NAME_TO_SCORE_GETTER[task_name](pred, label, model_name, args)
return float(score)
def get_labels(preds: list) -> list[str]:
possible_label_keys = ["ground_truth", "label"]
for label_key in possible_label_keys:
if label_key in preds[0]:
return [x.get(label_key, "XXXXXXXXXX") for x in preds]
raise ValueError(f"Cannot find label in {preds[0]}")
def get_preds(preds: list, data_name: str) -> list[str]:
pred_strings = []
possible_pred_keys = ["prediction", "pred"]
for pred in preds:
this_pred = "NO PREDICTION"
for pred_key in possible_pred_keys:
if pred_key in pred:
this_pred = pred[pred_key]
break
else:
raise ValueError(f"Cannot find prediction in {pred}")
pred_strings.append(this_pred)
return pred_strings
def get_score(
labels: list, preds: list, data_name: str, model_name: str, args
) -> float:
"""
Computes the average score for a task.
"""
assert len(labels) == len(preds)
scores = []
for label, pred in tqdm(zip(labels, preds)):
score = get_score_one(pred, label, data_name, model_name, args)
print('pred={}, label={}, score={}, data_name={}'.format(pred, label, score, data_name))
scores.append(score)
return sum(scores) / len(scores)
def compute_scores(preds_path, data_name: str, model_name: str, args):
print("Loading prediction results from", preds_path)
preds = list(iter_jsonl(preds_path))
#import ipdb; ipdb.set_trace()
labels = get_labels(preds)
preds = get_preds(preds, data_name)
acc = get_score(labels, preds, data_name, model_name, args)
print('final display: ', acc, preds_path, data_name, model_name, args.use_zero_scrolls)
ALL_TASKS = [
#"passkey",
#"number_string",
#"kv_retrieval",
#"longdialogue_qa_eng",
#"longbook_sum_eng",
"longbook_choice_eng",
"longbook_qa_eng",
#"longbook_qa_chn",
#"math_find",
#"math_calc",
#"code_run",
#"code_debug",
]
ALL_TASKS_ORIG = [
"passkey",
"number_string",
"kv_retrieval",
"longdialogue_qa_eng",
"longbook_sum_eng",
"longbook_choice_eng",
"longbook_qa_eng",
"longbook_qa_chn",
"math_find",
"math_calc",
"code_run",
"code_debug",
]
if __name__ == "__main__":
args = parse_args()
print(json.dumps(vars(args), indent=4))
if args.task == "all":
tasks = ALL_TASKS
else:
tasks = [args.task]
for task in tasks:
#result_dir = Path(args.output_dir, args.model_name)
#preds_path = result_dir / f"preds_{task}.jsonl"
preds_path = Path(args.pxout_ref_json)
assert preds_path.exists(), f"Predictions not found in: {preds_path}"
compute_scores(preds_path, task, args.model_name, args)
|