(self)
| 917 | return self.dataset[self.config.validation_split] |
| 918 | |
| 919 | def test_docs(self) -> datasets.Dataset: |
| 920 | if self.has_test_docs(): |
| 921 | if self.config.process_docs is not None: |
| 922 | return self.config.process_docs(self.dataset[self.config.test_split]) |
| 923 | return self.dataset[self.config.test_split] |
| 924 | |
| 925 | def fewshot_docs(self): |
| 926 | if self.config.fewshot_split is not None: |