(self)
| 136 | return " " + answer |
| 137 | |
| 138 | def training_docs(self): |
| 139 | for doc in self.dataset["train"]: |
| 140 | yield from self._process_doc(doc) |
| 141 | |
| 142 | def validation_docs(self): |
| 143 | for doc in self.dataset["validation"]: |
nothing calls this directly
no test coverage detected