(self, doc)
| 47 | return map(self._process_doc, self.dataset["test"]) |
| 48 | |
| 49 | def _process_doc(self, doc): |
| 50 | doc["answer"] = self.remove_boxed(self.last_boxed_only_string(doc["solution"])) |
| 51 | return doc |
| 52 | |
| 53 | def doc_to_text(self, doc): |
| 54 | return "Problem: " + doc["problem"] + "\nAnswer:" |
nothing calls this directly
no test coverage detected