Returns number of examples in the dataset, regardless of sharding.
(self)
| 42 | |
| 43 | @property |
| 44 | def total_examples(self): |
| 45 | """Returns number of examples in the dataset, regardless of sharding.""" |
| 46 | raise RuntimeError("not implemented for {self.__class__.__name__}") |
| 47 | |
| 48 | def num_examples_per_process(self, nprocess=None): |
| 49 | """Returns a list of the numer of examples for each process. |
nothing calls this directly
no outgoing calls
no test coverage detected