(text)
| 214 | |
| 215 | elif mode in ['math', 'choose']: |
| 216 | def normalize_answer(text): |
| 217 | text = text.lower() |
| 218 | text = " ".join(text.strip().split()) |
| 219 | return text |
| 220 | normalized_pred_answer = normalize_answer(pred_answer_new) |
| 221 | normalized_ground_truth = normalize_answer(labeled_answer) |
| 222 |
no outgoing calls
no test coverage detected