(self)
| 901 | return False |
| 902 | |
| 903 | def training_docs(self) -> datasets.Dataset: |
| 904 | if self.has_training_docs(): |
| 905 | if self.config.process_docs is not None: |
| 906 | return self.config.process_docs( |
| 907 | self.dataset[self.config.training_split] |
| 908 | ) |
| 909 | return self.dataset[self.config.training_split] |
| 910 | |
| 911 | def validation_docs(self) -> datasets.Dataset: |
| 912 | if self.has_validation_docs(): |
nothing calls this directly
no test coverage detected