(self)
| 147 | return False |
| 148 | |
| 149 | def training_docs(self): |
| 150 | for doc in self.dataset["train"]: |
| 151 | yield from self._process_doc(doc) |
| 152 | |
| 153 | def validation_docs(self): |
| 154 | for doc in self.dataset["validation"]: |
nothing calls this directly
no test coverage detected