(text)
| 184 | if mode in ['qa']: |
| 185 | def normalize_answer_qa(s): |
| 186 | def remove_articles(text): |
| 187 | return re.sub(r"\b(a|an|the)\b", " ", text) |
| 188 | def white_space_fix(text): |
| 189 | return " ".join(text.strip().split()) |
| 190 | def remove_punc(text): |
no outgoing calls
no test coverage detected