(prediction, ground_truth)
| 47 | |
| 48 | |
| 49 | def exact_match_score(prediction, ground_truth): |
| 50 | return normalize_answer(prediction) == normalize_answer(ground_truth) |
| 51 | |
| 52 | |
| 53 | def metric_max_over_ground_truths(metric_fn, prediction, ground_truths): |
nothing calls this directly
no test coverage detected