(self)
| 297 | return self._training_docs |
| 298 | |
| 299 | def validation_docs(self): |
| 300 | # See: training_docs |
| 301 | for doc in self.dataset["validation"]: |
| 302 | yield self._process_doc(doc) |
| 303 | |
| 304 | @classmethod |
| 305 | def _process_doc(cls, doc): |
nothing calls this directly
no test coverage detected