(self)
| 288 | return False |
| 289 | |
| 290 | def training_docs(self): |
| 291 | # In ReCoRD, each doc manifests multiple "examples" in the context of few shot example packing. |
| 292 | # Each doc consists of multiple answer candidates, each of which is scored yes/no. |
| 293 | if self._training_docs is None: |
| 294 | self._training_docs = [] |
| 295 | for doc in self.dataset["train"]: |
| 296 | self._training_docs.append(self._process_doc(doc)) |
| 297 | return self._training_docs |
| 298 | |
| 299 | def validation_docs(self): |
| 300 | # See: training_docs |
nothing calls this directly
no test coverage detected