MCPcopy Create free account
hub / github.com/OpenBitSys/BitDistiller / training_docs

Method training_docs

test/general/lm_eval/tasks/superglue.py:290–297  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_process_docMethod · 0.95

Tested by

no test coverage detected