(text)
| 191 | exclude = set(string.punctuation) |
| 192 | return "".join(ch for ch in text if ch not in exclude) |
| 193 | def lower(text): |
| 194 | return text.lower() |
| 195 | return white_space_fix(remove_articles(remove_punc(lower(s)))) |
| 196 | normalized_pred_answer = normalize_answer_qa(pred_answer_new) |
| 197 |
no outgoing calls
no test coverage detected