-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath_parser.py
More file actions
545 lines (463 loc) · 17.6 KB
/
math_parser.py
File metadata and controls
545 lines (463 loc) · 17.6 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
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
536
537
538
539
540
541
542
543
544
545
"""
The logic in this file largely borrows from Qwen2.5-Math codebase at https://github.com/QwenLM/Qwen2.5-Math:
"""
# flake8: noqa
import re
import regex
from latex2sympy2_extended import latex2sympy
from math import isclose
from sympy import N, simplify
from sympy.parsing.latex import parse_latex
from sympy.parsing.sympy_parser import parse_expr
from word2number import w2n
def convert_word_number(text: str) -> str:
try:
text = str(w2n.word_to_num(text))
except Exception:
pass
return text
def _fix_fracs(string):
substrs = string.split('\\frac')
new_str = substrs[0]
if len(substrs) > 1:
substrs = substrs[1:]
for substr in substrs:
new_str += '\\frac'
if len(substr) > 0 and substr[0] == '{':
new_str += substr
else:
try:
assert len(substr) >= 2
except Exception:
return string
a = substr[0]
b = substr[1]
if b != '{':
if len(substr) > 2:
post_substr = substr[2:]
new_str += '{' + a + '}{' + b + '}' + post_substr
else:
new_str += '{' + a + '}{' + b + '}'
else:
if len(substr) > 2:
post_substr = substr[2:]
new_str += '{' + a + '}' + b + post_substr
else:
new_str += '{' + a + '}' + b
string = new_str
return string
def _fix_a_slash_b(string):
if len(string.split('/')) != 2:
return string
a = string.split('/')[0]
b = string.split('/')[1]
try:
if 'sqrt' not in a:
a = int(a)
if 'sqrt' not in b:
b = int(b)
assert string == '{}/{}'.format(a, b)
new_string = '\\frac{' + str(a) + '}{' + str(b) + '}'
return new_string
except Exception:
return string
def _fix_sqrt(string):
_string = re.sub(r'\\sqrt(\w+)', r'\\sqrt{\1}', string)
return _string
def strip_answer_string(string):
string = str(string).strip()
# linebreaks
string = string.replace('\n', '')
# right "."
string = string.rstrip('.')
# remove inverse spaces
# replace \\ with \
string = string.replace('\\!', '')
# string = string.replace("\\ ", "")
# string = string.replace("\\\\", "\\")
# matrix
string = re.sub(r'\\begin\{array\}\{.*?\}', r'\\begin{pmatrix}', string)
string = re.sub(r'\\end\{array\}', r'\\end{pmatrix}', string)
string = string.replace('bmatrix', 'pmatrix')
# replace tfrac and dfrac with frac
string = string.replace('tfrac', 'frac')
string = string.replace('dfrac', 'frac')
string = (string.replace('\\neq', '\\ne').replace('\\leq', '\\le').replace('\\geq', '\\ge'))
# remove \left and \right
string = string.replace('\\left', '')
string = string.replace('\\right', '')
string = string.replace('\\{', '{')
string = string.replace('\\}', '}')
# Function to replace number words with corresponding digits
def replace_match(match):
word = match.group(1).lower()
if convert_word_number(word) == word:
return match.group(0)
else:
return convert_word_number(word)
string = re.sub(r'\\text\{([a-zA-Z]+)\}', replace_match, string)
# Before removing unit, check if the unit is squared (for surface area)
string = re.sub(r'(cm|inches)\}\^2', r'\1}', string)
# Remove unit: miles, dollars if after is not none
_string = re.sub(r'\\text{.*?}$', '', string).strip()
if _string != '' and _string != string:
# print("Warning: unit not removed: '{}' -> '{}'".format(string, _string))
string = _string
# Remove circ (degrees)
string = string.replace('^{\\circ}', '')
string = string.replace('^\\circ', '')
# remove dollar signs
string = string.replace('\\$', '')
string = string.replace('$', '')
string = string.replace('\\(', '').replace('\\)', '')
# convert word number to digit
string = convert_word_number(string)
# replace "\\text{...}" to "..."
string = re.sub(r'\\text\{(.*?)\}', r'\1', string)
for key in ['x=', 'y=', 'z=', 'x\\in', 'y\\in', 'z\\in', 'x\\to', 'y\\to', 'z\\to']:
string = string.replace(key, '')
string = string.replace('\\emptyset', r'{}')
string = string.replace('(-\\infty,\\infty)', '\\mathbb{R}')
# remove percentage
string = string.replace('\\%', '')
string = string.replace('\%', '')
string = string.replace('%', '')
# " 0." equivalent to " ." and "{0." equivalent to "{." Alternatively, add "0" if "." is the start of the string
string = string.replace(' .', ' 0.')
string = string.replace('{.', '{0.')
# cdot
# string = string.replace("\\cdot", "")
if (
string.startswith('{') and string.endswith('}') and string.isalnum()
or string.startswith('(') and string.endswith(')') and string.isalnum()
or string.startswith('[') and string.endswith(']') and string.isalnum()
):
string = string[1:-1]
# inf
string = string.replace('infinity', '\\infty')
if '\\infty' not in string:
string = string.replace('inf', '\\infty')
string = string.replace('+\\inity', '\\infty')
# and
string = string.replace('and', '')
string = string.replace('\\mathbf', '')
# use regex to remove \mbox{...}
string = re.sub(r'\\mbox{.*?}', '', string)
# quote
string.replace("'", '')
string.replace('"', '')
# i, j
if 'j' in string and 'i' not in string:
string = string.replace('j', 'i')
# replace a.000b where b is not number or b is end, with ab, use regex
string = re.sub(r'(\d+)\.0*([^\d])', r'\1\2', string)
string = re.sub(r'(\d+)\.0*$', r'\1', string)
# if empty, return empty string
if len(string) == 0:
return string
if string[0] == '.':
string = '0' + string
# to consider: get rid of e.g. "k = " or "q = " at beginning
if len(string.split('=')) == 2:
if len(string.split('=')[0]) <= 2:
string = string.split('=')[1]
string = _fix_sqrt(string)
string = string.replace(' ', '')
# \frac1b or \frac12 --> \frac{1}{b} and \frac{1}{2}, etc. Even works with \frac1{72} (but not \frac{72}1). Also does a/b --> \\frac{a}{b}
string = _fix_fracs(string)
# NOTE: X/Y changed to \frac{X}{Y} in dataset, but in simple cases fix in case the model output is X/Y
string = _fix_a_slash_b(string)
# Remove unnecessary '\' before integers
string = re.sub(r'\\(?=\-?\d+(\\|\)|,|\]|$))', '', string)
# Remove grade level (e.g., 12th grade) and just maintain the integer
string = re.sub(r'thgrade$', '', string)
# Normalize thousands-formatted numbers (e.g., 70,000 or -1,234,567.89) by removing commas
# This must run before the "list of integers" sorting to avoid misclassifying numbers with thousand separators.
if re.fullmatch(r'\s*-?\d{1,3}(?:,\d{3})+(?:\.\d+)?\s*', string):
string = string.replace(',', '')
# If the answer is a list of integers (without parenthesis), sort them
if re.fullmatch(r'(\s*-?\d+\s*,)*\s*-?\d+\s*', string):
# Split the string into a list of integers
try:
integer_list = list(map(int, string.split(',')))
except Exception:
integer_list = list(map(int, '-1,-1'.split(',')))
# Sort the list in ascending order
sorted_list = sorted(integer_list)
# Join the sorted list back into a comma-separated string
string = ','.join(map(str, sorted_list))
return string
def extract_answer(pred_str, use_last_number=True):
pred_str = pred_str.replace('\u043a\u0438', '')
if 'final answer is $' in pred_str and '$. I hope' in pred_str:
# minerva_math
tmp = pred_str.split('final answer is $', 1)[1]
pred = tmp.split('$. I hope', 1)[0].strip()
elif 'boxed' in pred_str:
ans = pred_str.split('boxed')[-1]
if len(ans) == 0:
return ''
elif ans[0] == '{':
stack = 1
a = ''
for c in ans[1:]:
if c == '{':
stack += 1
a += c
elif c == '}':
stack -= 1
if stack == 0:
break
a += c
else:
a += c
else:
a = ans.split('$')[0].strip()
pred = a
elif 'he answer is' in pred_str:
pred = pred_str.split('he answer is')[-1].strip()
elif 'final answer is' in pred_str:
pred = pred_str.split('final answer is')[-1].strip()
elif '答案是' in pred_str:
# Handle Chinese few-shot multiple choice problem answer extraction
pred = pred_str.split('答案是')[1].strip().split('\n\n')[0].strip()
elif 'ANSWER:' in pred_str:
pred = pred_str.split('ANSWER:')[-1].strip()
else: # use the last number
if use_last_number:
pattern = '-?\d*\.?\d+'
pred = re.findall(pattern, pred_str.replace(',', ''))
if len(pred) >= 1:
pred = pred[-1]
else:
pred = ''
else:
pred = ''
# multiple line
# pred = pred.split("\n")[0]
pred = re.sub(r'\n\s*', '', pred)
if pred != '' and pred[0] == ':':
pred = pred[1:]
if pred != '' and pred[-1] == '.':
pred = pred[:-1]
if pred != '' and pred[-1] == '/':
pred = pred[:-1]
pred = strip_answer_string(pred)
return pred
def choice_answer_clean(pred: str):
pred = pred.strip('\n').rstrip('.').rstrip('/').strip(' ').lstrip(':')
# Clean the answer based on the dataset
tmp = re.findall(r'\b(A|B|C|D|E)\b', pred.upper())
if tmp:
pred = tmp
else:
pred = [pred.strip().strip('.')]
pred = pred[-1]
# Remove the period at the end, again!
pred = pred.rstrip('.').rstrip('/')
return pred
def parse_digits(num):
num = regex.sub(',', '', str(num))
try:
return float(num)
except Exception:
if num.endswith('%'):
num = num[:-1]
if num.endswith('\\'):
num = num[:-1]
try:
return float(num) / 100
except Exception:
pass
return None
def is_digit(num):
# paired with parse_digits
return parse_digits(num) is not None
def str_to_pmatrix(input_str):
input_str = input_str.strip()
matrix_str = re.findall(r'\{.*,.*\}', input_str)
pmatrix_list = []
for m in matrix_str:
m = m.strip('{}')
pmatrix = r'\begin{pmatrix}' + m.replace(',', '\\') + r'\end{pmatrix}'
pmatrix_list.append(pmatrix)
return ', '.join(pmatrix_list)
def math_equal(
prediction,
reference,
include_percentage: bool = True,
is_close: bool = True,
timeout: bool = False,
) -> bool:
"""
Exact match of math if and only if:
1. numerical equal: both can convert to float and are equal
2. symbolic equal: both can convert to sympy expression and are equal
"""
if prediction is None or reference is None:
return False
if str(prediction.strip().lower()) == str(reference.strip().lower()):
return True
if (reference in ['A', 'B', 'C', 'D', 'E'] and choice_answer_clean(prediction) == reference):
return True
try: # 1. numerical equal
if is_digit(prediction) and is_digit(reference):
prediction = parse_digits(prediction)
reference = parse_digits(reference)
# number questions
if include_percentage:
gt_result = [reference / 100, reference, reference * 100]
else:
gt_result = [reference]
for item in gt_result:
try:
if is_close:
if numeric_equal(prediction, item):
return True
else:
if item == prediction:
return True
except Exception:
continue
return False
except Exception:
pass
if not prediction and prediction not in [0, False]:
return False
# 2. symbolic equal
reference = str(reference).strip()
prediction = str(prediction).strip()
## pmatrix (amps)
if 'pmatrix' in prediction and 'pmatrix' not in reference:
reference = str_to_pmatrix(reference)
## deal with [], (), {}
pred_str, ref_str = prediction, reference
if (prediction.startswith('[') and prediction.endswith(']') and not reference.startswith('(')
) or (prediction.startswith('(') and prediction.endswith(')') and not reference.startswith('[')):
pred_str = pred_str.strip('[]()')
ref_str = ref_str.strip('[]()')
for s in ['{', '}', '(', ')']:
ref_str = ref_str.replace(s, '')
pred_str = pred_str.replace(s, '')
if pred_str.lower() == ref_str.lower():
return True
## [a, b] vs. [c, d], return a==c and b==d
if (
regex.match(r'(\(|\[).+(\)|\])', prediction) is not None
and regex.match(r'(\(|\[).+(\)|\])', reference) is not None
):
pred_parts = prediction[1:-1].split(',')
ref_parts = reference[1:-1].split(',')
if len(pred_parts) == len(ref_parts):
if all([
math_equal(pred_parts[i], ref_parts[i], include_percentage, is_close) for i in range(len(pred_parts))
]):
return True
if ((prediction.startswith('\\begin{pmatrix}') or prediction.startswith('\\begin{bmatrix}'))
and (prediction.endswith('\\end{pmatrix}') or prediction.endswith('\\end{bmatrix}'))
and (reference.startswith('\\begin{pmatrix}') or reference.startswith('\\begin{bmatrix}'))
and (reference.endswith('\\end{pmatrix}') or reference.endswith('\\end{bmatrix}'))):
pred_lines = [
line.strip()
for line in prediction[len('\\begin{pmatrix}'):-len('\\end{pmatrix}')].split('\\\\')
if line.strip()
]
ref_lines = [
line.strip()
for line in reference[len('\\begin{pmatrix}'):-len('\\end{pmatrix}')].split('\\\\')
if line.strip()
]
matched = True
if len(pred_lines) == len(ref_lines):
for pred_line, ref_line in zip(pred_lines, ref_lines):
pred_parts = pred_line.split('&')
ref_parts = ref_line.split('&')
if len(pred_parts) == len(ref_parts):
if not all([
math_equal(
pred_parts[i],
ref_parts[i],
include_percentage,
is_close,
) for i in range(len(pred_parts))
]):
matched = False
break
else:
matched = False
if not matched:
break
else:
matched = False
if matched:
return True
if prediction.count('=') == 1 and reference.count('=') == 1:
pred = prediction.split('=')
pred = f'{pred[0].strip()} - ({pred[1].strip()})'
ref = reference.split('=')
ref = f'{ref[0].strip()} - ({ref[1].strip()})'
if symbolic_equal(pred, ref) or symbolic_equal(f'-({pred})', ref):
return True
elif (prediction.count('=') == 1 and len(prediction.split('=')[0].strip()) <= 2 and '=' not in reference):
if math_equal(prediction.split('=')[1], reference, include_percentage, is_close):
return True
elif (reference.count('=') == 1 and len(reference.split('=')[0].strip()) <= 2 and '=' not in prediction):
if math_equal(prediction, reference.split('=')[1], include_percentage, is_close):
return True
if symbolic_equal(prediction, reference):
return True
return False
def numeric_equal(prediction: float, reference: float):
return isclose(reference, prediction, rel_tol=1e-4)
def symbolic_equal(a, b):
def _parse(s):
for f in [parse_latex, parse_expr, latex2sympy]:
try:
return f(s.replace('\\\\', '\\'))
except Exception:
try:
return f(s)
except Exception:
pass
return s
a = _parse(a)
b = _parse(b)
# direct equal
try:
if str(a) == str(b) or a == b:
return True
except Exception:
pass
# simplify equal
try:
if a.equals(b) or simplify(a - b) == 0:
return True
except Exception:
pass
# equation equal
try:
if (abs(a.lhs - a.rhs)).equals(abs(b.lhs - b.rhs)):
return True
except Exception:
pass
try:
if numeric_equal(float(N(a)), float(N(b))):
return True
except Exception:
pass
# matrix
try:
# if a and b are matrix
if a.shape == b.shape:
_a = a.applyfunc(lambda x: round(x, 3))
_b = b.applyfunc(lambda x: round(x, 3))
if _a.equals(_b):
return True
except Exception:
pass
return False
if __name__ == '__main__':
print(math_equal('\n\\boxed{70,\\!000}\n', '70000'))
print(extract_answer('The answer is \\boxed{70,\\!000}'))
print(strip_answer_string(extract_answer('The answer is \\boxed{70,\\!000}')))
print(math_equal(extract_answer('The answer is \\boxed{70,\\!000}'), '70000'))